*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins",sans-serif;
    
}
html{
    scroll-behavior: smooth;
}
body{
    overflow-x: hidden;
}
.logo img {
    width: 250px; /* Adjust to a smaller, more proportional size */
    height: 180px; /* Maintain aspect ratio for the image */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth hover effect */
}

.logo img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
    opacity: 0.9; /* Reduce brightness slightly for a subtle effect */
}

header{
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 200px;
    transition: 0.5s ease;
}
header .navigation {
    position: relative;
    display: flex;
    justify-content: center; /* Center the navigation menu */
    align-items: center;
    padding: 20px 0;
    z-index: 1000;
}

header .navigation .navi-items {
    display: flex; /* Align items horizontally */
    gap: 30px; /* Add spacing between menu items */
}

header .navigation .navi-items a {
    color: #fff;
    font-size: 1.3em; /* Slightly smaller font size for minimalism */
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase; /* Add a modern touch */
}

header .navigation .navi-items a:hover {
    color: #6B4F4F; /* Add a dynamic color change on hover */
    transform: scale(1.05); /* Slight zoom effect */
}

/* Underline effect */
header .navigation .navi-items a:before {
    position: absolute;
    background: #6B4F4F; /* Matches hover color */
    width: 0;
    height: 2px; /* Slightly thicker for visibility */
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

header .navigation .navi-items a:hover:before {
    width: 100%; /* Full underline width on hover */
}

.home {
    background-color: #fff;
    position: relative;
    width: 100%;
    min-width: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 750px;
    overflow: hidden;
}

.home .media-icons {
    z-index: 888;
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;
}

.home .media-icons a {
    color: #fff;
    font-size: 1.6em;
    transition: 0.3s ease;
}

.home .media-icons a:not(:last-child) {
    margin-bottom: 20px;
}

.home .media-icons a:hover {
    transform: scale(1.3);
}

.home video {
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.slider-nav {
    z-index: 888;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(300px); /* Adjusted for alignment */
    margin-bottom: 5px;
    padding-top: 20px;
}


.slider-nav .nav-btn {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
    margin: 10px;
}

.slider-nav .nav-btn:not(:last-child) {
    margin-right: 15px;
}

.slider-nav .nav-btn:hover {
    transform: scale(1.2);
}

.slider-nav .nav-btn.active {
    background: gray;
}

.video-slider {
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
    background-size: cover;
}

.video-slider.active {
    clip-path: circle(150% at 0 50%);
}

.arrows {
    z-index: 999;
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
    left: 10px;
}

.arrow {
    pointer-events: auto;
    color: #fff;
    font-size: 3em;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.arrow.left-arrow {
    position: absolute;
    left: 10px;
}

.arrow.right-arrow {
    position: absolute;
    right: 100px;
}

.arrow:hover {
    transform: scale(1.3);
}


.text-content {
    position: absolute;
    top: 30%; /* Adjusted for better centering */
    left: 10%; /* Position text on the left */
    color: #fff; /* White text for contrast */
    text-align: left;
    max-width: 650px; /* Wider for text alignment */
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    animation: fadeIn 2s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* Add fade-in animation for the entire content */
}

.text-content h1 {
    font-size: 4.2em; /* Larger heading size */
    font-weight: 800; /* Bold for impact */
    color: #fff; /* White color */
    margin-bottom: 15px;
    text-transform: uppercase; /* Uppercase for a modern look */
    letter-spacing: 2px; /* Slightly spaced for readability */
    line-height: 1.1; /* Compact lines */
    font-family: 'Montserrat', sans-serif; /* Modern font family */
    animation: slideUp 1.6s ease-out; /* Slide-in animation for the heading */
}

.text-content p {
    font-size: 1.2em; /* Slightly larger paragraph text */
    line-height: 1.8; /* Increase spacing for readability */
    font-weight: 400; /* Lightweight for a subtle look */
    color: #f0f0f0; /* Softer white for contrast */
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif; /* Professional and clean font */
    animation: fadeIn 2s ease-out; /* Add animation for smooth entry */
}

.text-content .heading1 {
    font-size: 2em; /* Bold subheading */
    font-weight: 400; /* Medium weight for emphasis */
    margin-bottom: 20px;
    color: #fff; /* Same color for consistency */
    animation: slideUp 1.8s ease-out; /* Animation for subheading */
}

.learn-more-btn {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    animation: fadeIn 2.5s ease-out; /* Add fade-in for the button */
}

.learn-more-btn:hover {
    background-color: #6B4F4F;
    color: #fff;
    font-weight: 200;
    transform: scale(1.1);
    text-shadow: none; /* Slight zoom effect on hover */
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Fade-in Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ser-header{
    text-align: center;
    margin-bottom: 30px;
    margin-top: 15px;
}
.single-ser{
    border: 1px solid #ebebeb;
    text-align: center;
    background: #fff;
}
.service-bg{
    height: 200px;
    position: relative;
}
.service-bg-1{
    background: url(images/plan.jpg);
    -webkit-background-size: cover;
    background-size: cover;
        background-position:center;
        transition: 0.5s;

}
.service-bg-2{
    background: url(images/const.webp);
    -webkit-background-size: cover;
    background-size: cover;
        background-position:center;

}
.service-bg-3{
    background: url(images/inter.webp);
    -webkit-background-size: cover;
    background-size: cover;
        background-position:center;
}
.ser-text{
    padding: 50px 30px 20px;
}
.ser-text p:last-child{
    margin: 0;
    line-height: 1.8;
}
.btn-area{
    display: inline-block;
    color: #333;
    font-size: 17px;
    font-weight: 700;
    margin-top: 30px;
    text-transform: capitalize;
}
.section-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center center;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.5s;
}
.section-img.loaded {
    opacity: 1;
}  
.l-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
} 
.left img{
    width: 30%;
    float: right;
    margin-left: 25px;
    padding-top: 40px;
    padding-right: 30px;
}
.left h2{
    font-weight: normal;
    font-size: 2.5rem;
    padding-bottom: 20px;
}


.why-us {
    background-image: url(images/Whyus1.jpg); /* Background image */
    background-color: #F5F5F5; /* Light gray fallback */
    width: 100%;
    padding: 4rem 5%;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    background-position: center;
    opacity: 0.95; /* Subtle transparency for softer look */
}

.why-us-heading {
    text-align: center;
}

.why-us-heading h2 {
    font-size: 50px;
    color: #2E2E2E ; /* Muted charcoal for heading */
    font-weight: bold;
    margin-bottom: 2rem;
}

.main-inner-us {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.main-inner {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #3C3C3C; /* Warm gray box background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    transition: all 0.3s ease-in-out; /* Smooth hover animation */
}

.main-inner:hover {
    transform: scale(1.03); /* Slight hover scaling */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Enhanced hover shadow */
}

.icon-text-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.inner-content {
    padding: 0.5rem;
}

.inner-icon i {
    color: #FF914D; /* Muted orange for icons */
    font-size: 28px;
    padding: 1.5rem;
    border: 2px solid #FFFFFF; /* White border for contrast */
    border-radius: 50%; /* Circular icons */
    background-color: #3C3C3C; /* Match box color for uniformity */
}
.inner-icon i:hover {
    color: #FFFFFF; /* Change icon color on hover */
    background-color: #FF914D; /* Highlight background on hover */
}

.inner-content-text h2 {
    color: #FF914D; /* Vibrant orange for headings */
    font-size: 24px;
    font-weight: bold;
    margin: 1rem 0;
}

.inner-content-text p {
    color:  #E5E5E5; /* White for body text */
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
}


.our-featured {
    padding: 2rem 5%;
    background-color: #F9F9F9;
    font-family: 'Arial', sans-serif;
}

.feature-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.feature-heading h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #333333;
    letter-spacing: 0.5px;
}

.feature-heading h1 span {
    color: #BBAB8C;
}

.main-feature {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.inter-feature {
    overflow: hidden;
    border-radius: 10px;
    /*box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);*/
    transition: transform 0.3s ease-in-out;
}

.inter-feature:hover {
    transform: scale(1.02);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s ease-in-out;
}

.feature-image img:hover {
    transform: scale(1.05);
}

.view-more {
    text-align: center;
    margin-top: 2rem;
}

.view-more a {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: #FFFFFF;
    background-color: #776B5D;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.view-more a:hover {
    background-color: #776B5D;
    color: #fff;
    font-weight: 200;
    transform: scale(1.1);
    text-shadow: none;
}
/* Reviews Heading Styling */
.reviews-heading {
    text-align: center; /* Center the heading */
    background-color: #F8FAFD;
    margin-top: 20px;
}

.reviews-heading h2 {
    font-size: 45px; /* Larger font for prominence */
    color: #333333; /* Dark gray for a clean look */
    font-weight: 700;
    letter-spacing: 1px; /* Subtle spacing for elegance */
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFC107; /* Gold underline for a touch of sophistication */
    display: inline-block; /* Underline fits the heading width */
}

/* General Reviews Section Styling */
.reviews {
    background-color: #F8FAFD; /* Subtle blue-gray background for minimalism */
    width: 100%;
    height: 600px;
    padding: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Align image and text properly */
}

/* Image Styling */
.reviews img {
    width: 440px;
    height: 575px;
    float: right;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for a modern effect */
}

/* Review Slider Container */
.review-slider {
    position: relative;
    width: 60%; /* Adjust width for better layout balance */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Individual Review Box */
.box {
    display: none; /* Hide all reviews initially */
    width: 80%;
    padding: 20px 30px;
    position: absolute;
    text-align: left;
    background-color: #FFFFFF; /* Clean white background */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Clean shadow for depth */
    opacity: 0; /* Hidden by default */
    transition: opacity 0.6s ease-in-out; /* Smooth fade effect */
}

/* Active Review */
.active {
    display: block; /* Show active review */
    opacity: 1; /* Fully visible */
}

/* Review Text */
.box p {
    font-size: 16px;
    line-height: 1.6;
    color: #333333; /* Dark gray text for readability */
    margin: 10px 0;
}

/* Reviewer Name */
.box p:nth-child(2) {
    font-weight: bold;
    color: #666666; /* Slightly lighter gray for the name */
    margin-top: 15px;
}

/* Star Rating */
.rating {
    font-size: 24px;
    color: #FFC107; /* Gold color for stars */
    margin-top: 10px;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .reviews {
        flex-direction: column; /* Stack content vertically */
        height: auto;
        text-align: center;
    }

    .reviews img {
        width: 80%;
        height: auto;
        margin: 20px auto;
    }

    .review-slider {
        width: 100%;
        opacity: 1;
    }

    .box {
        width: 90%;
        margin: 20px auto;
    }
}

.About-us{
    width: 100%;
    height: 300px;
    background-color: #D4BFB3;
   
}
.About-us img{
    width: 350px;
    height: 300px;
    float: left;
    border-radius: 25px;
}
.about1{
    margin-left: 10%;
    position: relative;
    color: #fff;
    font-size: 1.3em;
    font-weight: 550;
    margin-left: 8%;
    margin-top: 10px;
    display: inline-block;
    
}
.about1 a{
    color: #6E6E6E;
    padding: 5px;
    text-decoration: none;
}
.about1 h3{
    font-size: 1.7em;
    color: #4B4B4B;
    font-weight: 600;
}
.about1 a:hover{
    color: #6B4F4F;
}
.about1 h3,a{
    display: block;
}
.about2{
    margin-top: 10px;
    margin-left: 20%;
    position: absolute;
    margin-top: 50px;
}
.about2 i{
    right: 30px;
    position: relative;
    font-size: 25px;
    color: #6B4F4F;
}
.about2 p{
    color: #6E6E6E;
    position: relative;
    font-size: 1.4em;
    font-weight: 580;
    margin-left: 20px;
    margin-bottom: 20px;
}
.about2 h3{
    color: #4B4B4B;
    font-size: 1.8em;
    font-weight: 600;
}
.email-id{
    display: inline-block;
    right: 35px;
}
.contact-no{
    right: 35px;
}

.benefits-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #F9F9F9;
    color: #333;
}
.PhoneIcon{
    margin-left: 50px;
}
.benefits-section h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2E2E2E;
}

.benefits-section p {
    font-size: 1.3rem;
    font-weight: 200;
    margin-bottom: 40px;
    color: #5A5A5A;
}

.benefits-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    background: #FAFAFA;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 280px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(176, 176, 176, 0.2); /* Blue shadow accent */
    border: 2px solid #B0B0B0; 
}

.benefit-card img {
    width: 50px;
    margin-bottom: 15px;
}
.benefit-card i{
    width: 50px;
    margin-bottom: 15px;
    font-size: 50px;
    color: #333333 ;
}
.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333333;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #666666;
}
.contact-sec{
    padding: 0;
    margin-top: 200px;
}