* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none !important;
}

a {
    text-decoration: none !important;
}

body {
    font-family: "Raleway", sans-serif !important;
    background-color: #ffffff !important;
}


/* Header Section */
.header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background-color: #0009103d;
}


.custom-underline {
    position: relative;
    color: #000;
    text-decoration: none;
}

.custom-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2.5px;
    background-color: #ff4a17;
    transition: width 0.3s ease;
}

.custom-underline:hover::after {
    width: 100%;
}

.start-btn:hover {
    background-color: #ff4a17 !important;
    border-color: #ff4a17 !important;
}


/* Hero Section */
.hero {
    background-image: url('images/hero-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 9
}

.hero::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000910a1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero p {
    color: #ddd;
    font-size: 25px;
    font-weight: 100;
    width: 64%;
    line-height: 30px;
    margin: 15px auto;
}

.hero-btn {
    background: #ff4a17;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

.hero-btn:hover {
    background: transparent;
    border: 2px solid #ff4a17;
    color: #ff4a17;
}

.hero-btn-outline {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
}

.hero-btn-outline span {
    margin-right: 10px;
    font-size: 28px;
    color: #ff4a17;
}

.hero-btn-outline:hover {
    color: #ff4a17;
}


/* About Section */
.img-hover {
    overflow: hidden;
    border-radius: 12px;
}

.img-hover img {
    transition: transform 0.6s ease;
}

.img-hover:hover img {
    transform: scale(1.08);
}

.check-icon {
    color: #ff5722;
    font-size: 20px;
    margin-right: 10px;
}

.video-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.video-box img {
    width: 100%;
}

.play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn span {
    background: #ff5722;
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}


/* Stat Section */
.stats-section {
    background: #f1f4fa;
    padding: 70px 0;
}

.stat-card {
    background: #fff;
    padding: 35px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.16);
    border: 1px solid #ff4a17;
}

.stat-icon {
    font-size: 40px;
    color: #ff4a17;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #1a2a3a;
}

.stat-text {
    font-size: 16px;
    color: #6c757d;
}


/* Service Section */
.title {
    margin-bottom: 40px;
}

.title-label {
    position: relative;
    letter-spacing: 1px;
    padding-right: 80px;
}

.title-label::after {
    content: "";
    position: absolute;
    left: 100px;
    top: 50%;
    width: 150px;
    height: 1px;
    background: #ff4a17;
}

.title-heading {
    color: #273d4e !important;
}

.service-card {
    position: relative;
}

.service-img {
    border-radius: 18px;
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.service-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    width: 85%;
    margin: -55px auto 0;
    background: #ffffff;
    border-radius: 8px;
    padding: 60px 20px 15px;
    text-align: center;
    position: relative;
    z-index: 3;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.19);
}

.service-icon {
    position: absolute;
    left: 50%;
    top: 43%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: #ff4a17;
    border: 7px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    z-index: 4;
    transition: all 0.35s ease;
}

.service-card:hover .service-icon {
    border: 2px solid #ff4a17;
    color: #ff4a17;
    background-color: #fff;
}

.service-content h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card:hover .service-content h4 {
    color: #ff4a17;
}

.service-content p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.7;
}


/* Clients Section */
.clients {
    background: #f1f4fa;
    padding: 30px 0;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.client-logo img {
    max-height: 35px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}


/* Feature Section */
.features {
    padding: 40px 0;
}

.feature-box {
    border: 1px solid #e5e7eb;
    padding: 23px 30px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.35s ease;
    height: 100%;
}

.feature-icon {
    font-size: 36px;
    color: #1f2d3d;
    transition: color 0.35s ease;
}

.feature-box h5 {
    margin: 0;
    font-weight: 500;
    color: #1f2d3d;
}

.feature-box:hover {
    border-color: #ff4a17;
}

.feature-box:hover .feature-icon {
    color: #ff4a17;
}

.feature-box.active {
    background: #ff4a17;
    border-color: #ff4a17;
}

.feature-box.active h5,
.feature-box.active .feature-icon {
    color: #fff;
}


.image-hover2 {
    position: relative;
    overflow: hidden;
}

.image-hover2 img {
    width: 100%;
    transition: transform 0.6s ease;
}

.image-hover2:hover img {
    transform: scale(1.08);
}

.image-hover2::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-hover:hover::after {
    opacity: 1;
}

.check-list li {
    list-style: none;
    margin-bottom: 14px;
}

.check-list i {
    color: #ff4a17;
    margin-right: 10px;
}

.section-title {
    font-weight: 600;
    color: #1a2a3a;
}

.section-desc {
    font-style: italic;
    color: #6c757d;
}

/* Check Service Section */
.check {
    background-color: #f1f4fa;
    padding: 60px 0;
}

.check-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 30px;
    display: flex;
    gap: 20px;
    transition: all 0.35s ease;
    height: 100%;
}

