.video-popup {
display: none;
position: fixed;
z-index: 9999;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
justify-content: center;
align-items: center;
}
.video-popup-content {
position: relative;
width: 80%;
max-width: 800px;
background: #000;
border-radius: 10px;
overflow: hidden;
}
.video-popup-content iframe {
width: 100%;
height: 450px;
}
.close-btn {
position: absolute;
top: 10px;
right: 15px;
font-size: 28px;
font-weight: bold;
color: #fff;
cursor: pointer;
}
p {
text-align: justify;
}
.banner::before {
background: none !important;
}
.hero-section-two {
position: relative;
height: 70vh;
min-height: 500px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.banner-slider {
position: relative;
width: 100%;
height: 130%;
}
.banner {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
transform: scale(1.1);
}
.banner.active {
opacity: 1;
transform: scale(1);
}
.banner video {
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
top: 0;
left: 0;
}
/* Dark overlay for better text readability */
.banner::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg,
rgba(0, 0, 0, 0.6) 0%,
rgba(0, 0, 0, 0.3) 50%,
rgba(0, 0, 0, 0.5) 100%);
z-index: 1;
}
.banner-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
color: white;
z-index: 2;
max-width: 90%;
width: 100%;
}
.banner-text h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 700;
margin-bottom: 1rem;
line-height: 1.2;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
opacity: 0;
transform: translateY(30px);
animation: textSlideUp 1s ease-out 0.5s forwards;
color: white;
}
.banner-text h2 {
font-size: clamp(1.2rem, 3vw, 2rem);
font-weight: 600;
line-height: 1.2;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
opacity: 0;
transform: translateY(30px);
animation: textSlideUp 1s ease-out 0.8s forwards;
color: white;
}
.banner.active .banner-text h1,
.banner.active .banner-text h2 {
animation: textSlideUp 1s ease-out forwards;
}
.banner.active .banner-text h1 {
animation-delay: 0.5s;
}
.banner.active .banner-text h2 {
animation-delay: 0.8s;
}
@keyframes textSlideUp {
to {
opacity: 1;
transform: translateY(0);
}
}
.hero-overlay-image {
position: absolute;
bottom: 20px;
left: 20px;
width: 250px;
height: auto;
z-index: 4;
opacity: 0.9;
transition: all 0.3s ease;
}
.hero-overlay-image:hover {
opacity: 1;
transform: scale(1.05);
}
.hero-overlay-image:hover {
opacity: 1;
transform: scale(1.05);
}
/* Navigation dots */
.slider-dots {
display: none;
}
.slider-dot {
display: none;
}
.slider-dot.active {
display: none;
}
/* Navigation arrows */
.slider-nav {
display: none;
}
@keyframes progressFill {
0% {
width: 0%;
}
100% {
width: 100%;
}
}
/* Responsive Design */
@media (max-width: 768px) {
.hero-section-two {
height: 60vh;
min-height: 400px;
}
.banner-text {
max-width: 95%;
padding: 0 20px;
}
.hero-overlay-image {
width: 200px;
bottom: 65px;
left: 20px;
}
}
@media (max-width: 480px) {
.hero-section-two {
height: 50vh;
min-height: 350px;
}
.hero-overlay-image {
width: 150px;
bottom: 60px;
left: 15px;
}
.banner-text h1 {
font-size: clamp(1.5rem, 3vw, 2.5rem);
font-weight: 700;
margin-bottom: 1rem;
line-height: 1.2;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
opacity: 0;
transform: translateY(30px);
animation: textSlideUp 1s ease-out 0.5s forwards;
color: white;
}
.banner-text h2 {
font-size: clamp(1.2rem, 2.5vw, 2rem);
font-weight: 600;
line-height: 0.5;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
opacity: 0;
transform: translateY(30px);
animation: textSlideUp 1s ease-out 0.8s forwards;
color: white;
}
}
/* Animation variants for different slides */
.banner:nth-child(1) {
transform: scale(1.1) rotate(0.5deg);
}
.banner:nth-child(2) {
transform: scale(1.1) rotate(-0.5deg);
}
.banner:nth-child(3) {
transform: scale(1.1);
}
.banner.active:nth-child(1) {
transform: scale(1) rotate(0deg);
}
.banner.active:nth-child(2) {
transform: scale(1) rotate(0deg);
}
.banner.active:nth-child(3) {
transform: scale(1);
}
/* Pause/Play button */
.play-pause-btn {
display: none;
}
:root {
--primary-black: #1a1a1a;
--primary-green: #0056d4;
--accent-red: #dc3545;
--light-gray: #f8f9fa;
--dark-gray: #6c757d;
}
.services-section {
padding: 80px 0;
background: var(--light-gray);
}
.section-header {
text-align: center;
margin-bottom: 8px;
}
.section-title {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary-black);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 20px;
position: relative;
}
.section-title::after {
content: "";
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: var(--primary-green);
border-radius: 2px;
}
.section-description {
font-size: 1.1rem;
color: var(--dark-gray);
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}
/* Simplified card design - removed all curve elements and gradients */
.service-card {
background: white;
border-radius: 15px;
padding: 25px;
margin-bottom: 25px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
border: 2px solid transparent;
height: auto;
min-height: 385px;
position: relative;
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
border-color: var(--primary-green);
}
/* Simplified icon design */
.card-icon {
width: 60px;
height: 60px;
background: #0056d4;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
transition: all 0.3s ease;
}
.service-card:hover .card-icon {
background: var(--primary-green);
transform: scale(1.1);
}
.card-icon i {
font-size: 28px;
color: white;
}
.card-title {
font-size: 1.2rem;
font-weight: 700;
color: var(--primary-black);
text-align: center;
margin-bottom: 15px;
line-height: 1.3;
}
.service-features {
list-style: none;
padding: 0;
margin: 0;
}
.service-features li {
padding: 4px 0;
color: var(--dark-gray);
position: relative;
padding-left: 20px;
font-size: 0.85rem;
line-height: 1.3;
}
.service-features li::before {
content: "✓";
position: absolute;
left: 0;
color: #0056d4;
font-weight: bold;
font-size: 1rem;
}
.service-card:hover .service-features li::before {
color: var(--accent-red);
}
/* Simplified green accent cards - removed complex styling */
.service-card.green-accent .card-icon {
background: #0056d4;
}
.service-card.green-accent:hover .card-icon {
background: var(--primary-black);
}
/* Updated responsive grid for 3-3-2 layout */
@media (min-width: 992px) {
.row-3-3-2 .col-lg-4:nth-child(7),
.row-3-3-2 .col-lg-4:nth-child(8) {
margin: 0 auto;
float: none;
}
.row-3-3-2 .col-lg-4:nth-child(7) {
margin-right: 1rem;
}
.row-3-3-2 .col-lg-4:nth-child(8) {
margin-left: 1rem;
}
}
/* Responsive adjustments */
@media (max-width: 768px) {
.section-title {
font-size: 2rem;
}
.services-section {
padding: 60px 0;
}
.service-card {
padding: 20px;
margin-bottom: 20px;
min-height: 280px;
}
.card-title {
font-size: 1.1rem;
}
}
@media (max-width: 576px) {
.section-title {
font-size: 1.8rem;
}
.service-card {
padding: 18px;
min-height: 260px;
}
.card-icon {
width: 50px;
height: 50px;
margin: 0 auto 15px;
}
.card-icon i {
font-size: 24px;
}
}
/* Animation for cards appearing */
.service-card {
opacity: 0;
transform: translateY(30px);
animation: fadeInUp 0.6s ease forwards;
}
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}
/* Stagger animation delays */
.service-card:nth-child(1) {
animation-delay: 0.1s;
}
.service-card:nth-child(2) {
animation-delay: 0.2s;
}
.service-card:nth-child(3) {
animation-delay: 0.3s;
}
.service-card:nth-child(4) {
animation-delay: 0.4s;
}
.service-card:nth-child(5) {
animation-delay: 0.5s;
}
.service-card:nth-child(6) {
animation-delay: 0.6s;
}
.service-card:nth-child(7) {
animation-delay: 0.7s;
}
.service-card:nth-child(8) {
animation-delay: 0.8s;
}
.header {
background: black;
position: sticky;
box-shadow: 0px 10px 40px rgba(202, 202, 202, 0.2);
left: 0;
top: 0;
width: 100%;
z-index: 1001;
transition: ease all 0.5s;
-webkit-transition: ease all 0.5s;
-ms-transition: ease all 0.5s;
}
.main-nav>li>a {
color: #ffffff;
}
.logo-small img {
width: 100px;
}
.header.fixed {
position: fixed;
background-color: black;
box-shadow: 0px 3px 53px rgba(197, 197, 197, 0.27);
transition: ease all 0.5s;
-webkit-transition: ease all 0.5s;
-ms-transition: ease all 0.5s;
}
.client-section-two {
background: #0056D4;
padding: 80px 0 56px;
}
.feature-box-seven {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 20px;
background: #fff;
border-radius: 12px;
transition: all 0.3s ease;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.feature-box-seven:hover {
transform: translateY(-5px);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}
.feature-icon-seven {
font-size: 36px;
color: #3867ae;
/* Primary color */
margin-bottom: 12px;
transition: transform 0.3s ease, color 0.3s ease;
}
.feature-box-seven:hover .feature-icon-seven {
transform: scale(1.2);
color: #ee3228;
/* Accent color on hover */
}
.feature-box-seven h6 {
font-size: 15px;
font-weight: 600;
margin: 0;
color: #333;
}
/* Apply only on screens <= 991px (tablet + mobile) */
@media (max-width: 991px) {
.main-nav>li>a {
color: #212729;
}
}
.sty {
width: 240px;
margin-right: 24px;
}
@media (max-width: 768px) {
.sty {
width: 227px;
margin-right: -35px;
}
}
.img-cil {
width: 80%;
/* height: 100px; */
border-radius: 10px;
display: block;
margin: 0 auto;
padding: 20px;
background: white;
}
/* For tablets */
@media screen and (max-width: 992px) {
.img-cil {
width: 60% !important;
}
}
/* For mobile */
@media screen and (max-width: 576px) {
.img-cil {
width: 90% !important;
}
}
.owl-dots {
display: none !important;
text-align: center;
margin-top: 15px;
}
@media (max-width: 991.98px) {
.partners-section {
padding: 10px 0 15px;
}
}
.fs-14 {
color: white;
}
.service-overview-card {
background-color: #fff;
/* White background */
border: 1px solid #ddd;
/* Light border */
border-radius: 10px;
/* Rounded corners */
padding: 20px;
margin: 20px 0;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
/* Subtle shadow */
transition: transform 0.3s ease;
}
.service-overview-card:hover {
transform: translateY(-3px);
/* Slight lift on hover */
}
.overview-title {
font-size: 1.8rem;
font-weight: 600;
color: #333;
margin-bottom: 15px;
}
.overview-text {
font-size: 1rem;
line-height: 1.6;
color: #555;
}
/* Responsive */
@media (max-width: 768px) {
.service-overview-card {
padding: 15px;
}
.overview-title {
font-size: 1.5rem;
}
.overview-text {
font-size: 0.95rem;
}
}
@media (max-width: 480px) {
.service-overview-card {
padding: 12px;
}
.overview-title {
font-size: 1.3rem;
}
.overview-text {
font-size: 0.9rem;
}
}
.partners-section {
background: #0056D4;
/* Black background for section */
padding: 20 !important;
}
.partners-section .section-heading h2,
.partners-section .section-heading span,
.partners-section .section-heading .title-badge {
color: #000;
/* Keep heading area white */
}
.partners-section .journey-counter h2,
.partners-section .journey-counter p {
color: #000;
/* Counters black text */
}
.partners-section .journey-client-all {
background: #fff;
/* White background for counter cards */
border-radius: 10px;
padding: 20px;
transition: transform 0.3s ease;
}
.partners-section .journey-client-all:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.work-section-seven {
padding: 14px 0;
background: #ffffff;
}
@media only screen and (max-width: 991.98px) {
.download-app .app-world .heading span,
.section-heading span {
font-size: 25px;
}
}
.whatsapp-btn {
position: fixed;
bottom: 25px;
right: 15px;
background-color: #0056d4;
/* Your background color */
color: #fff;
font-size: 16px;
font-weight: 600;
display: flex;
align-items: center;
justify-content: center;
padding: 8px 14px;
border-radius: 30px;
text-decoration: none;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
z-index: 9999;
transition: all 0.3s ease;
}
.whatsapp-btn i {
background: #0056d4;
color: #fff;
font-size: 18px;
border-radius: 50%;
width: 26px;
height: 26px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 8px;
}
.whatsapp-btn:hover {
transform: scale(1.05);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}
.section-heading {
margin-top: 12px;
position: relative;
}
.video-btn {
background: #0056D4 !important;
color: #fff !important;
padding: 6px 12px;
border-radius: 4px;
}
.video-btn:hover,
.video-btn:focus {
background: #0047b6 !important;
color: #fff !important;
}
.contact-btn {
background: #0056D4 !important;
color: #fff !important;
padding: 6px 14px;
border-radius: 4px;
font-weight: 500;
}
.contact-btn:hover {
background: #0047b6 !important;
color: #fff !important;
}
.dropdown-menu .dropdown-item i {
width: 18px;
}
.category-item:hover {
background: #000 !important;
transform: translateY(-5px);
}
.offer-paths {
position: relative;
background: url(../img/bg/testimonial-bg-02.png);
background-color: #0056d4;
padding: 0 90px;
margin-top: -195px;
margin-bottom: 60px;
border-radius: 50px;
}
.bg-primary-transparent {
background-color: #0056d4 !important;
color: #ffffff !important;
}
.btn.bg-primary-transparent:hover {
background-color: #111827 !important;
color: #FFF !important;
}
.about-sec {
padding: 50px 0;
}
@media (min-width: 992px) {
header.header {
background: rgba(0, 0, 0, 0.5);
/* black transparent */
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
position: fixed;
/* stays on top */
top: 0;
left: 0;
width: 100%;
z-index: 999;
}
header.header .navbar .nav-link,
header.header .main-nav>li>a {
color: #fff;
/* white text for contrast */
}
header.header .navbar-brand img {
max-height: 50px;
}
}
/* Sticky Side Contact Bar */
.sticky-contact-bar {
position: fixed;
right: 4px;
top: 47%;
display: flex;
flex-direction: column;
gap: 3px;
z-index: 9999;
}
.sticky-contact-bar .sticky-icon {
width: 35px;
height: 35px;
background: #0056d4;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
border-radius: 30%;
text-decoration: none;
font-size: 20px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
animation: smallshake 2.2s infinite;
transition: 0.3s ease;
}
.sticky-contact-bar .sticky-icon:hover {
transform: scale(1.1);
}
/* Subtle Small Shake Animation */
@keyframes smallshake {
0% {
transform: translate(0);
}
25% {
transform: translateX(-1.5px);
}
50% {
transform: translateX(1.5px);
}
75% {
transform: translateX(-1.5px);
}
100% {
transform: translate(0);
}
}
.footer.footer-seven .footer-widget .footer-six-main .footer-six-left .footer-seven-icon {
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 48px;
    height: 48px;
    border-radius: 30px;
    background: #0066d9;
    margin-right: 12px;
    flex-shrink: 0;
}


.equal-box {
    height: 95%;
}
