* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none !important;
}

a {
    text-decoration: none !important;
}

body {
    background-color: #000708 !important;
}

/* Header Section */
.header a i:hover {
    color: #f67508 !important;
}

.custom-underline {
    position: relative;
    color: #000;
    text-decoration: none;
}

.custom-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 0;
    height: 1px;
    background-color: #f67508;
    transition: width 0.3s ease;
}

.custom-underline:hover::after {
    width: 100%;
}


/* Hero Section */
.hero {
    margin-top: 80px !important;
}

.hero-image img {
    position: relative;
}

.hero-image p {
    position: absolute;
    left: 150px;
    bottom: -20px;
}

.hero-image img {
    position: relative;
}

.hero-image span {
    position: absolute;
    left: 150px;
    bottom: -50px;
}

.hero h1 {
    width: 70%;
}

.hero .btn1 {
    background-color: #f67508;
    padding: 15px 25px;
}

.hero .btn1:hover {
    background-color: #888;
    color: #000 !important;
}

.hero .btn2 {
    background: transparent;
    border: none !important;
    padding: 15px 25px;
}

.hero a i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    background-color: #88888877;
}

.hero .btn2:hover {
    color: #f67508 !important;
}


/* About Section */
.title {
    text-align: center;
    padding: 50px 20px;
}

.title1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px;
}

.title-line {
    width: 200px;
    height: 2px;
    background: #ccc;
    margin: 0 auto 20px;
    position: relative;
}

.title-line span {
    position: absolute;
    left: 50%;
    top: -1px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff6b00;
}

.title-text {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    color: #444444dd;
}

.about-section {
    background: #fff;
}

.image-box {
    position: relative;
    display: flex;
    gap: 20px;
}

.img-main,
.img-side {
    overflow: hidden;
    border-radius: 22px;
}

.img-main {
    flex: 1;
    width: 50%;
    height: 480px;
}

.img-side {
    width: 40%;
    height: 480px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.img-main:hover img {
    transform: scale(1.08);
}

.img-side:hover img {
    transform: scale(1.08);
}

.exp-badge {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #f97316, #cf6206);
    color: #fff;
    padding: 17px 45px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.45);
}

.exp-badge .num {
    font-size: 40px;
    font-weight: 900;
}

.exp-badge .txt {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

.who-badge {
    display: inline-block;
    background: #fff3e6;
    color: #f97316;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.desc {
    color: #666;
    font-size: 16px;
}

.flip-wrapper {
    perspective: 1200px;
}

.flip-card {
    width: 100%;
    height: 260px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    border-radius: 20px;
}

.flip-wrapper:hover .flip-card {
    transform: rotateY(-180deg);
}

.flip-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px;
}

.flip-front {
    background: #fff;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #fbddc8;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 32px;
    color: #f97316;
}

.flip-back {
    background: linear-gradient(to bottom, #f7a461, #f08126);
    color: #fff;
    transform: rotateY(180deg);
    font-size: 15px;
    line-height: 1.6;
}

.stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
}

.about-btn {
    border: 2px solid #f97316 !important;
    color: #f97316 !important;
    padding: 12px 28px !important;
    border-radius: 10px;
    font-weight: 700 !important;
}

.about-btn:hover {
    background: #f97316 !important;
    color: #fff !important;
}

/* Media Query */
@media (max-width: 768px) {
    .image-box {
        flex-direction: column;
    }

    .img-side {
        width: 100%;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }
}


/* Service Section */
.service-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #999;
    height: 100%;
    transition: 0.4s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #ff7a18, #ffb347);
    transition: 0.4s ease;
    transform: translateX(-50%);
}

.service-card:hover::after {
    width: 100%;
}

.icon-wrap {
    width: 65px;
    height: 65px;
    background: #fff2e8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.4s ease;
}

.icon-wrap i {
    font-size: 28px;
    color: #ff7a18;
    transition: 0.4s ease;
}

.card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 72px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    pointer-events: none;
    transition: all 0.4s ease;
}

