@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", serif;
    font-size: 16px;
}




.hero-section {
    background-color: #0A1B3F;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    margin-top: 100px;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}



.social-links a {
    background: #007bb6;
    padding: 10px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    display: block;
    margin: 1rem 0;
    color: #fff;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffc107;
    border-radius: 5px 0px 0px 5px;
}

.trusted-clients img {
    max-height: 75px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trusted-clients img:hover {
    opacity: 1;
}

.navbar {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 1rem 1.25rem;
}

.navbar-nav .nav-link:hover {
    color: #ffc107;
}

.logo-img {
    max-height: 100px;
}



/* abou section START  */
.about-section {
    padding: 0px 0 80px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.section-tag {
    color: #000;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-tag span {
    color: #ffc107;
    margin: 0 5px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    max-height: 200px;
    overflow: auto;
}
.feature-list::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.feature-list::-webkit-scrollbar
{
	width: 4px;
	background-color: #F5F5F5;
}

.feature-list::-webkit-scrollbar-thumb
{
	background-color: #ffc107;
	border: 2px solid #ffc107;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: #555;
}



.stats-card {
    padding: 30px;
    text-align: center;
    border-radius: 10px;
}

.stats-card.yellow {
    background-color: #ffc107;
}

.stats-card.blue {
    background-color: #4a90e2;
    color: white;
}

.stats-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 1.2rem;
    font-weight: 400;
    text-align: start;
    line-height: 1.6rem;
}

.logoSlides {
    display: flex;
    justify-content: center;
    align-items: center;
}

.marginLefts {
    position: relative;
    left: -150px;
}

/* abou section END  */
.section-tag h6 {
    display: table;
    padding: 10px 20px;
    box-shadow: 0px 5px 20px -5px rgba(0, 0, 0, .2);
    border-radius: 100px;
    position: relative;
}

.section-tag h6:after,
.section-tag h6:before {
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 100px;
    background-color: #ffc107;
    display: inline-flex;
    margin: 0px 10px;
}

div#navbarNav ul.navbar-nav {
    display: flex;
    gap: 30px;
}

div#navbarNav ul.navbar-nav li a {
    color: #000;
    border-radius: 0;
    padding: 10px 0;
    transition: all .5s ease-in-out;
}

div#navbarNav ul.navbar-nav li a.active,
div#navbarNav ul.navbar-nav li a:hover {
    color: #6d9dd9;
}

div#navbarNav ul.navbar-nav li a.btn-warning:hover {
    background: #6d9dd9 !important;
    color: #000;
    border-color: #6d9dd9 !important;
}

/* Services START  */
.services-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}


.section-tag span {
    color: #ffc107;
    margin: 0 5px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid #444;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #ffc107;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: -60px;
}

.service-icon.blue {
    background-color: #4a90e2;
}

.service-icon.yellow {
    background-color: #ffc107;
}

