@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: none;
    box-shadow: none;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: var(--egx-para-1);
    overflow-x: hidden;

}

.img,
img {
    max-width: 100%;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

a,
span {
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    text-transform: inherit;
    text-decoration: none;
    transition: inherit;

}

button {
    border: none;
    outline: none;
}

a:focus,
a:hover {
    box-shadow: none;
    color: inherit;
    text-decoration: none;
}

h1 {
    font-size: 55px;
}

h2 {
    font-size: 55px;
}

h3 {
    font-size: 42px;
}

h4 {
    font-size: 27px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

::-moz-selection {
    background-color: #3065D0;
    color: white;
    text-shadow: none;
}

::-moz-selection {
    background-color: #3065D0;
    color: white;
    text-shadow: none;
}

::selection {
    background-color: #3065D0;
    color: white;
    text-shadow: none;
}



header {
    width: 100%;
    transition: 300ms ease-in-out;
    background: #fff;
}

:root {
    scroll-behavior: inherit;

    --urbanist: "Urbanist", sans-serif;
    --inter: "Inter", sans-serif;

    --egx-pr-1: rgb(124, 187, 59);
    --egx-pr-2: #B9D32A;

    --egx-gd-1: -webkit-linear-gradient(-180deg, rgb(214, 223, 34) 0%, rgb(124, 187, 59) 30%, rgb(33, 151, 83) 100%);
    --egx-gd-2: -webkit-linear-gradient(0deg, #209753 0%, #B9D32A 100%);

    --egx-heading-1: rgb(29, 30, 30);

    --egx-para-1: #4F4E4E;

    --cube-1: cubic-bezier(.25, .46, .45, .50);
    --cube-2: cubic-bezier(0.31, -0.105, 0.43, 1.4);

}

.topheader {
    background: #000;
}

.topheader .topbar-wrap .action {
    display: flex;
    gap: 27px;
    align-items: center;
}

.topheader .topbar-wrap {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.topheader .topbar-wrap .action a .icon {
    font-size: 19px;
    color: #fff;
}

.topheader .topbar-wrap .action a .link-text {
    font-size: 15px;
    font-family: var(--urbanist);
    font-weight: 600;
    line-height: 1;
}

.topheader .topbar-wrap .action a {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    transition: all 0.3s ease;
}

.topheader .topbar-wrap .social-media {
    background: var(--egx-gd-1);
    width: 272px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
}

.topheader .topbar-wrap .action a:hover {
    color: var(--egx-pr-1);
    transform: translateX(3px);
}

.topheader .topbar-wrap .social-media .social-link {
    font-size: 16px;
    color: #fff;
    transition: all 0.3s ease;
}

.topheader .topbar-wrap .social-media .social-link:hover {
    color: #000;
    transform: scale(1.2);
}

.logo_site {
    width: 134px;
    margin: auto;
}

.navbar-nav {
    flex: 1;
    justify-content: center;
    /* Center menu items */
}

@media (max-width: 991px) {
    .navbar-nav {
        justify-content: flex-start;
        /* On mobile, menu aligns left */
    }
}

.navbar-nav li:hover>a.nav-link {
    color: var(--egx-pr-1);
}

.navbar-nav li:hover>a::before {
    transform: translateY(-50%) rotate(360deg);
}

@media (min-width: 992px) {

    /* lg and above */
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        /* remove dropdown animation gap */
    }

    .navbar .dropdown-toggle::after {
        transform: rotate(0deg);
    }
}

li a.nav-link {
    color: rgb(2, 22, 9);
}

li.nav-item {
    margin: 0 10px;
    color: rgb(2, 22, 9);
}

.dropdown-menu {
    width: 100%;
    border: 0;
}

.dropdown-menu li {}

.dropdown-menu li a {}

.nav-link:focus-visible {
    box-shadow: none;
}

.egx-header-1-search-btn {
    border: none;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    outline: none;
    background-color: rgb(234, 234, 234);
    position: relative;
}

.egx-header-1-search-btn:hover i {
    color: #fff;
}

.egx-header-1-search-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--egx-gd-1);
    border-radius: 100%;
    transform: scale(0);
    transition: all 0.4s ease;
}

.egx-header-1-search-btn:hover::after {
    transform: scale(1);
}

.egx-header-1-search-btn i {
    color: var(--egx-heading-1);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.egx-btn-1 {
    display: inline-block;
    font-size: 16px;
    font-family: var(--urbanist);
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
    text-transform: capitalize;
    background: var(--egx-gd-1);
    border-radius: 50px;
    padding: 20.5px 30px;
    position: relative;
    z-index: 1;
    transition: 0.3s var(--cube-1);
    overflow: hidden;
    transition-delay: 0s;
}

.egx-btn-1 .btn-text {
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-bottom: -3px;
    text-align: center;
}

.egx-btn-1 .btn-text::before {
    top: 0;
    left: 0;
    opacity: 1;
    display: block;
    transition: 0.5s;
    position: relative;
    background: var(--blta-pr-1);
    color: #fff;
    content: attr(data-front);
    transform: translateY(0);
}

.egx-btn-1 .btn-text::after {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    display: block;
    transition: 0.5s;
    position: absolute;
    background: transparent;
    color: #fff;
    content: attr(data-back);
    transform: translateY(240%);
}

.egx-btn-1::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #8fbe4a;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 100%;
    z-index: -1;
    transition: 0.5s ease-in-out;
}

.egx-btn-1:hover {
    transition-delay: 0.3s;
}

.egx-btn-1:hover::after {
    top: 0%;
    border-radius: 0%;
}

.menu-b-top {
    border-top: 2px solid #5f9f55;
}

.dropdown-menu {
    padding: 34px 0 0;
    width: 250px;

}

.dropdown-menu li:hover>a {
    color: var(--egx-pr-1);
    padding-left: 25px;
}

.dropdown-menu li a {
    text-transform: capitalize;
    transition: 400ms var(--cube-1);
}

.egx-hero-inner-wrap {}

.h-img {
    position: relative;
}

.h-slid {
    position: absolute;
    width: 100%;
    z-index: 1;
    top: 0;
    left: 0;
}
    .m--he1 {
        color: #000 !important;
        text-shadow: 1px 1px 1px #fff;
    }
.egx-hero-inner-area {
    background: url("../assets/images/cbgweb2.jpg") no-repeat center center;
    background-size: cover;
    /* makes image scale to fill container */
    width: 100%;
    min-height: 50vh;
    background-position: right;
    /* full screen height */
    padding: 60px 0;
    /* spacing for small screens */
}

.h-slid-title {
    text-shadow: 3px 3px 4px #fff;
    color: #000;
    padding: 10px 0;
    margin-top: 0;
    /* remove fixed margin */
}

/* Smaller screens adjustments */
@media (max-width: 768px) {
    .egx-hero-inner-area {
        background-position: center;
        /* keep image centered */
        min-height: auto;
        /* adapt height to content */
        padding: 40px 20px;
    }

    .h-slid-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
}

.egx-hero-inner-wrap .hero-inner-title {
    font-weight: 800;
    font-size: 70px;
    line-height: 76px;
    text-transform: capitalize;
    color: #0D0D0D;
}

.egx-hero-inner-wrap .disc {
    margin-top: 25px;
    color: #0D0D0D;
    max-width: 477px;
}

.egx-hero-inner-wrap .btn-wrap {
    margin-top: 40px;
}

.egx-hero-inner-wrap .btn-wrap .egx-btn-3 {
    box-shadow: none;
}

.egx-btn-3 {

    align-items: center;
    gap: 12px;
    padding: 11.75px 28px;
    background: -webkit-linear-gradient(130deg, #209753 0%, #B9D32A 100%);
    box-shadow: 0px 4px 0px rgba(13, 13, 13, 0.08);
    border-radius: 100px;
    position: relative;
    transition: all 0.4s ease;
}

.egx-btn-3 .btn-text {
    font-family: var(--urbanist);
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #FFFFFF;
    position: relative;
    z-index: 2;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.egx-solar-panel-1-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 29px;
}

.egx-solar-panel-1-card {
    padding: 0 25px 35px 25px;
    position: relative;
    overflow: hidden;
}

.egx-solar-panel-1-card .card-img {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.elementor img {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.img-cover img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.egx-solar-panel-1-card .card-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--egx-gd-1);
    height: 3px;
}

.egx-solar-panel-1-card .card-content {
    padding: 19px 10px 0;
    position: relative;
    z-index: 2;
}

.egx-solar-panel-1-card .card-content .title-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 21px;
}

.egx-solar-panel-1-card .card-content .title-wrap .icon {
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 11.96px 1.04px rgba(28, 36, 104, 0.13);
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #000000;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.egx-solar-panel-1-card .card-content .title-wrap .icon i {
    position: relative;
    z-index: 2;
}

.egx-solar-panel-1-card .card-content .title-wrap .title {
    font-size: 25px;
    font-weight: 900;
    color: #fff;
    font-family: var(--urbanist);
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.egx-solar-panel-1-card .card-content .title-wrap .title a {
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 94%;
    background-repeat: no-repeat;
    background-size: 0% 1.5px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.egx-solar-panel-1-card .card-content .disc {
    margin-top: 22px;
    color: rgb(191, 191, 191);
}


.egx-solar-panel-1-card:hover .card-img {
    transform: scaleX(1.15);
}

.egx-solar-panel-1-card::after {
    content: "";
    background-color: rgb(21, 35, 48);
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 75.5%;
}

.egx-subtitle-1 .gradient {
    background: var(--egx-gd-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.egx-section-title-1 {
    font-family: var(--urbanist);
    font-size: 60px;
    font-weight: 900;
    line-height: 65px;
    color: rgb(0, 0, 0);
    text-transform: capitalize;
    margin-bottom: 0;
}

.egx-split-text {
    text-transform: unset !important;
    letter-spacing: -1.2px;
    perspective: 2000px;
    transform-style: preserve-3d;
}

footer {
    overflow: hidden;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 75px 0px 0px 0px;
    background-color: #003936;
    border-top: 5px solid #5f9f55;
    margin-top: 50px;
}

footer .subtitle {
    font-size: 18px;
    font-family: var(--urbanist);
    font-weight: 700;
    line-height: 30px;
    background: var(--egx-gd-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

footer .title {
    font-size: 35px;
    font-family: var(--urbanist);
    color: rgb(255, 255, 255);
    line-height: 1.143;
}


footer .app-store {
    background-color: #050608;
    padding: 10px 40px;
    height: 88px;
    width: 300px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    transition: all 0.5s ease;
}

footer .google-play {
    background-color: #f7f7f7;
    padding: 10px 40px;
    border-radius: 100px;
    height: 88px;
    width: 300px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

footer .store-wrap {
    text-align: end;
    gap: 12px;
    color: #fff;
}

.t-w {
    color: #fff;
}

.link-br {
    background-color: rgb(1, 50, 47);
    width: 100%;
    height: 2px;
    margin: 10px 0;
}

.f-logo {
    display: block;
}

.f-logo img {
    width: 200px;
    background: #fff;
}

.m-bder {
    border-bottom: 2px solid rgb(1, 50, 47);
    padding-bottom: 10px;
}

.f-menu {
    line-height: 45px;
}

.quick-close {
    position: absolute;
    top: 5px;
    right: 5px;
}

.w-100-1 {
    max-width: 100% !important;
}

.f-social-media .social-link {
    padding: 5px 5px;
    margin-left: 10px;
    border-radius: 50px;
    text-align: center;
    display: inline-block;
    width: 40px;
    height: 40px;
}

.s-icon-f {
    background: #3B5998;
}

.s-icon-t {
    background: #33ccff;
}

.s-icon-l {
    background: #007bb7;
}

.s-icon-i {
    background: linear-gradient(45deg, #f58529, #feda77, #dd2a7b, #8134af, #515bd4);
}

.s-icon-y {
    background: #FF0000;
}

.egx-subtitle-2 {
    font-family: var(--urbanist);
    font-weight: 900;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    background: var(--egx-gd-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.egx-subtitle-2 .bubble-left,
.egx-subtitle-2 .bubble-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.egx-subtitle-2:is(.active) .bubble-left .bubble-1,
.egx-subtitle-2:is(.active) .bubble-left .bubble-2,
.egx-subtitle-2:is(.active) .bubble-left .bubble-3,
.egx-subtitle-2:is(.active) .bubble-left .bubble-4 {
    transform: translateX(0px) scale(1);
}

.egx-subtitle-2 .bubble-left .bubble-1,
.egx-subtitle-2 .bubble-left .bubble-2,
.egx-subtitle-2 .bubble-left .bubble-3,
.egx-subtitle-2 .bubble-left .bubble-4 {
    transform: translateX(10px) scale(0);
    transition: all 0.8s ease;
}

.egx-subtitle-2 .bubble-left .bubble-1,
.egx-subtitle-2 .bubble-right .bubble-1 {
    display: inline-flex;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--egx-gd-2);
}

.egx-subtitle-2 .bubble-left .bubble-2,
.egx-subtitle-2 .bubble-right .bubble-2 {
    display: inline-flex;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--egx-gd-2);
}

.egx-subtitle-2 .bubble-left .bubble-3,
.egx-subtitle-2 .bubble-right .bubble-3 {
    display: inline-flex;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--egx-gd-2);
}

.egx-subtitle-2 .bubble-left .bubble-4,
.egx-subtitle-2 .bubble-right .bubble-4 {
    display: inline-flex;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--egx-gd-2);
}

.egx-subtitle-2 .bubble-right {
    flex-direction: row-reverse;
}

.elementor-gt-desc {
    margin: 30px 0px 0px 0px;
    color: #717171;
}

.feature__four {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.feature__four .item {
    display: grid;
    grid-template-columns: 66px auto;
    align-items: center;
}

.point .line {
    width: 50%;
    height: 1px;
    background: #DFE1E5;
    flex: 0 0 auto;
}

.point .number {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    width: 59px;
    height: 54px;
    background: #DFE1E5;
    border-radius: 4px;
    flex: 0 0 auto;
}

.icon-num {
    position: relative;
    display: table;
    margin: auto;
}

.icon-num img {
    width: 80px;
}

.arow1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 38px;
    z-index: -1;
    background: url(../assets/images/arow.png);
    background-repeat: no-repeat;
    top: 0;
    left: -64px;
    opacity: 0.1;
}

.ser1 {
    position: relative;
}


.ser1 h2 {
    font-size: 26px;
    text-align: center;
}

.ser1 p {
    text-align: center;
}

.ser1 .icon-num span {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--egx-gd-1);
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -10px;
    right: -10px;
}

.feature__four .item .title {
    font-size: 22px;
    color: #0D0D0D;
}

.point {
    display: flex;
    align-items: center;
    gap: 0;
}

.egx-heading-1 {
    font-family: var(--urbanist);
    line-height: 1.2;
    font-weight: 700;
    color: var(--egx-heading-1);
    text-transform: capitalize;
    margin-bottom: 0px;
}

.feature__four .item .feature-disc {
    line-height: 28px;
    color: #717171;
}

.egx-para-1 {
    font-size: 18px;
    font-family: "Urbanist";
    font-weight: 500;
    color: #717171;
    line-height: 30px;
    margin-bottom: 0;
}

.elementor-widget:not(:last-child) {
    margin-bottom: 20px;
}

.elementor-widget:not(:last-child) {
    margin-block-end: 20px;
}

.egx-process-2-wrap {
    margin-top: 50px;
}

.egx-process-2-wrap .step-top {
    max-width: 750px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    position: relative;
}

.elementor-widget-wrap>.elementor-element {
    width: 100%;
}

.egx-process-2-wrap .step-top .step-number {
    position: absolute;
    width: 100%;
    bottom: -40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.egx-process-2-wrap .step-top .step-number .number {
    display: flex;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    position: relative;
}

.egx-heading-1 {
    font-family: var(--urbanist);
    line-height: 1.2;
    font-weight: 700;
    color: var(--egx-heading-1);
    text-transform: capitalize;
    margin-bottom: 0px;
}

.egx-process-2-wrap .step-top .step-number .number span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--egx-gd-1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.egx-process-2-wrap .step-top .step-number .number::after {
    content: "";
    width: 5px;
    height: 45px;
    position: absolute;
    top: 30px;
    background: var(--egx-gd-1);
    z-index: -2;
}

.egx-process-2-wrap .step-top .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.egx-process-2-wrap .step-top .item .title {
    margin-top: 20px;
    font-size: 23px;
    font-weight: 900;
}

.egx-process-2-wrap .step-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    position: relative;
}

.egx-process-2-wrap .step-progress .start,
.egx-process-2-wrap .step-progress .finish {
    width: 103px;
    height: 103px;
    border-radius: 50%;
    background: var(--egx-gd-1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.egx-process-2-wrap .step-progress .start .title,
.egx-process-2-wrap .step-progress .finish .title {
    font-size: 20px;
    line-height: 1;
    font-family: var(--urbanist);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
}

.egx-process-2-wrap .step-progress::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 12px;
    background: var(--egx-gd-1);
    z-index: -1;
}

.egx-process-2-wrap .step-bottom {
    max-width: 1015px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    position: relative;
}

.egx-process-2-wrap .step-bottom .step-number .number {
    display: flex;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    position: relative;
}

.egx-process-2-wrap .step-bottom .step-number .number span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--egx-gd-1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.egx-process-2-wrap .step-bottom .step-number .number::after {
    content: "";
    width: 5px;
    height: 45px;
    position: absolute;
    bottom: 30px;
    background: var(--egx-gd-1);
    z-index: -2;
}

.egx-process-2-wrap .step-bottom .step-number {
    position: absolute;
    width: 100%;
    top: -41px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.egx-process-2-wrap .step-bottom .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.egx-process-2-wrap .step-bottom .item .title {
    margin-top: 20px;
    font-size: 23px;
    font-weight: 900;
}

.q-contact {
    background-image: url(../assets/images/bannr1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center 44.5938px;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 105px 0px 78px 0px;
    margin: 105px 0px;

}

.elementor-element-2d4548d>.elementor-widget-container {
    margin: 0px 0px -20px 0px;
}

.elementor-element .elementor-widget-container {
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}

.list-mainarea {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 27px;
}

.list-mainarea .item {
    display: grid;
    grid-template-columns: 27px auto;
    align-items: center;
    gap: 11px;
}

.list-mainarea .item .icon {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background-color: rgb(233, 233, 233);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #00b7ff;
}

.list-mainarea .item .icon {
    color: #000000;
    background: #7CBB3B;
}

.elementor-element-2d4548d .list-mainarea .item .item-text {
    font-family: "Urbanist", Sans-serif;
    font-size: 17px;
    font-weight: 900;
    color: #FFFFFF;
}

.elementor-element-3de053f>.elementor-widget-container {
    margin: 0px 0px -20px 0px;
}

.elementor-element .elementor-widget-container {
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}

.egx-experience-3-left .growth {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.egx-experience-3-left .growth .item {
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 22px;
}

.egx-experience-3-left .growth .item .number {
    font-size: 37px;
    color: rgb(255, 255, 255);
    line-height: 1.3;
}

.egx-experience-3-left .growth .item .progress-item .progress-title {
    font-size: 14px;
    font-family: var(--urbanist);
    color: rgb(255, 255, 255);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 37px;
}

.egx-experience-3-left .growth .item .progress-item .progress {
    background-color: rgb(238, 238, 238);
    height: 10px;
    border-radius: 5px;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.egx-experience-3-left .growth .item .progress-item .progress .progress-bar {
    background: var(--egx-gd-1);
    height: 10px;
    width: 0;
    border-radius: 5px;
    position: relative;
    z-index: -1;
    -webkit-transition: 1s all ease-in-out;
    transition: 1s all ease-in-out;
}

.egx-experience-3-left .growth .item .progress-item .progress span {
    display: none;
}

.elementor-widget-container {
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);

}

.feature__four img {
    width: 55px;
}

.egx-btn-2 {
    position: relative;
    border-radius: 100px;
    padding: 17px 35px;
    display: inline-flex;
    gap: 21px;
    align-items: center;
    overflow: hidden;
    background: var(--egx-gd-1);
}

.egx-btn-2 .btn-text {
    font-size: 16px;
    font-family: var(--urbanist);
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-transform: capitalize;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.egx-btn-2 .btn-icon {
    color: #fff;
    font-size: 17px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    transform: rotate(-45deg);
}

.egx-btn-2:hover::after {
    width: 100%;
}

.egx-btn-2:is(.hover-black-btn)::after {
    background: #040404;
}

.egx-btn-2::after {
    content: "";
    position: absolute;
    background: #ffffff;
    left: 0;
    top: 0px;
    width: 0%;
    height: 100%;
    border-radius: 100px;
    transition: all 0.4s ease;
}

.elementor-element-8c2b212>.elementor-element-populated {
    margin: 0px 0px 0px 50px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 50px;
}

.elementor-element-populated {
    padding: 10px;
}

.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap {
    display: flex;
}

.elementor-widget-wrap {
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
}

.elementor-widget-wrap>.elementor-element {
    width: 100%;
}

.elementor-element .elementor-widget-container {
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}

.egx-experience-3-right {
    position: relative;
}

.egx-experience-3-right .main-img {
    position: absolute;
    right: 0;
    top: -200px;
}

.egx-experience-3-right .main-img img {
    border-radius: 10px;
}

.egx-experience-3-right .form-wrap {
    position: relative;
    z-index: 2;
    background: var(--egx-gd-1);
    padding: 45px;
    border-radius: 10px;
    text-align: center;
    max-width: 446px;
    margin: auto;
}

.egx-experience-3-right .form-wrap .subtitle {
    font-size: 15px;
    font-family: var(--urbanist);
    color: rgb(255, 255, 255);
    font-weight: 700;
    line-height: 28px;
}

.egx-experience-3-right .form-wrap .title {
    font-size: 30px;
    color: rgb(255, 255, 255);
    font-weight: 800;
    line-height: 1.2;
}

.egx-experience-3-right .form-wrap form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.egx-experience-3-right .form-wrap form input {
    border: none;
    outline: none;
    height: 62px;
    background-color: #fff;
    border-radius: 10px;
    padding: 8px 20px 8px 30px;
    font-family: var(--urbanist);
    font-size: 14px;
    line-height: 1.2;
    color: #000;
    width: 100%;
}

.egx-experience-3-right .form-wrap form textarea {
    border: none;
    outline: none;
    min-height: 70px;
    height: 118px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 20px 8px 30px;
    font-family: var(--urbanist);
    font-size: 14px;
    color: #000;
    line-height: 1.2;
     width: 100%;
}

.egx-experience-3-right .form-wrap form button {
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    font-family: "Urbanist";
    color: rgb(1, 1, 1);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.5;
    padding: 18px 20px;
    border-radius: 100px;
    margin-top: 22px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.egx-experience-3-right .form-wrap form button span {
    position: relative;
    z-index: 2;

}

.egx-experience-3-right .form-wrap form button:hover::after {
    width: 100%;
    color: #fff;
}

.egx-experience-3-right .form-wrap form button::after {}

.egx-faq-1-left .faq-tab-btn-wrap {
    height: 208px;
    display: flex;
    align-items: end;
    gap: 10px;
    justify-content: center;
    padding-bottom: 20px;
    border-radius: 20px;
    margin-bottom: 25px;
}

.egx-faq-1-left .faq-tab-btn-wrap .faq-btn {
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    font-family: var(--urbanist);
    color: rgb(30, 34, 43);
    padding: 15px 18px;
    background: #fff;
    border-radius: 100px;
}

.egx-faq-1-left .faq-tab-btn-wrap .faq-btn:is(.active) {
    background: var(--egx-gd-1);
    color: #fff;
}

.egx-faq-1-left .disc {
    color: rgb(113, 113, 113);
}

.egx-faq-1-left .award {
    margin-top: 30px;
    position: relative;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.08);
    max-width: 235px;
    padding: 20px 0 20px 50px;
    margin-left: 40px;
}

.egx-faq-1-left .award::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    background-color: rgb(124, 187, 59);
    right: 0;
    top: 0;
}

.egx-faq-1-left .award .icon {
    border-radius: 50%;
    background: var(--egx-gd-1);
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    position: absolute;
    left: -40px;
    z-index: 2;
}

.egx-faq-1-left .award .number {
    font-size: 40px;
    font-family: var(--urbanist);
    color: rgb(40, 40, 40);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 0;
}

.egx-faq-1-left .award .number {
    font-size: 40px;
    font-family: var(--urbanist);
    color: rgb(40, 40, 40);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 0;
}

.egx-faq-1-left .award .title {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

.egx-faq-1-left .award::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    background-color: rgb(33, 151, 83);
    left: 0;
    top: 0;
}

.egx-faq-1-right .fade:is(.show) {
    transform: translateY(0px);
    transition: 0.5s ease;
}

.tab-content>.active {
    display: block;
}

.egx-faq-1-right .accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    --bs-accordion-bg: transparent;
    --bs-accordion-border-width: 0px;
}

.egx-faq-1-right .accordion .accordion-item {
    background: var(--egx-gd-1);
    position: relative;
    border-radius: 10px !important;
    overflow: hidden;
}

.egx-faq-1-right .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background: transparent;
}

.egx-faq-1-right .accordion .accordion-item .accordion-header .accordion-button {
    border-radius: 10px;
    background: rgb(248, 248, 248);
    font-size: 20px;
    font-family: var(--urbanist);
    color: rgb(30, 34, 43);
    line-height: 1.4;
    font-weight: 900;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 21px 21px 21px 110px;
    position: static;
    transition: all 0.3s ease;
}

.accordion-button:focus {
    box-shadow: none;
}

.egx-faq-1-right .accordion .accordion-item .accordion-header .accordion-button .number {
    font-size: 20px;
    font-family: var(--urbanist);
    font-weight: 800;
    position: absolute;
    top: 0;
    left: 0;
    width: 68px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--egx-gd-1);
    color: #fff;
}

.egx-faq-1-right .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .text {
    color: #fff;
}

.egx-faq-1-right .accordion .accordion-item .accordion-header .accordion-button .text {
    transition: all 0.1s ease;
}

.egx-faq-1-right .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon {
    background: var(--egx-gd-1);
}

.egx-faq-1-right .accordion .accordion-item .accordion-header .accordion-button .icon {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: rgb(228, 225, 225);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.egx-faq-1-right .accordion .accordion-item .accordion-header .accordion-button .icon .plus {
    font-size: 24px;
    font-weight: 600;
}

.egx-faq-1-right .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon .plus {
    opacity: 0;
}

.egx-faq-1-right .accordion .accordion-item .accordion-header .accordion-button .icon .minus {
    font-size: 24px;
    font-weight: 600;
    position: absolute;
    opacity: 0;
    color: #fff;
}

.egx-faq-1-right .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon .minus {
    opacity: 1;
}

.egx-faq-1-right .accordion .accordion-item .accordion-body {
    padding: 0 25px 35px 110px;

    margin-top: -10px;
}

.egx-faq-1-right .accordion .accordion-item .accordion-body .disc {
    color: #fff;
}

.contact-section {
    position: relative;
    padding: 60px 0 40px;
    overflow: hidden;
}

.auto-container {
    position: static;
    max-width: 1170px;
    padding: 0px 15px;
    margin: 0 auto;
}

.contact-section .contact-form-area {
    padding: 30px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.sec-title {
    position: relative;
    margin-bottom: 50px;
}

.contact-section .sec-title h2 {
    font-size: 22px;
    line-height: 26px;
}

.contact-form .form-group {
    margin-bottom: 20px;
    padding: 0 10px;
}


.contact-form .bootstrap-select .dropdown-menu {
    padding: 0;
}

.contact-form .dropdown-item.active,
.contact-form .dropdown-item:active {
    color: #fff;
}

.contact-form .bootstrap-select .dropdown-menu li a.active span.text {
    color: #fff;
}

.contact-form .dropdown-item {
    color: #222;
}

.contact-form .bootstrap-select .dropdown-menu li a span.text {
    color: #222;
    font-size: 16px;
}

.contact-form .dropup .dropdown-toggle::after {
    display: none;
}

.contact-form .title {
    position: relative;
    font-size: 30px;
    font-family: cerebri-bold;
}

.contact-form .sub-title {
    position: relative;
    font-size: 16px;
    font-family: cerebri-light;
    margin-bottom: 30px;
}

.contact-form .row {
    margin: 0 -10px;
}

.contact-form .form-group {
    margin-bottom: 20px;
    padding: 0 10px;
}

.contact-form .form-group textarea,
.contact-form .form-group select,
.contact-form .form-group input {
    width: 100%;
    height: 46px;
    padding: 0 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: transparent;
}

.contact-form .form-group textarea {
    height: 150px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.contact-form .bootstrap-select>.dropdown-toggle {
    width: 100%;
    padding: 17px 20px;
    background: transparent;
    border: 1px solid #eee;
    border-radius: 0;
}

.contact-form .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
}

.contact-form .bootstrap-select .dropdown-toggle .filter-option:after {
    top: 10px;
}


.contact-section .contact-info {
    position: relative;
}

.contact-section .contact-info li {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.contact-section .contact-info li .icon {
    position: relative;
    margin-right: 15px;
    margin-top: 5px;
    font-size: 35px;
    margin-top: 11px;
}

.contact-section .contact-info li .text {
    position: relative;
    color: #222;
}

.contact-section .contact-info li .text a {
    color: #222;
    transition: .5s;
}

.contact-section .social-links {
    position: relative;
    margin-bottom: 20px;
}

.contact-section .social-links li {
    position: relative;
    margin-right: 5px;
    margin-bottom: 10px;
    display: inline-block;
}

.contact-section .social-links li a {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 14px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 6px;
    text-align: center;
    border-radius: 6px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.12);
}

.contact-section .social-links li a:hover {
    color: #ffffff;
}

.contact-section .social-links li a:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-transform: scale(.7);
    -ms-transform: scale(.7);
    transform: scale(.7);
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.contact-section .social-links li a:hover:before {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.contact-section .social-links li a span {
    position: relative;
}

.contact-section .contact-form-area {
    padding: 30px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.contact-section .sec-title h2 {
    font-size: 22px;
    line-height: 26px;
}

@media only screen and (min-width: 992px) {}

.contact-section .dropdown.bootstrap-select.form-control {
    height: 60px;
}

.contact-form-section {
    padding: 20px;
}

.form-panel {
    background: #fcffe1;
    color: #000;
    font-size: 14px;
    box-shadow: 0px 0px 6px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
}

.form-panel .heading {
    background: var(--egx-gd-1);
    color: #fff;
    padding: 8px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.form-panel .box {
    padding: 10px;
}


footer .action {
    margin-top: 45px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


footer .action .link {
    display: grid;
    grid-template-columns: 37px auto;
    align-items: center;
    gap: 10px;
}

footer .action .link .icon {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    border: 2px dotted rgb(69, 108, 72);
    background: var(--egx-gd-1);
    transition: all 0.3s ease;
}

footer .action .link .link-text {
    font-size: 16px;
    font-family: var(--urbanist);
    color: rgb(255, 255, 255);
    font-weight: 700;
    line-height: 1.563;
    transition: all 0.3s ease;
}

footer .footer-list {
    display: flex;
    gap: 15px 50px;
    flex-wrap: wrap;
    margin-top: 35px;
}

footer .footer-list ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer .footer-list ul li a {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    transition: all 0.3s ease;
}

footer .footer-list ul li a i {
    color: rgb(33, 151, 83);
    font-size: 15px;
    transition: all 0.3s ease;
}

footer .footer-list ul li a span {
    font-size: 16px;
    font-family: var(--urbanist);
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    transition: all 0.3s ease;
}

.po-rtv {
    position: relative;
}

footer .f-line1::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 2px;
    background-color: rgb(1, 50, 47);
}


.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-box h3 {
    font-size: 22px;
}

.feature-box p {
    font-size: 14px;
    line-height: 20px;
}

.features .icon {
    font-size: 40px;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 15px;
}

.icon-1 {
    background: #ff5722;
}

/* Orange */
.icon-2 {
    background: #4caf50;
}

/* Green */
.icon-3 {
    background: #2196f3;
}

/* Blue */
.icon-4 {
    background: #ffc107;
}

/* Yellow */
.icon-5 {
    background: #9c27b0;
}

/* Purple */


.process-section {
    max-width: 900px;
    margin: auto;
    padding: 50px 20px;
}

.process-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.process-section p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
}

.timeline {
    position: relative;
    padding-left: 40px;
    border-left: 3px solid #28a745;
}

.timeline-step {
    margin-bottom: 40px;
    position: relative;
}

.timeline-step::before {
    content: attr(data-step);
    position: absolute;
    left: -55px;
    top: 0;
    background: #28a745;
    color: #fff;
    font-weight: bold;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    font-size: 16px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.step-icon {
    font-size: 30px;
    color: #28a745;
    float: left;
    margin-bottom: 10px;
}

.timeline-step h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #222;
}

.timeline-step p {
    margin: 5px 0 0;
    color: #555;
    line-height: 1.5;
}

.hadlin1 {
    margin-left: 45px;
}

.about-img img {
    border-radius: 5px;
    box-shadow: 0px 0px 5px #959595;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover img {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.b-footer {
    background: var(--egx-gd-1);
}

.r-btn {
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 22px;
    display: table;
    margin: 10px auto;
}

.d-pading-2 {
    padding: 100px 0 0;
}

.pageheader {
    width: 100%;
    text-align: center;
    background: #000 url(../assets/images/pageheader.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 68px;
    color: #fff;
    background-attachment: fixed;
    background-position: 0;
}


.pageheader h2 {
margin: auto;
    text-align: center;
    font-size: calc(1.325rem + .9vw);
}





.icon-big {
    font-size: 80px;
    color: #3498db;
    margin: 30px auto 50px;
    opacity: 0.15;
    user-select: none;
    pointer-events: none;
}

.card1 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 0.8s forwards;
    animation-delay: var(--delay);
}

.card1:last-child {
    margin-bottom: 0;
}




.icon-circle {
    min-width: 54px;
    min-height: 54px;
    background: #5c9c56;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgb(52 219 105 / 30%);
}

.card-content h3 {
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0 0 6px 0;
    color: #2c3e50;
    text-align: left;
}

.card-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    text-align: left;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delays */
.card:nth-child(1) {
    --delay: 0.15s;
}

.card:nth-child(2) {
    --delay: 0.35s;
}

.card:nth-child(3) {
    --delay: 0.55s;
}

.card:nth-child(4) {
    --delay: 0.75s;
}

/* Responsive */
@media (max-width: 600px) {

    .card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .card-content h3,
    .card-content p {
        text-align: center;
    }
}



.petrol-page .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.petrol-page .item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.petrol-page .item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.petrol-page .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 30px;
    margin-right: 20px;
    background: linear-gradient(135deg, #ff512f, #f09819);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.petrol-page .item:nth-child(2) .icon-circle {
    background: linear-gradient(135deg, #43cea2, #185a9d);
}

.petrol-page .item:nth-child(3) .icon-circle {
    background: linear-gradient(135deg, #f7971e, #ffd200);
}

.petrol-page .text h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #222;
}

.petrol-page .text p {
    margin: 8px 0 0;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .petrol-page .item {
        flex-direction: column;
        text-align: center;
    }

    .petrol-page .icon-circle {
        margin-right: 0;
        margin-bottom: 15px;
    }
}




/*////////////////////////////////////////////////////////////////////////////////////////*/



.about-page .profile-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-page .profile-img {
    flex: 1;
    text-align: center;

}

.about-page .profile-img img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #c9a227;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-page .profile-text {
    flex: 2;
    padding: 20px;
}

.about-page .profile-text h2 {
    color: #0a5c36;
    margin-bottom: 5px;
    font-size: 38px;
}

.about-page .profile-text h4 {
    color: #c9a227;
    margin-bottom: 20px;
    font-size: 22px;
}

.about-page .profile-text p {
    margin-bottom: 15px;
}

.about-page .highlight {
    color: #138a54;
    font-weight: bold;
}

/* Company Section */
.about-page .company-section {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.about-page .company-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-page .company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-page .company-card h3 {
    color: #0a5c36;
    margin-bottom: 10px;
}

.about-page .company-card p {
    font-size: 0.95rem;
}



@media (max-width: 768px) {
    .about-page .profile-card {
        flex-direction: column;
    }
}



.cng-page .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.cng-page .advantage-card {
    background: var(--egx-gd-1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}


.cng-page .advantage-icon {
    font-size: 40px;
    color: #00ff99;
    margin-bottom: 15px;
    animation: bounce 3s infinite;
}

.cng-page .advantage-card h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.cng-page .advantage-card p {
    font-size: 15px;
    color: #e0e0e0;
    line-height: 1.5;
}

/* Animations */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Responsive text sizing */
@media (max-width: 600px) {
    .cng-page .why-cng__content h2 {
        font-size: 32px;
    }

    .cng-page .why-cng__content p {
        font-size: 15px;
    }
}


.ev-system-page .ev-section {
    display: flex;
    max-width: 1100px;
    margin: 80px auto;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Left panel */
.ev-system-page .ev-left {
    flex: 1;
    background: var(--egx-gd-1);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

.ev-system-page .ev-left::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: white;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.ev-system-page .ev-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.ev-system-page .ev-left .big-icon {
    font-size: 90px;
    animation: pulse 3s infinite ease-in-out;
    opacity: 0.9;
}

/* Right panel */
.ev-system-page .ev-right {
    flex: 1.2;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ev-system-page .benefit-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #d0f7ce, #ffffff);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ev-system-page .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 131, 176, 0.2);
}

.ev-system-page .benefit-icon {
    font-size: 34px;
    color: var(--egx-pr-1);
    margin-right: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.ev-system-page .benefit-card:hover .benefit-icon {
    transform: rotate(10deg) scale(1.1);
}

.ev-system-page .benefit-text h3 {
    margin: 0 0 6px 0;
    font-weight: 700;
    font-size: 20px;
    color: #004d66;
}

.ev-system-page .benefit-text p {
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* Divider */
.ev-system-page .ev-divider {
    width: 4px;
    background: var(--egx-gd-1);
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.85;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .ev-system-page .ev-section {
        flex-direction: column;
        margin: 40px 20px;
    }

    .ev-system-page .ev-divider {
        display: none;
    }

    .ev-system-page .ev-left::after {
        display: none;
    }

    .ev-system-page .benefit-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ev-system-page .benefit-icon {
        margin-bottom: 10px;
    }
}




.cbg-page .key-benefits {
    display: flex;
    max-width: 1100px;
    margin: 80px auto;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Left panel */
.cbg-page .key-benefits__left {
    flex: 1;
    background: linear-gradient(135deg, #00c853, #43cea2);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    text-align: center;
}

.cbg-page .key-benefits__left h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.cbg-page .key-benefits__left .big-icon {
    font-size: 90px;
    animation: pulse 3s infinite ease-in-out;
    opacity: 0.85;
}

/* Right panel */
.cbg-page .key-benefits__right {
    flex: 1.2;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cbg-page .benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    cursor: default;
    transition: background-color 0.3s ease;
    padding-left: 15px;
    border-left: 5px solid transparent;
}



.cbg-page .benefit-icon {
    font-size: 34px;
    color: #00c853;
    margin-right: 22px;
    flex-shrink: 0;
    animation: bounce 2.5s infinite;
}

.cbg-page .benefit-text h3 {
    margin: 0 0 8px 0;
    font-weight: 700;
    font-size: 20px;
    color: #004d40;
}

.cbg-page .benefit-text p {
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* Vertical divider line between panels */
.cbg-page .key-benefits__divider {
    width: 4px;
    background: linear-gradient(to bottom, #00c853, #43cea2);
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.85;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .cbg-page .key-benefits {
        flex-direction: column;
        margin: 40px 20px;
    }

    .cbg-page .key-benefits__left,
    .cbg-page .key-benefits__right {
        flex: unset;
        padding: 40px 20px;
        text-align: center;
    }

    .cbg-page .key-benefits__divider {
        display: none;
    }

    .cbg-page .benefit-item {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        border-left: none;
        padding-left: 0;
        margin-bottom: 30px;
    }

    .cbg-page .benefit-icon {
        margin: 0 0 10px 0;
        animation: none;
    }

    .cbg-page .benefit-text h3 {
        font-size: 22px;
    }
}


.reg-page .form-container {
    background: #fff;
    margin: 50px auto;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.reg-page h1 {
    text-align: center;
    color: #1e3d59;
    margin-bottom: 10px;
    font-size: 26px;
}

.reg-page p.subtitle {
    text-align: center;
    font-size: 14px;
    color: #5f6f81;
    margin-bottom: 30px;
}

.reg-page label {
    font-weight: 600;
    color: #333;
    display: block;
    margin-top: 18px;
    font-size: 14px;
}

.reg-page input,
.reg-page select,
.reg-page textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border: 1px solid #ccd3dc;
    border-radius: 8px;
    font-size: 14px;
    background-color: #f9fafc;
    transition: border 0.3s, background 0.3s;
}

.reg-page input:focus,
.reg-page select:focus,
.reg-page textarea:focus {
    border-color: #1e88e5;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.15);
}

.reg-page textarea {
    resize: vertical;
    min-height: 90px;
}

.reg-page button {
    margin-top: 30px;
    width: 100%;
    padding: 14px;
    background-color: #1e88e5;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.reg-page button:hover {
    background-color: #1565c0;
}

.reg-page .section-title {
    font-size: 16px;
    font-weight: bold;
    color: #1e3d59;
    margin-top: 25px;
    padding-bottom: 5px;
    border-bottom: 2px solid #1e88e5;
    display: inline-block;
}

.careers-page .form-container {
    width: 90%;
    margin: 12px auto;
}

.careers-page .form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 40px;
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
}

.careers-page .form-group {
    margin-bottom: 15px;
}

.careers-page label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.careers-page input,
.careers-page select,
.careers-page textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.careers-page input[type="file"] {
    border: none;
}

@media (max-width: 600px) {
    .careers-page .form-container {
        padding: 20px;
    }
}

.c-social-media {
    text-align: center;
    display: table;
    margin: auto;
}

.c-social-media a {
    margin: 10px;
    color: #fff;
    width: 40px;
    height: 40px;
    display: block;
    float: left;
    text-align: center;
    padding: 5px 0;
    border-radius: 37px;
}



:root {
    --bg: #0a0b0f;
    /* page background */
    --card: #10131a;
    /* card background */
    --muted: #98a2b3;
    /* muted text */
    --text: #e6e9ef;
    /* main text */
    --brand: #48b9a6;
    /* accent */
    --brand-2: #7c6cff;
    /* secondary accent */
    --ring: 0 0 0 3px rgba(72, 185, 166, 0.25);
    --radius: 1.25rem;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.25), 0 1px 4px rgba(0, 0, 0, 0.25);
    --grid-gap: 1.25rem;
}


/* Header */
.contact-page .header {
    position: relative;
    padding: clamp(48px, 8vw, 96px) 20px 32px;
    text-align: center;
    overflow: hidden;
}

.contact-page .title {
    font-size: clamp(28px, 4.5vw, 54px);
    margin: 0 0 12px;
    font-weight: 800;
    letter-spacing: -0.02em
}

.contact-page .subtitle {
    color: var(--muted);
    font-size: clamp(14px, 2.2vw, 18px);
    margin: 0 auto;
    max-width: 800px
}

.contact-page .glow {
    position: absolute;
    inset: -10% -20% auto;
    height: 420px;
    background: radial-gradient(closest-side, rgba(124, 108, 255, 0.25), transparent 70%);
    filter: blur(32px);
    z-index: -1;
    transform: translateY(-40px);
}



.contact-page .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

@media (min-width: 960px) {
    .contact-page .grid {
        grid-template-columns: 1.1fr 1fr;
        align-items: start;
    }
}

/* Cards */
.contact-page .card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.contact-page .card .content {
    padding: clamp(18px, 3vw, 28px);
}

.contact-page .card h2 {
    margin: 0 0 12px;
    font-size: clamp(18px, 3vw, 24px)
}

.contact-page .muted {
    color: var(--muted);
}

/* Contact Info */
.contact-page .info-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 14px
}

.contact-page .info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 14px;

    background: rgb(183 183 183 / 15%);
    border: 1px solid rgba(255, 255, 255, 0.06)
}

.contact-page .icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(72, 185, 166, 0.15), rgba(124, 108, 255, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.08)
}

.contact-page .info-item a {
    color: var(--bs-body-color);
    text-decoration: none
}

.contact-page .info-item a:hover {
    text-decoration: underline
}



.contact-page .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px
}

@media (min-width:720px) {
    .contact-page .row {
        grid-template-columns: 1fr 1fr
    }
}

.contact-page .c-box-s {
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

/* Map */
.contact-page .map {
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08)
}

.contact-page .map iframe {
    display: block;
    width: 100%;
    height: 280px;
    border: 0
}

@media (min-width:960px) {
    .contact-page .map iframe {
        height: 100%
    }
}

.contact-page .map-cover {
    height: 280px
}

/* Footer mini */
.contact-page .foot {
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    margin-top: 28px
}

/* Breadcrumb (optional) */
.contact-page .crumbs {
    display: flex;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    margin: 10px 0 0;
    color: var(--muted)
}

.contact-page .crumbs a {
    color: inherit;
    text-decoration: none
}

.contact-page .crumbs a:hover {
    text-decoration: underline
}


/* Header */
.careers-page .header {
    position: relative;
    padding: clamp(48px, 8vw, 96px) 20px 32px;
    text-align: center;
    overflow: hidden;
}

.careers-page .title {
    font-size: clamp(28px, 4.5vw, 54px);
    margin: 0 0 12px;
    font-weight: 800;
    letter-spacing: -0.02em
}

.careers-page .subtitle {
    color: var(--muted);
    font-size: clamp(14px, 2.2vw, 18px);
    margin: 0 auto;
    max-width: 800px
}

.careers-page .glow {
    position: absolute;
    inset: -10% -20% auto;
    height: 420px;
    background: radial-gradient(closest-side, rgba(124, 108, 255, 0.25), transparent 70%);
    filter: blur(32px);
    z-index: -1;
    transform: translateY(-40px);
}



.careers-page .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

@media (min-width: 960px) {
    .careers-page .grid {
        grid-template-columns: 1.1fr 1fr;
        align-items: start;
    }
}

/* Cards */
.careers-page .card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.careers-page .card .content {
    padding: clamp(18px, 3vw, 28px);
}

.careers-page .card h2 {
    margin: 0 0 12px;
    font-size: clamp(18px, 3vw, 24px)
}

.careers-page .muted {
    color: var(--muted);
}

/* Contact Info */
.careers-page .info-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 14px
}

.careers-page .info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 14px;

    background: rgb(183 183 183 / 15%);
    border: 1px solid rgba(255, 255, 255, 0.06)
}

.careers-page .icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(72, 185, 166, 0.15), rgba(124, 108, 255, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.08)
}

.careers-page .info-item a {
    color: var(--bs-body-color);
    text-decoration: none
}

.careers-page .info-item a:hover {
    text-decoration: underline
}



.careers-page .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px
}

@media (min-width:720px) {
    .careers-page .row {
        grid-template-columns: 1fr 1fr
    }
}

.careers-page .c-box-s {
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

/* Map */
.careers-page .map {
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08)
}

.careers-page .map iframe {
    display: block;
    width: 100%;
    height: 280px;
    border: 0
}

@media (min-width:960px) {
    .careers-page .map iframe {
        height: 100%
    }
}

.careers-page .map-cover {
    height: 280px
}

/* Footer mini */
.careers-page .foot {
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    margin-top: 28px
}

/* Breadcrumb (optional) */
.careers-page .crumbs {
    display: flex;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    margin: 10px 0 0;
    color: var(--muted)
}

.careers-page .crumbs a {
    color: inherit;
    text-decoration: none
}

.careers-page .crumbs a:hover {
    text-decoration: underline
}

.post-number {
    font-size: 4rem;
    font-weight: bold;
    color: #198754;
}

.download-section {
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 20px;
}

.blog-image {
    max-height: 300px;
    object-fit: cover;
    width: 100%;
    border-radius: 5px;
}

  .navbar-brand {
      font-weight: 700;
      font-size: 1.3rem;
    }

    /* Step Images Styling */
    .step-image {
      max-width: 320px;       /* uniform max width */
      width: 100%;
      height: auto;
      border-radius: 12px;    /* rounded corners */
      box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* soft shadow */
      display: block;
    }

    @media (max-width: 768px) {
      .step-image {
        max-width: 240px;
        margin: 0 auto;       /* center on smaller screens */
      }
    }

    /* Step number */
    .step-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: #0d6efd; /* Bootstrap primary color */
    }
    .pw-f-size{font-size: calc(1.325rem + .9vw)}

    .careers-page .h2{ 
    color: #0e8a7a;
    margin-bottom: 20px;}

.tandc-page ul{ margin-bottom: 10px;}
.tandc-page h6{    margin: 10px;}
.tandc-page ul li{    list-style: disc;
    margin-left: 30px;}

.pr-head-1{ font-size: 40px;}
.lh-50{line-height: 50px;}

.f-label{float: left; color: #fff; padding: 10px;}


/* Main */
.reg-page1 .registration-container {
    background: #fff;
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reg-page1 .form-header {
    margin-bottom: 20px;
}

.reg-page1 .form-header h2 {
    margin-bottom: 5px;
    color: #0d47a1;
}

.reg-page1 .form-section {
    margin-bottom: 25px;
}

.reg-page1 .form-section h3 {
    margin-bottom: 15px;
    color: #444;
    font-size: 18px;
}

/* Form */
.reg-page1 .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.reg-page1 .form-row {
    display: flex;
    gap: 20px;
}

.reg-page1 .form-row .form-group {
    flex: 1;
}

.reg-page1 label {
    margin-bottom: 6px;
    font-weight: 500;
}

.reg-page1 input,
.reg-page1 select,
.reg-page1 textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.reg-page1 textarea {
    resize: vertical;
}

/* Checkboxes */
.reg-page1 .checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* Buttons */
.reg-page1 .form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.reg-page1 .btn-primary,
.reg-page1 .btn-secondary {
    padding: 10px 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

.reg-page1 .btn-primary {
    background: #0d47a1;
    color: #fff;
}

.btn-secondary {
    background: #ccc;
}

/* File Upload Styling */
.reg-page1 input[type="file"] {
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fdfdfd;
    font-size: 14px;
    cursor: pointer;
}

.reg-page1 input[type="file"]::-webkit-file-upload-button {
    background: #0d47a1;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.reg-page1 input[type="file"]::-webkit-file-upload-button:hover {
    background: #08306b;
}

.reg-page1 .form-group small {
    font-size: 12px;
    color: #666;
    display: block;
    margin-top: 2px;
}
  #backToTop {
      display: none; /* hidden by default */
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 99;
      font-size: 18px;
      border: none;
      outline: none;
      background-color: #4d464638;
      color: white;
      cursor: pointer;
      padding: 12px 18px;
      border-radius: 8px;
    }

    #backToTop:hover {
      background-color: #555;
    }