.service-card:hover .card-number {
    color: #ff7a18;
    transform: scale(0.8);
}

.service-card:hover .icon-wrap {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    box-shadow: 0 5px 15px rgba(255, 122, 24, 0.35);
}

.service-card:hover .icon-wrap i {
    color: #fff;
    transform: rotate(20deg);
}

.service-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: #6c757d;
}

.tags span {
    display: inline-block;
    background: #f5f5f5;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    margin: 5px 5px 0 0;
}

.discover {
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
}

.service-card:hover .discover {
    color: #ff7a18;
}

.mini-card {
    background: #fff;
    padding: 22px;
    border-radius: 16px;
    border: 1px solid #999;
    transition: 0.3s ease;
}

.mini-icon {
    width: 72px;
    height: 62px;
    border-radius: 14px;
    background: #fff1e6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.mini-icon i {
    font-size: 22px;
    color: #ff7a18;
    transition: 0.3s ease;
}

.mini-card:hover {
    border: 1px solid #ff7a18;
}

.mini-card:hover .mini-icon {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
}

.mini-card:hover .mini-icon i {
    color: #fff;
}

.mini-number {
    font-size: 12px;
    font-weight: 600;
    color: #ff7a18;
}

.mini-card h6 {
    font-weight: 600;
    margin: 4px 0 6px;
}

.mini-card p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.cta-card {
    background: linear-gradient(135deg, #ff7a18, #e35d5b);
    border-radius: 22px;
    padding: 45px 30px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(255, 122, 24, 0.35);
}

.cta-icon i {
    font-size: 60px;
    color: #fff;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.cta-icon i:hover {
    transform: rotate(-20deg);
}

.cta-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-card p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-btn {
    background: #fff;
    color: #ff7a18;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.5s ease;
}

.cta-btn:hover {
    background: #f9af7b;
    color: #ffffff;
    transform: scale(1.1);
}

/* Why Section */
.feature-box {
    background: #fffefe;
    border: 1px solid #c4c1c1bb;
    border-radius: 18px;
    padding: 28px;
    display: flex;
    gap: 18px;
    transition: 0.3s ease;
    border-left: 4px solid #ff7a18;
}

.feature-box:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: #fff1e6;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 22px;
    color: #ff7a18;
}