.service-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    color: #02010100;
    position: absolute;
    top: 0;
    right: 20px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-subtitle {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.read-more:after {
    content: "â†’";
    margin-left: 5px;
}

.read-more:hover {
    color: #4a90e2;
}

.service-icon img {
    padding: 10px;
    width: 100%;
}

/* Services END  */

.current-price {
    font-size: 50px;
    color: #ffc107;
    font-weight: 500;
}

.pricing {
    display: flex;
    align-items: center;
    gap: 10px;
}


.offer-section {
    padding: 80px 0;
    background-color: #fff;
}


.section-tag span {
    color: #ffc107;
    margin: 0 5px;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.5rem;
}

.current-price {
    color: #4a90e2;
    font-size: 3rem;
    font-weight: bold;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "";
    background-color: #ffc107;
    height: 8px;
    width: 8px;
    font-size: 1.5rem;
    position: absolute;
    left: 5px;
    top: 8px;
    border-radius: 50px;
}

.get-now-btn {
    background-color: #ffc107;
    color: #000;
    padding: 12px 40px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.get-now-btn:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.offer-image {
    max-width: 100%;
    height: auto;
}



/* START  */
.portfolio-section {
    padding: 80px 0;
}

.contact-bar {
    background-color: #4a90e2;
    padding: 35px 20px;
    border-radius: 15px;
    color: white;
    margin-bottom: 80px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.section-tag span {
    color: #ffc107;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.get-quote-btn {
    background-color: #ffc107;
    color: #000;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.get-quote-btn:hover {
    background-color: #e0a800;
}

/* END  */




/* Start  */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}


.section-tag span {
    color: #ffc107;
    margin: 0 5px;
}

.testimonial-card {
    background-color: #4a90e2;
    border-radius: 15px;
    padding: 30px;
    color: white;
    height: 100%;
}

.client-image {
    width: 280px;
    height: 280px;
    border-radius: 10px;
    object-fit: cover;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.satisfaction-bar {
    background: rgba(255, 255, 255, 0.2);
    height: 8px;
    border-radius: 4px;
    margin: 10px 0;
    position: relative;
}

.satisfaction-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #ffc107;
    border-radius: 4px;
    width: 90%;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Start  */
/* Start  */




.contact-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    background-image: url(../images/agency-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.contact-section:after {
    content: "";
    background-color: #f8f8f8;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: .5;
}

.contact-info-card {
    background-color: #ffc107;
    padding: 30px 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    position: absolute;
    top: -130px;
    min-width: 450px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.section-tag span {
    color: #ffc107;
}

.form-control {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

textarea.form-control {
    min-height: 150px;
}

.submit-btn {
    background-color: #ffc107;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #e0a800;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: white;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.map-container {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.uk-office {
    margin-top: 40px;
}

.uk-office h3 {
    margin-bottom: 20px;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: #ffc107;
}

/* END  */


/* Footer START  */
footer {
    background-color: #f8f9fa;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

.wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/footer-bg.webp') bottom center repeat-x;
    opacity: 0.1;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-tagline {
    color: #666;
    margin-bottom: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #4a90e2;
    color: white;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #4a90e2;
}

.footer-links i {
    margin-right: 8px;
    color: #ffc107;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    gap: 10px;
    color: #666;
}

.contact-info i {
    color: #ffc107;
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    color: #666;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

/* Footer END  */



/* Side bar START  */
.floatbutton {
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    position: fixed;
    right: -370px;
    top: 120px;
    font-size: 0;
    width: 420px;
    /* transform: translateY(-50%); */
    z-index: 999;
}

.btns_wrap {
    position: fixed;
    right: -6px;
}

.btns_wrap .chat_wrap {
    display: block;
    position: absolute;
    right: -225px;
    width: 280px;
    background-color: #ffc107;
    top: 0;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0px 0px 40px #00000026 !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 30px 0px 0px 30px;
    z-index: 9999;
}

.btns_wrap .chat_wrap span.icoo,
.btns_wrap .call_wrap span.icoo {
    color: #000000;
    font-size: 18px;
    padding: 15px 20px;
    border-right: 1px solid #ded9d9;
    vertical-align: middle;
    display: inline-block;
    border-radius: 10px 0px 0px 10px;
}

.btns_wrap .chat_wrap span {
    color: #000000;
    font-size: 20px;
    vertical-align: middle;
    /* background: #000; */
    padding: 15px 30px 15px 15px;
}

.btns_wrap .call_wrap {
    width: 280px;
    background-color: #ffc107;
    position: absolute;
    right: -225px;
    top: 63px;
    border-radius: 3px 0px 0px 3px;
    overflow: hidden;
    box-shadow: 0px 0px 40px #00000026 !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 9999;
    border-radius: 30px 0px 0px 30px;
}

.floatbutton .clickbutton {
    width: 50px;
    z-index: 999;
    height: 215px;
    cursor: pointer;
    box-shadow: -20px 7px 18px -7px rgb(87 184 151 / 9%);
    border-radius: 3px 0px 0px 3px;
    border-radius: 30px 0px 0px 30px;
    display: inline-block;
    padding-top: 0;
    vertical-align: top;
    margin-top: 125px;
    color: #000000;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    background-color: #ffc107;
    box-shadow: 0px 0px 40px #00000026;
    -webkit-box-shadow: 0px 0px 40px #00000026;
    -ms-box-shadow: 0px 0px 40px #00000026;
    -o-box-shadow: 0px 0px 40px #00000026;
}

.floatbutton .clickbutton .crossplus {
    position: absolute;
    display: block;
    transform: rotate(-90deg);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    left: -64px;
    white-space: pre;
    bottom: 95px;
}

.banner-form {
    background: #fff;
    padding: 30px;
    position: relative;
    z-index: 99999 !important;
    border-radius: 5px;
    margin: 0;
    width: 370px;
    display: inline-block;
    box-shadow: 0px 0px 30px #0000001f;
}

.banner-form h3 {
    color: #141315;
    margin-bottom: 5px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    font-size: 24px;
}

.banner-form h3 strong {
    font-weight: 600;
}

.float-price-color {
    color: #ffc107;
}

.banform {
    margin-top: 20px;
}



.btns_wrap a:hover {
    text-decoration: none !important;
    right: 0px;
}

.btns_wrap .call_wrap span {
    color: #000000;
    font-size: 20px;
    vertical-align: middle;
    /* background: #000; */
    padding: 15px 20px 15px 15px;
}

.floatbutton.active {
    right: 0;
    z-index: 9;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.ban-form textarea.form-control,
textarea {
    min-height: 100px;
}

.pt-50 {
    padding-top: 50px;
}

.ban-form .as-btn {
    width: 100%;
    min-height: 40px;
    color: #000 !important;
    background: #ffc107;
    border: none;
    border-radius: 5px;
    font-size: 18px;
}

/* Side bar END  */

.hero-section>video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}



/* About page START  */
.scale-section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 3rem;
}

.section-title span {
    color: #4a90e2;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: #4a90e2;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}


.stats-section {
    padding: 80px 0;
}

.stat-card {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
}

.stat-card.yellow {
    background-color: #ffc107;
}

.stat-card.blue {
    background-color: #4a90e2;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.section-tag {
    text-align: center;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.section-tag span {
    color: #ffc107;
    margin: 0 5px;
}

.team-section {
    text-align: center;
    margin: 80px 0;
}

.team-description {
    max-width: 800px;
    margin: 2rem auto;
    color: #666;
    line-height: 1.6;
}

.subscribe-section {
    padding: 60px 0;
    text-align: center;
}

.subscribe-title {
    color: #4a90e2;
    font-weight: 600;
}

.subscribe-form {
    max-width: 500px;
    margin: 2rem auto;
}

.subscribe-input {
    border: 1px solid #ddd;
    padding: 0.8rem;
    width: 70%;
    border-radius: 4px 0 0 4px;
}

.subscribe-btn {
    background: #ffc107;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 0 4px 4px 0;
    font-weight: 500;
}

.subscribe-btn:hover {
    background: #e0a800;
}

/* About page END  */

section.hero-section.innerapge {
    min-height: unset !important;
}



/* Pricing Page START  */
.pricing-section {
    padding: 80px 0;
}

.pricing-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.highlighted {
    background-color: #f8fbff;
    border-color: #4a90e2;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.plan-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    min-height: 60px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ffc107;
}

.get-now-btn {
    /* width: 100%; */
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}
.postBox {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.btn-primary {
    background-color: #4a90e2;
}

.btn-primary:hover {
    background-color: #357abd;
}

.btn-warning {
    background-color: #ffc107;
    color: #000;
}

.btn-warning:hover {
    background-color: #e0a800;
}

/* Pricing Page END */



/* portFolio START  */
.portfolio-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.nav-tabs {
    border: none;
    margin-bottom: 40px;
    justify-content: center;
}

.nav-tabs .nav-link {
    border: none;
    padding: 10px 25px;
    margin: 0 5px;
    color: #666;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background-color: #e9ecef;
}

.nav-tabs .nav-link.active {
    background-color: #4a90e2 !important;
    color: white !important;
    border: none !important;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.portfolio-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-category {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* portFolio END  */
img.about-image.servicesImg {
    max-width: 60%;
    margin: 0 auto;
    display: table;
}