.check-box:hover {
    border-color: #ff4a17;
}

.check-icon2 {
    font-size: 34px;
    color: #ff4a17;
    flex-shrink: 0;
}

.check-box h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a2a3a;
}

.check-box:hover h4 {
    color: #ff4a17;
}

.check-box p {
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
}


/* Testimonial Section */
.testimonial-section {
    position: relative;
    background: url("images/testimonials-bg.jpg") center/cover no-repeat;
    padding: 120px 0;
    color: #fff;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 25, 35, 0.788);
}

.testimonial-section .container {
    position: relative;
    z-index: 2;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.263);
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0;
}

.testimonial-role {
    font-size: 14px;
    color: #ccc;
}

.stars {
    font-size: 20px;
    color: #ffc107;
    margin: 10px 0;
}

.testimonial-text {
    font-style: italic;
    max-width: 80%;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, 0.4);
    font-size: 26px;
}

.testimonial-text::before {
    content: "\f10d";
    margin-right: 10px;
    font-size: 20px;
}

.testimonial-text::after {
    content: "\f10e";
    margin-left: 10px;
    font-size: 20px;
}

.testimonial-section .carousel-indicators {
    bottom: -80px;
}

.carousel-indicators [data-bs-target] {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
}


/* Portfolio Section */
.portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    color: #ff4a17;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-icon:hover {
    background: #ff4a17;
    color: #fff;
}


/* Team Section */
.team {
    background-color: #f1f4fa;
}

.team-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.team-img {
    overflow: hidden;
}

.team-img img {
    width: 100%;
    transition: transform 0.6s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    background: #fff;
    padding: 20px;
    margin: -60px 20px 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.18);
}

.team-info h4 {
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.team-info h4::after {
    content: "";
    display: block;
    width: 35%;
    height: 2px;
    background: #ccc;
    margin-top: 6px;
    transition: all 0.4s ease;
}

.team-role {
    font-style: italic;
    color: #6c757d;
    font-size: 14px;
}

.team-social {
    margin-top: 15px;
}

.team-social a i {
    color: #bdbdbd;
    margin-right: 12px;
    font-size: 20px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.team-card:hover h4::after {
    width: 100%;
    background: #ff4a17;
}

.team-card:hover .team-social a i {
    color: #ff4a17;
}


/* Contact Section */
.contact-box {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.35s ease;
}

.contact-box:hover {
    transform: translateY(-6px);
}

.contact-icon2 {
    width: 60px;
    height: 60px;
    border: 2px dashed #ff4a17;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #ff4a17;
    font-size: 26px;
    transition: all 0.35s ease;
}

.contact-box:hover .contact-icon2 {
    background: #ff4a17;
    color: #fff;
    border-style: solid;
}

.contact-box h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-form input,
.contact-form textarea {
    border-radius: 0;
    padding: 12px;
}

.contact-btn {
    background: #ff4a17;
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    border: none;
}

.contact-btn:hover {
    background: #000;
}



/* Footer Section */
.footer {
    background: #000;
    color: #fff;
    padding: 80px 0;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer h5::after {
    content: '';
    width: 35px;
    height: 2px;
    background: #ff4a17;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.footer p {
    color: #bfbfbf;
    font-size: 15px;
}

.footer a {
    color: #bfbfbf;
    text-decoration: none;
}

.footer a:hover {
    color: #ff4a17;
}

.i-arrow {
    color: #ff4a17;
}

.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: #ff4a17;
    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: #ff4a17;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: #172326;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.4s ease;
}

.social-icons a:hover {
    color: #fff;
    background-color: #ff4a17;
    transform: translateY(-5px);
}

/* Footer2 Section */
.footer-bottom {
    background: #000;
    color: #fff;
    padding: 20px 0;
    font-size: 14px;
}

.footer-bottom a {
    color: #dcdcdc;
    text-decoration: none;
    margin-left: 20px;
}

.footer-bottom a:hover {
    color: #ff4a17;
}

.designed-by span {
    color: #ff4a17;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    background: #ff4a17;
    color: #fff;
    border-radius: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
    z-index: 999;
}