.feature-box h6 {
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-box p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.stats h2 {
    color: #ff7a18;
    font-weight: 700;
    margin-bottom: 5px;
}

.stats span {
    font-size: 14px;
    color: #ff7a18;
}

.info-card {
    position: relative;
    border-radius: 24px;
    padding: 35px;
    height: 100%;
}

.white-card {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s ease;
}

.white-card:hover {
    box-shadow: 0 0 3px 3px #dad8d6a6;
    transform: translateY(-8px);
}

.white-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: linear-gradient(to right, #ff7a18, #ffb347);
    transition: 0.4s ease;
    transform: translateX(-50%);
}

.white-card:hover::before {
    width: 100%;
}

.orange-card {
    background: linear-gradient(135deg, #ff7a18, #d96a4a) !important;
    color: #fff;
    border-radius: 24px;
    transition: all 0.4s ease;
}

.orange-card:hover {
    box-shadow: 0 0 3px 3px #f9d5b2a6;
    transform: translateY(-8px);
}

.card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.icon-box2 {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #fff1e6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box2 i {
    color: #ff7a18;
    font-size: 22px;
}

.icon-box2.orange {
    background: rgba(255, 255, 255, 0.2);
}

.icon-box2.orange i {
    color: #fff;
}

.tag {
    background: #fff1e6;
    color: #ff7a18;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

.tag.orange {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.white-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

.white-card p {
    color: #6c757d;
}

.orange-card p {
    color: rgba(255, 255, 255, 0.9);
}

.explore {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: #ff7a18;
    text-decoration: none;
}

.explore.white {
    color: #fff;
}

.action-panel {
    background: #fff4eb;
    border-radius: 28px;
    padding: 40px 50px;
}

.action-panel p {
    color: #6c757d;
    font-size: 18px;
    max-width: 420px;
}

.action-btn {
    padding: 12px 12px !important;
    border-radius: 14px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-3px);
}

.action-btn-primary {
    background: #ff7a18 !important;
    color: #fff !important;
    border: none !important;
}

.action-btn-outline {
    border: 2px solid #ff7a18 !important;
    color: #ff7a18 !important;
    background: transparent !important;
}


/* Portfolio Section */
.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.portfolio-card img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: #eed0b856;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: 0.4s ease;
}

.portfolio-overlay a {
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s ease;
}

.portfolio-overlay a:hover {
    background: #ff7a18;
    color: #fff;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    margin-top: 12px;
}

.portfolio-info span {
    font-size: 15px;
    font-weight: 600;
    color: #6c757d;
}

.portfolio-info h5 {
    margin: 5px 0 0;
    font-size: 30px;
    font-weight: 700;
}

/* Testimonials Section */
.testimonials {
    background: #020617;
}

.testimonial-card {
    background: #2a2a2a;
    color: #fff;
    padding: 30px;
    border-left: 4px solid #ff7a18;
    height: 100%;
    transition: 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

.stars i {
    color: #ff7a18;
}

.testimonial-divider {
    width: 100%;
    border-top: 3px dashed rgba(255, 255, 255, 0.25);
    margin: 25px 0;
}

.profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #ff7a18;
}

.role {
    color: #ff7a18;
    font-size: 14px;
}

.carousel-controls-bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-controls-bottom .carousel-control-prev,
.carousel-controls-bottom .carousel-control-next {
    position: static;
    width: 55px;
    height: 55px;
    background: #ff7a18;
    border-radius: 50%;
    opacity: 1;
}

.carousel-controls-bottom .carousel-control-prev-icon,
.carousel-controls-bottom .carousel-control-next-icon {
    filter: invert(1);
    width: 20px;
    height: 20px;
}

/* Team Section */
.team-card {
    background: #fff;
    border: 1px solid #e2e1e1a8;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px #f3c5a0;
}

.team-img-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.team-img-wrap::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 4px solid #ff7a18;
    opacity: 0.5;
    transition: 0.4s ease;
}

.team-card:hover .team-img-wrap::after {
    inset: -10px;
    opacity: 0.9;
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.role-badge {
    display: inline-block;
    background: #fff1e6;
    color: #ff7a18;
    padding: 6px 24px;
    text-transform: uppercase;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
}

.team-card p {
    font-size: 16px;
    width: 85%;
    color: #6c757d;
    margin-bottom: 18px;
}

.team-social a {
    width: 40px;
    height: 40px;
    font-size: 17px;
    background: #f3f3f3;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #444;
    margin: 0 6px;
    transition: 0.3s ease;
    text-decoration: none;
}

.team-card:hover .team-social a {
    background: #ff7a18;
    color: #fff;
}


/* Stat Section */
.stat-card {
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #e2e1e1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.stat-card:hover {
    border: 1px solid #ff7a18;
    box-shadow: 0 10px 15px #efd4c2;
    transform: translateY(-5px);
}

.stat-card:hover .icon-box3 {
    background-color: #ff7a18;
    color: #fff;
}

.icon-box3 {
    width: 58px;
    height: 58px;
    background: #fff1e6;
    color: #ff7a00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.4s ease;
}

/* Pricing Section */
.pricing-card {
    border-radius: 18px;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    background: #fff;
}

.pricing-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 10px 20px rgba(255, 128, 0, 0.25);
}

.pricing-card .icon4 {
    width: 60px;
    height: 60px;
    font-size: 25px;
    border-radius: 15%;
    background-color: #fbd7b7;
    color: #f67508;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.pricing-card.featured {
    border: 2px solid #ff7a00;
}

.pricing-card.featured .card-header {
    background: #ff7a00;
    color: #fff;
}

.price {
    font-size: 44px;
    font-weight: 700;
}

.price small {
    font-size: 16px;
    color: #888;
}

.feature-list li {
    margin-bottom: 12px;
}

.feature-list li::before {
    content: "";
    color: #ff7a00;
    margin-right: 10px;
    font-weight: 600;
}

.side-btn:hover {
    background-color: #f67508 !important;
    color: #fff !important;
}

.feature-wrapper {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.feature-card {
    background: #fff6ed;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #f7d6b6;
}

.feature-card:hover .icon {
    background-color: #f67508;
    color: #fff;
}

.feature-card h6 {
    margin: 0;
    font-weight: 600;
}

.feature-card small {
    color: #777;
}

.feature-card .icon {
    width: 42px;
    height: 42px;
    background: #ffe2cc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7a00;
    font-size: 18px;
}

.feature-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-links a {
    color: #f08126;
    text-decoration: none;
    font-weight: 500;
}

.feature-links i {
    margin-right: 6px;
}

/* FAQ Section */
.category-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: 0.3s;
}

.category-card.active {
    background: #ff7a00;
    color: #fff;
}

.category-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 20px;
    background: #f4d7bf;
    color: #ff7a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.category-card:not(.active):hover {
    border-color: #ff7a00;
}

