* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none !important;
}

a {
    text-decoration: none !important;
}

body {
    background-color: #f9f9f9 !important;
}

/* Header Section */
.header a:hover {
    color: #000 !important;
}


/* Hero Section */
.hero-section {
    padding: 80px 0;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-img-wrapper:hover img {
    transform: scale(1.05);
}

.stats-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.stats-icon {
    width: 60px;
    height: 60px;
    background: #f1f3f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-btn:hover {
    transform: translateY(-5px);
    background-color: #2b2b2b !important;
    box-shadow: 0 8px 8px #969595;
}

.watch {
    transition: all 0.4s ease;
}

.watch:hover {
    transform: translateX(10px);
}

/* About Section */
.about-section {
    padding: 90px 0;
    background: #ffffff !important;
}

.btn2 {
    border: 2px solid #a9a8a8 !important;
    transition: all 0.5s ease;
}

.btn2:hover {
    transform: translateY(-6px);
    border-color: #000 !important;
}

.about-img-wrapper {
    position: relative;
    border-radius: 16px;
}

.about-img-wrapper img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.award-card {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    width: 280px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.258);
    z-index: 5;
}

.award-icon {
    width: 66px;
    height: 66px;
    background: #f2f2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    float: left;
}

/* Service Section */
.services-section {
    padding: 90px 0;
}

.service-card {
    position: relative;
    background: #f4f3f3;
    padding: 65px 45px;
    border-radius: 10px;
    transition: background 0.4s ease, transform 0.4s ease;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: #000;
    transition: width 0.4s ease;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 6px 6px #cecdcd;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #1f1f1f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15);
}

.service-icon i {
    color: #fff;
    font-size: 28px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}

.learn-more i {
    transition: transform 0.3s ease;
}

.service-card:hover .learn-more i {
    transform: translateX(6px);
}

/* Why Us Section */
.why-section {
    padding: 90px 0;
    background: #ffffff !important;
}

.why-text h2 {
    margin-bottom: 20px;
}

.why-text p {
    color: #6c757d;
    line-height: 1.8;
}

.why-img-wrapper {
    position: relative;
    border-radius: 10px;
}

.why-img-wrapper img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.why-img-wrapper:hover img {
    transform: translateY(-12px);
}

.why-features {
    padding: 80px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.feature-icon {
    width: 74px;
    height: 74px;
    background: #f1f1f1;
    font-size: 30px;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

/* ICON HOVER WHEN TEXT IS HOVERED */
.feature-item:hover .feature-icon {
    background: #000;
    transform: scale(1.1);
}

.feature-item:hover {
    transform: translateY(-8px);
}

.feature-item:hover .feature-icon i {
    color: #fff;
}

.feature-item p {
    line-height: 1.7;
    margin-bottom: 0;
}


/* Portfoilio Section */
.portfolio {
    padding: 90px 0;
    background: #ffffff !important;
}

.project-img {
    position: relative;
    overflow: hidden;
    height: 300px;
    border-radius: 6px;
    cursor: pointer;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(59, 57, 57, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-img:hover img {
    transform: scale(1.1);
}

.project-img:hover .project-overlay {
    opacity: 1;
}

.overlay-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 22px;
    transition: transform 0.3s ease;
}


.overlay-btn:hover {
    transform: scale(1.1);
}

.tag {
    font-size: 12px;
    letter-spacing: 1px;
    color: #888;
    text-transform: uppercase;
}

.year {
    font-size: 13px;
    color: #aaa;
}

.desc {
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}

.meta {
    font-size: 13px;
    color: #999;
}


/* Team Section */
.team {
    padding: 90px 0;
    background: #ffffff !important;
}

.team-card {
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.team-img {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.team-img img {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.team-card:hover .team-img img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-name {
    font-weight: 100;
    margin-bottom: 5px;
}

.team-role {
    font-size: 14px;
    margin-bottom: 15px;
}

.team-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ddd;
    color: #555;
    margin: 0 5px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.team-card:hover .team-social a {
    background-color: #000;
    color: #fff;
    border-color: #000;
    transform: scale(1.1);
}


/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #ffffff !important;
}

.testimonial-card {
    background: #fff;
    border-left: 4px solid #000;
    padding: 30px;
    height: 100%;
}

.stars i {
    color: #ffc107;
    font-size: 14px;
}

.testimonial-img img {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50%;
    border: 4px solid #8f8e8e77;
    object-fit: cover;
}


/* Contact Section */
.contact-info,
.contact-form {
    background: #fff;
    border-radius: 14px;
    transition: 0.3s;
}

.contact-info:hover,
.contact-form:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 55px;
    height: 55px;
    background: #f1f1f1;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.contact-info:hover .icon-circle {
    background: #000;
    color: #fff;
}

.icons {
    width: 40px;
    height: 40px;
    background: #f1f1f1;
    font-size: 17px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.icons:hover {
    background: #000;
    color: #fff;
    transform: translateY(-5px);
}

.info-item {
    gap: 15px;
    margin-top: 20px;
}

.info-item i {
    font-size: 20px;
    color: #000;
}

.form-control {
    border-radius: 10px;
    transition: 0.3s;
}

.btn-dark {
    border-radius: 10px;
    transition: 0.3s;
}

.btn-dark:hover {
    background: #fff !important;
    color: #000 !important;
    box-shadow: 0 4px 4px #a7a5a5;
    transform: translateY(-5px);
}



/* Footer Section */
.footer {
    background: #000;
    color: #fff;
    padding: 80px 0;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer p {
    color: #bfbfbf;
    font-size: 15px;
}

.footer a {
    color: #bfbfbf;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.newsletter {
    background: #1b1b1b;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
}

.newsletter input {
    border: none;
    background: transparent;
    padding: 15px 20px;
    color: #fff;
    width: 100%;
}

.newsletter button {
    background: #777;
    border: none;
    padding: 0 25px;
    color: #fff;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: #1b1b1b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #777;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.4s ease;
}

.social-icons a:hover {
    color: #fff;
    border: 2px solid #fff;
    /* transform: translateY(-5px); */
}

/* Footer2 Section */
.footer-bottom {
    background: #2b2b2b;
    color: #fff;
    padding: 20px 0;
    font-size: 14px;
}

.footer-bottom a {
    color: #dcdcdc;
    text-decoration: none;
    margin-left: 20px;
}

.footer-bottom a:hover {
    color: #777;
}

.designed-by span {
    color: #a9a8a8;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    background: #000;
    color: #fff;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
    z-index: 999;
}