.help-box {
    background: linear-gradient(135deg, #fff2e8, #ffe4cc);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
}

.help-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ff7a00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 22px;
}

.faq-toggle {
    display: none;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.faq-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.faq-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff2e8;
    color: #ff7a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: 0.3s;
}

.faq-question {
    font-weight: 600;
    color: #333;
    transition: 0.3s;
}

.faq-arrow {
    font-size: 18px;
    color: #aaa;
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 50px;
    color: #666;
}

.faq-toggle:checked~.faq-answer {
    max-height: 200px;
    margin-top: 10px;
}

.faq-toggle:checked+.faq-label .faq-arrow {
    transform: rotate(180deg);
    color: #ff7a00;
}

.faq-label:hover .faq-icon,
.faq-toggle:checked+.faq-label .faq-icon {
    background: #ff7a00;
    color: #fff;
}

.faq-label:hover .faq-question,
.faq-toggle:checked+.faq-label .faq-question {
    color: #ff7a00;
}

.faq-label:hover .faq-arrow {
    color: #ff7a00;
}


/* Contact Section */
.contact-wrapper {
    background: #fff;
    border-radius: 26px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.info-card {
    background: #fffaf6;
    border: 1px solid #ffd7b5;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    transition: 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 122, 0, 0.25);
}

.info-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #ffe6cf;
    color: #ff7a00;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 22px;
}

.info-card:hover .info-icon {
    background-color: #f67508;
    color: #fff;
}

.form-control {
    border-radius: 14px;
    padding: 14px 18px;
    border: 1px solid #e6e6e6;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #ff7a00;
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.15);
}

textarea.form-control {
    resize: none;
}

.btn-send {
    background: #ff7a00;
    color: #fff;
    padding: 14px 26px;
    border-radius: 50px;
    border: none;
    transition: 0.3s;
}

.btn-send:hover {
    background: #e96f00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.35);
}

.right-panel {
    background: linear-gradient(180deg, #ff7a00, #cc5c5c);
    border-radius: 26px;
    color: #fff;
    padding: 40px;
    height: 100%;
}

.stat2-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
}

.stat2-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-6px);
}

.testimonial2 {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 25px;
    transition: 0.3s;
}

.testimonial2 img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #efe8e4;
}

.testimonial2:hover {
    background: rgba(255, 255, 255, 0.25);
}

.social3 a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social3 a:hover {
    background: #fff;
    color: #ff7a00;
    transform: translateY(-4px);
}


/* 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: #f67508;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.footer p {
    color: #bfbfbf;
    font-size: 15px;
}

.footer a {
    color: #bfbfbf;
    text-decoration: none;
}

.footer a:hover {
    color: #f67508;
}

.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: #f67508;
    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: #f67508;
}

.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: #f67508;
    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: #f67508;
}

.designed-by span {
    color: #f67508;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    background: #f67508;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
    z-index: 999;
}