/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700;900&display=swap');
*{
	margin: 0;
	padding: 0;
}
html {
    overflow-x: hidden !important;
}
:root {
    --primary: #ffdd00;
    --light: #fff;
    --dark: #000;
	--secondary: #000;
	--yellow: #f8d809;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Merriweather', serif;
}
body {
    font-family: 'Titillium Web', sans-serif;
    margin: 0;
    padding: 0;
	background: #f6f4ee;
}
.container{
	max-width: 1250px;
}
/* ================================
   Desktop Navigation
================================ */
.top-bar {
    background: #000000;
    color: #fff;
    padding: 5px 0;
}
.top-bar i {
    color: var(--primary);
    font-size: 16px;
}
.top-bar a{
	text-decoration: none;
	color: #fff;
}
.top-bar-inner{
	display: flex;
	gap: 20px;
}
.top-bar-icon {
    display: flex;
    gap: 12px;
    align-items: center;
}
.top-bar-icon p{
    margin: 0 !important;
}
.top-bar-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .main-header {
    position: absolute;
    left: 0;
    margin: 0 auto;
    right: 0;
    width: 90%;
    z-index: 10;
    background: #fbfbf8 !important;
    padding: 0px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.site-header.sticky .main-header {
    position: fixed !important;
    top: 0;
    background: #fff !important;
    padding: 12px 0 0;
    box-shadow: 0 6px 20px rgb(0 0 0 / 44%);
    animation: slideDown 0.4s ease;
    width: 100% !important;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.site-header .main-header .container {
    max-width: 1337px;
}
.site-header .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav > li {
    position: relative;
    padding: 0px 7px;
}
.logo-box {
    position: relative;
    top: 0;
    z-index: 20;
    padding: 25px 40px;
    position: relative;
}

/* .logo-box {
    position: relative;
} */

.logo-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary);
    z-index: -1;
    clip-path: polygon(
        0 0,
        126% 0%,
        91% 99%,
        0% 101%
    );
}

/* Right border line */
.logo-box::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 23px;
    width: 8px;
    height: 101%;
    background: #ffffff;
    transform: skewX(-34deg);
    clip-path: polygon(
        0 0,
        137% 2%,
        82% 99%,
        0% 101%
    );
    overflow: hidden;
}
.logo-box h4 {
    font-size: 19px;
    font-weight: 600;
}
.logo-box img {
    width: 120px;
    height: auto;
}
.wpcf7-submit {
    background: var(--primary);
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 20px 0;
    transition: all 0.3s ease;
	display: inline-block;
	border: none;
}
.wpcf7-submit:hover {
    border-radius: 0 20px;
}
.site-header .nav > li > a {
    position: relative;
    display: inline-block;
    color: #000;
    text-decoration: none;
    padding-bottom: 5px;
    transition: color 0.3s ease;
    font-size: 19px;
    font-weight: 500;
}
/* Underline effect */
.site-header .nav > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

/* Hover underline */
.site-header .nav > li > a:hover::after,
.site-header .nav > li.current-menu-item > a::after,
.site-header .nav > li.current_page_item > a::after {
    width: 100%;
}

/* Active/Hover text color */
.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
    color: var(--primary) !important;
}
.site-header .nav li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 9999;
}
.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: #333;
  display: block;
  font-weight: 400;
}
.site-header .nav li ul.sub-menu li a:hover {
  background: #f8f9fa;
  color: #0d6efd;
}
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}
.site-header .nav li ul.sub-menu li {
  position: relative;
}
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}
@media (max-width: 991px) {
  .site-header .nav {
    display: none; 
  }
}
/* ================================
   Mobile Menu
================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #000000 !important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#mobileMenuBtn:hover{
	background: #fff;
}
#mobileMenuBtn i{
	color: var(--primary) !important;
}
#menu-primary-1 li {
    padding: 10px;
    border-bottom: 1px solid #fff;
}
#menu-primary-1 li a {
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}
 
#mobileMenu .menu-item-has-children {
    position: relative;
}
#mobileMenu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    display: none;
    z-index: 9999;
	color: var(--primary) !important;
}
#mobileMenu .menu-item-has-children.active > .sub-menu {
    display: block;
}
#mobileMenu .sub-menu li a {
    padding: 0 10px;
    display: block;
    font-size: 15px;
    color: var(--primary) !important;
}
#mobileMenu .menu-item-has-children > a {
    position: relative;
    padding-right: 40px;
}
#mobileMenu .dropdown-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#mobileMenu .menu-item-has-children.active .dropdown-arrow i {
    transform: rotate(180deg);
}
.top-bar-icon .social-icons a i {
    border: 1px solid #ffffff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.top-bar-inner-box {
    display: flex;
    gap: 10px;
    align-items: center;
}
/* ================================
   Breadcrumb Section
=============================== */
.breadcrumb-section .container {
    display: flex;
    flex-direction: column;
    align-items: left;
    position: relative;
    top: 40%;
	z-index: 2;
}
section.breadcrumb-section {
    background: url(https://webzensys.com/work/aureusuniversity.ca/wp-content/uploads/2026/03/breadcrumb-scaled.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 60vh;
	position: relative;
}
.breadcrumb-item.active {
    color: var(--secondary) !important;
}
ol.breadcrumb {
    font-size: 18px;
    font-weight: 700;
}
.breadcrumb-item+.breadcrumb-item::before{
	color: var(--primary) !important;
}
.breadcrumb-title h2 {
    color: var(--primary);
}
li.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}
/*===============================
      FOOTER SECTION CSS
================================= */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 8px rgba(195,180,186,.49);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 99;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    content: "\f102";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    color: #0b0b0b;
    inset: 0;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: #0b0b0b;
  stroke-width: 4;
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
.underline1 {
    height: 2px;
    width: 100px;
    background: #ffffff;
    margin: auto;
    margin-top: 8px;
}
.underline2 {
    height: 4px;
    width: 30px;
    background: var(--yellow);
    margin: auto;
    margin-top: -3px;
}
.no-margin {
    margin-left: 0px;
}
footer {
    position: relative;
    background: url('https://algopagedev.com/project/mannukargilladakhtaxiservice.com/wp-content/uploads/2026/06/footer1.jpg') bottom center/cover no-repeat;
    color: #fff;
    z-index: 1;
    padding-top: 30px;
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 76%);
    z-index: -1;
}
/* footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6); 
    z-index: -1;
} */
footer > * {
    position: relative;
    z-index: 2;
}
footer .btn-primary {
    padding: 8px 20px;
    margin-top: 8px;
    letter-spacing: 1px;
    font-size: 14px;
    border: 1px solid var(--secondary);
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
a.footer-logo h4 {
    color: #fff;
    line-height: 32px;
}
.footer_top {
    background: #009f0726;
    border-radius: 0 0 15px 15px;
    padding: 0 15px;
}
.footertop-cnt {
    padding-left: 0;
    border-right: 1px solid #ffffff14;
}
.footertop-cnt p a {
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}
.footertop-cnt p {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding-left: 62px;
    letter-spacing: 1px;
    font-family: "Syne", sans-serif;
}
.footer_top .row {
    margin: 0;
}
.footer_top .col-md-6 {
    padding: 0;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 155px;
    display: block;
}
.footer_menu {
    padding: 40px 0 0 0;
}
.footer-details li {
    display: flex;
    margin-bottom: 15px;
    position: relative;
    gap: 20px;
}
ul.footer-details li i {
    background: #ffb300;
    padding: 10px;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}
ul{
	padding-left: 0rem !important;
	list-style-type: none;
}
ul.ftricons li a {
    border: 1px solid #ffffff36;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    margin-top: 8px;
}
footer ul li.menu-item a {
    display: inline-block;
}
footer ul li.menu-item:last-child a {
    margin: 0;
}
.menu,.footer-details {
    margin-top: 25px;
}
footer h3 {
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer a {
    color: #ffffff !important;
}
footer .menu li{
	padding-left: 0 !important;
	color: var(--dark) !important;
	transition: transform 0.3s ease;
	line-height: 40px;
}
footer .menu li::after {
  content: "\f061"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: var(--primary);
}

footer .menu li:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
footer .menu li:hover{
	color: var(--primary) !important;
	transform: translateX(20px);
}
footer .social-icons {
    display: flex;
    transition: 0.3s;
}
footer .social-icons a:hover{
	background: var(--primary);
}
footer .social-icons a {
    display: flex;
    text-decoration: none;
    color: #000000 !important;
    background-color: #ffb300;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}
footer ul li, footer ul li a, footer p, footer p a {
    font-weight: 600;
    position: relative;
    text-decoration: none;
    color: #ffffff;
}
footer a.viewmore {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    font-size: 14px;
}
.copyright {
    padding: 15px 0;
    border-top: 1px solid #ffb3003d;
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}
.copyright p a {
    color: var(--white);
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
}
footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c98d830f;
    width: 40px;
    height: 40px;
    color: var(--secondary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 50%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}
#GoToTop i{
	color: #fff;
}
#GoToTop:hover {
  background: var(--primary);
  transform: scale(1.1);
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 49px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 9;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
a#whatsappbtn i {
    color: #fff;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 47px 9px 24px;
    background: var(--primary);
    color: #000;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgb(0 0 0 / 37%);
    margin-right: 26px;
    clip-path: polygon(
        0 0%,
        88% -17%,
        97% 104%,
        8% 113%
    );
}
/* Shine Effect */
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-25deg);
    transition: 0.6s;
}
.btn::after {
    content: "➜";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    transition: all 0.3s ease;
}
/* Hover Effects */
.btn:hover::before {
    left: 130%;
}

.btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
    color: #fff;
}

/* Active Click */
.btn:active {
    transform: scale(0.98);
}


/* =========================
   HERO SLIDER
========================= */
	.taxi-slider {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image: url('https://algopagedev.com/project/mannukargilladakhtaxiservice.com/wp-content/uploads/2026/05/sevice-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Fixed Background */
}

/* Dark Overlay */
.taxi-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #ffb30014, transparent);
    z-index: 1;
}
	
/* Keep content above overlay */
.taxi-slider .container-fluid,
.taxi-slider .container,
.slider-content,
.slider-image {
    position: relative;
    z-index: 2;
}

/* ==========================
   LEFT CONTENT
========================== */
.slider-content {
    color: #fff;
    position: relative;
    z-index: 0;
    margin-left: 6%;
}
.slider-content::before {
    content: "";
    position: absolute;
    bottom: -88%;
    left: -19%;
    width: 368px;
    height: 381px;
    background: url('https://algopagedev.com/project/mannukargilladakhtaxiservice.com/wp-content/uploads/2026/06/slider-additional.webp') no-repeat center;
    background-size: cover;
    opacity: 0.9;
    z-index: -1;
}
.hero-title {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

/* Word by word animation */
.hero-title span {
    display: inline-block;
    opacity: 0;
    transform: translateX(-80px);
    animation: slideWord .8s ease forwards;
}

.hero-title span:nth-child(1){animation-delay:.2s;}
.hero-title span:nth-child(2){animation-delay:.4s;}
.hero-title span:nth-child(3){animation-delay:.6s;}
.hero-title span:nth-child(4){animation-delay:.8s;}
.hero-title span:nth-child(5){animation-delay:1s;}
.hero-title span:nth-child(6){animation-delay:1.2s;}

@keyframes slideWord{
    from{
        opacity:0;
        transform:translateX(-80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

.hero-desc {
    color: #cfcfcf;
    max-width: 500px;
    font-size: 17px;
    line-height: 1.8;

    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 1.5s;
}

@keyframes fadeUp {
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}


/* ==========================
   RIGHT SIDE IMAGE
========================== */
.slider-image {
    position: relative;
    height: 100vh;
    margin-right: -3%;
}

/* Yellow Glow */
.slider-image::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: #ffde00;
    border-radius: 50%;
    filter: blur(180px);
    opacity: .25;
    right: 120px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/* ==========================
   BACKGROUND IMAGE
========================== */
.bg-taxi {
    position: absolute;
    right: 0;
    top: 50%;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 2;

    animation: bgZoom 12s ease-in-out infinite alternate;
}

@keyframes bgZoom {
    from{
        transform: translateY(-50%) scale(1);
    }
    to{
        transform: translateY(-50%) scale(1.08);
    }
}

/* ==========================
   TAXI IMAGE
========================== */
.taxi-car {
    position: absolute;
    bottom: 68px;
    left: -30px;
    width: 500px;
    z-index: 5;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,.5));
    animation: taxiEntry 2s ease forwards,
        taxiFloat 4s ease-in-out infinite 2s;
}

/* Entry Animation */
@keyframes taxiEntry {
    from{
        opacity:0;
        transform:translateX(500px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* Floating Animation */
@keyframes taxiFloat {
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}



/* =========================
   ABOUT SECTION
========================= */

.about-sec{
    padding:80px 0;
    background:#f7f7f7;
}

.about-img-wrap {
    position: relative;
    max-width: 555px;
    height: 510px;
}

/* Yellow Shape */
.shape-bg{
    position:absolute;
    width:180px;
    height:80px;
    background:#ffcc00;
    top:-25px;
    right:40px;
    z-index:1;

    clip-path: polygon(
        15% 0,
        100% 0,
        85% 100%,
        0 100%
    );
}

/* Main Image */
.main-img {
    width: 100%;
    border-radius: 5px;
    position: relative;
    z-index: 2;
    height: inherit;
    object-fit: cover;
}

/* Small Image */
.small-img {
    width: 230px;
    position: absolute;
    bottom: -31px;
    right: -38px;
    border: 8px solid #fff;
    z-index: 3;
}
/* Taxi Icon Circle */
.floating-icon {
    width: 130px;
    height: 130px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    right: -40px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border: 2px dashed #fff;

    animation: zoomPulse 2s infinite ease-in-out;
}

@keyframes zoomPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
    100% {
        transform: scale(1);
    }
}

/* Content */
.sec-tag{
    color:#ffcc00;
    font-weight:700;
    text-transform:uppercase;
}

.about-sec h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 15px 0 25px;
}

.about-list{
    padding:0;
    margin:30px 0;
    list-style:none;
}

.about-list li{
    margin-bottom:15px;
    position:relative;
    padding-left:30px;
}

.about-list li:before{
    content:"✓";
    color:#ffcc00;
    position:absolute;
    left:0;
}
img.float-img {
    width: 120px;
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}




/* Heading */
.abt-content h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 38px;
    color: #111;
}


/* Small Image */
.abt-small-img {
    overflow: hidden;
    border-radius: 20px;
}

.abt-small-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s ease;
}

.abt-small-img:hover img {
    transform: scale(1.08);
}

/* Text */
.abt-text p {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 25px;
}

/* List */
.abt-text ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.abt-text ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #222;
}

.abt-text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-size: 16px;
}

/* Right Image */
.abt-main-img {
    position: relative;
}

.abt-main-img img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    min-height: 550px;
}


/* Call btn */

.about-btn-wrap{
    margin-top: 35px;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    color: #000;
    text-decoration: none;
    padding: 12px 25px 12px 12px;
    border-radius: 60px;
    font-weight: 600;
    transition: all .4s ease;

}

.call-btn:hover{
    color: #000;

}

.call-icon{
    width: 55px;
    height: 55px;
    background: #000;
    color: #ffcc00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    animation: pulseCall 2s infinite;
}

.call-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: anchor-center;
/*     a: 1.2; */
}

.call-content small{
    color: #555;
    font-size: 13px;
}

.call-content strong{
    font-size: 18px;
    color: #000;
}
a.call-num {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 700;
}
.call-btn a {
 text-decoration: none !important;
    color: #000;
    font-size: 17px;
    font-weight: 700;
}


@keyframes pulseCall{
    0%{
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0,0,0,.4);
    }
    70%{
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(0,0,0,0);
    }
    100%{
        transform: scale(1);
    }
}
/* Experience Box */
.exp-box {
    position: absolute;
    bottom: 30px;
    left: -40px;

    width: 180px;
    height: 180px;

    background: var(--primary);
    color: #fff;

    border-radius: 24px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.exp-box h3 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 8px;
	color: #000;
}

.exp-box span {
    font-size: 15px;
    text-align: center;
    line-height: 1.5;
    max-width: 100%;
    color: #000;
}


 
/* How Work section  */
.how-work-sec {
    position: relative;
    padding: 80px 0;
    overflow: hidden;

    background-image: url('https://algopagedev.com/project/mannukargilladakhtaxiservice.com/wp-content/uploads/2026/06/ladakh-view-2-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.how-work-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgb(0 0 0 / 77%), rgb(0 0 0 / 73%));
    z-index: 1;
}
section#we_work h2 {
    color: #fff;
}

.how-work-sec > * {
    position: relative;
    z-index: 2;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.work-item {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Animated Gradient Top Border */
.work-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: #ffdd00;
    transition: 0.5s;
}

.work-item:hover::before {
    left: 0;
}

/* Background Glow */
.work-item::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgb(255 204 0 / 64%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    transition: 0.5s;
    z-index: -1;
}

.work-item:hover::after {
    transform: scale(1.5);
}

/* Hover Effect */
.work-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.step-number{
    font-size:40px;
    font-weight:800;
    color:#ffb400;
    display:block;
    margin-bottom:15px;
}

.work-item h3{
    font-size:22px;
    margin-bottom:10px;
}

.work-image {
    position: relative;
    text-align: center;
}

.work-image img {
    will-change: transform;
    transition: transform 0.08s linear;
}

/* Why Choose us */

.why-choose-us{
    position:relative;
    overflow:hidden;
    background:#000;
    color:#fff;
    padding:100px 0;
    background-image:url("https://algopagedev.com/project/mannukargilladakhtaxiservice.com/wp-content/uploads/2026/06/pattern-4.jpg");
    background-size:cover;
    background-position:center;
}

.taxi-shape-wrapper{
    position:relative;
    width:550px;
    max-width:100%;
    height:500px;
    margin:auto;
}

/* Main Image Shape */
.main-shape {
    position: absolute;
    width: 540px;
    height: 450px;
    left: 0px;
    top: 20px;
    overflow: hidden;
    clip-path: polygon(
        12% 0,
        95% 0,
        100% 100%,
        0 100%
    );
}

.main-shape img{
    width:100%;
    height:100%;
    object-fit:cover;
}


/* Yellow Accent Shape */
.yellow-shape{
    position:absolute;
    width:95px;
    height:140px;
    top:20px;
    right:0;
    background:#ffdd00;

    clip-path:polygon(
        25% 0,
        100% 0,
        75% 100%,
        0 100%
    );
}

/* Content */
.section-tag{
    display:inline-block;
    color:#ffdd00;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:15px;
}

.main-title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 40px;
}
.feature-box {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.number{
    font-size:60px;
    font-weight:700;
    color:rgba(255,255,255,0.25);
    line-height:1;
}

.feature-box h5{
    margin-bottom:10px;
    color:#fff;
}

.feature-box p{
    color:#bdbdbd;
    margin:0;
}

.theme-btn{
    display:inline-block;
    background:#ffdd00;
    color:#000;
    text-decoration:none;
    padding:14px 35px;
    font-weight:700;
    position:relative;
}

.theme-btn::before,
.theme-btn::after{
    content:"";
    position:absolute;
    top:0;
    width:6px;
    height:100%;
    background:#ffdd00;
    transform:skewX(-20deg);
}

.theme-btn::before{
    right:-12px;
}

.theme-btn::after{
    right:-22px;
}


/* Services section */
.service-slider-section {
    padding: 80px 0;
    position: relative;
    color: #fff;

    background-image: url('https://algopagedev.com/project/mannukargilladakhtaxiservice.com/wp-content/uploads/2026/06/pattern-5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
section.service-slider-section h2 {
    color: #000 !important;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.service-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 380px;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.15);
}

.overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.25) 35%,
        rgba(0, 0, 0, 0) 70%
    );
}

.icon {
    font-size: 30px;
    margin-bottom: 10px;
    background: var(--primary);
    padding: 5px;
    height: 75px;
    width: 75px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid;
}
.icon img {
    width: 43px;
    height: 42px;
}

.overlay h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.overlay p {
    font-size: 14px;
    opacity: 0.85;
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #ffc107;
}


/* Faq Section */
.faq-sec {
    padding: 70px 0;
    background: #f5f5f5;
}


.faq-left h2 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
}

.faq-left p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
    max-width:500px;
}

.faq-img img{
    width:100%;
    border-radius:20px;
}

.faq-wrapper{
    padding-left:40px;
}

.faq-item{
    background:#fff;
    border-radius:15px;
    margin-bottom:20px;
    overflow:hidden;
    transition:0.3s;
}

.faq-question{
    display:flex;
    align-items:center;
    gap:20px;
    padding:25px 30px;
    cursor:pointer;
}

.faq-icon{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:50%;
    background:#ffb300;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
}

.faq-question h4{
    font-size:24px;
    margin:0;
    font-weight:600;
    flex:1;
}

.faq-arrow{
    font-size:22px;
    transition:0.3s;
}

.faq-answer{
    display:none;
    padding:0 30px 30px 95px;
}

.faq-answer p{
    margin:0;
    color:#666;
    line-height:1.9;
}

.faq-item.active .faq-answer{
    display:block;
}

.faq-item.active{
    border-top:3px solid #ffb300;
}




/* Booking sec  */
.contact-booking-section{
    padding:100px 0;
    background:#f8f9fb;
}

.contact-wrapper{
    display:flex;
    gap:30px;
    align-items:stretch;
}

.contact-image {
    width: 40%;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 520px;
}

.contact-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.contact-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.9),
        rgba(0,0,0,.2)
    );
    z-index: 1;
}
.text-center p {
    margin: 0;
}

.text-center .wpcf7-submit {
    display: flex;
    width: 40%;
    margin: 0 auto;
}
.image-content {
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    z-index: 2;
    color: #fff;
}

.sub-title{
    display:inline-block;
    background:#f4b400;
    color:#000;
    font-size:13px;
    font-weight:600;
    padding:8px 15px;
    border-radius:50px;
    margin-bottom:15px;
}

.image-content h2{
    font-size:38px;
    line-height:1.2;
    margin-bottom:15px;
    color:#fff;
}

.image-content p{
    color:rgba(255,255,255,.85);
    margin-bottom:25px;
}

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

.feature-item{
    display:flex;
    align-items:center;
    gap:12px;
}

.feature-item i{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#f4b400;
}

.booking-box{
    flex:1;
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.booking-box label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.booking-box input,
.booking-box select{
    width:100%;
    height:55px;
    border:1px solid #ddd;
    border-radius:12px;
    padding:0 15px;
    outline:none;
}

.booking-box input:focus,
.booking-box select:focus{
    border-color:#f4b400;
}

.book-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 35px;
    background:#f4b400;
    color:#000;
    font-weight:600;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.book-btn:hover{
    background:#000;
    color:#fff;
}

.section-title{
    margin-bottom:30px;
}

.section-title h2{
    margin-bottom:10px;
}

.section-title p{
    color:#777;
}


/* Testimonial */

section.testimonial-sec {
    background: var(--dark) url(https://webzensys.com/work/lorinya-hochbau.de/wp-content/uploads/2026/05/tes-bg.png);
    padding: 80px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sec-heading{
    margin-bottom:20px;
}

.sec-heading h2 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    max-width: 700px;
    margin: 0px auto 0;
}

.testimonial-item {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: 0.4s;
    height: 100% !important;
}

.testimonial-item:hover{
    transform:translateY(-10px);
}

.quote-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#ffb300;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:30px;
}

.testimonial-item p{
    color:#666;
    line-height:1.9;
    font-size:17px;
    margin-bottom:35px;
}

.testimonial-bottom{
    display:flex;
    align-items:center;
    gap:18px;
}

.client-img img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.client-info h4{
    font-size:22px;
    margin-bottom:5px;
}

.client-info span{
    color:#ffb300;
    font-weight:600;
}

/* PAGINATION */
.swiper-pagination{
    position:relative;
    margin-top:50px;
}

.swiper-pagination-bullet{
    width:14px;
    height:14px;
    background:#ccc;
    opacity:1;
    transition:0.3s;
}

.swiper-pagination-bullet-active{
    width:35px;
    border-radius:30px;
    background:#ffb300;
}
.testimonial-slider {
    overflow: hidden;
    padding-bottom: 30px;
}

.swiper-wrapper{
    align-items:stretch;
}

.swiper-slide{
    height:auto;
}



/* Full Responsive */

@media(max-width:991px){
	
	nav.d-none.d-md-block {
    display: none !important;
}
	a.btn.top-btn {
    display: none !important;
}
	button#mobileMenuBtn {
    display: block !important;
}
	button#mobileMenuBtn {
    display: block !important;
    width: 45px;
    height: 45px;
    background: #000;
    position: relative;
    left: -3%;
    border-radius: 6px;
}
	div#mobileMenu h4 {
    font-size: 20px;
}
	.about-img-wrap {
    max-width: 720px;
    margin: 0 auto;
}
	.col-lg-6.abt-cnt {
    margin: 30px auto 0 !important;
}
	.container {
    max-width: 890px !important;
}
	.main-shape {
    position: absolute;
    width: 725px;
    height: 530px;
    left: -16%;
}
	.yellow-shape {
    height: 201px;
    top: -25px;  
}
	.work-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr) !important;

}
	.faq-wrapper {
    padding-left: 0px !important;
    margin-top: 30px !important;
}
	.contact-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, black, #0d6efd24) !important;
    z-index: 1;
}
	
	.sec-heading h2{
        font-size:40px;
    }
	    .contact-wrapper{
        flex-direction:column;
    }

    .contact-image{
        width:100%;
        min-height:450px;
    }

    .image-content h2{
        font-size:28px;
    }

    .booking-box{
        padding:25px;
    }
	
	 .taxi-shape-wrapper{
        margin-bottom:50px;
        transform:scale(.85);
        transform-origin:center;
    }

    .main-title{
        font-size:38px;
    }
	
    .taxi-slider {
    padding: 80px 0 0;
    min-height: auto;
}

    .slider-content {
    margin-left: 0;
    text-align: center;
    margin-bottom: 60px;
    padding: 100px 20px 0px;
}

    .hero-title{
        font-size:40px;
    }

    .hero-desc{
        margin:auto;
    }

    .slider-image {
    height: 500px;
    /* margin-right: 0; */
    width: 118% !important;
    left: -20%;
    /* bottom: 0; */
}

    .bg-taxi{
        height:100%;
    }

    .taxi-car{
        width:320px;
        left:50%;
        transform:translateX(-50%);
        bottom:30px;
    }

    .slider-image::before{
        width:250px;
        height:250px;
        right:50%;
        transform:translate(50%, -50%);
    }
	
}

@media(max-width:767px){
	.top-bar {
    display: none !important;
}
	.container {
    max-width: 680px !important;
}
	.contact-image img {
    height: 495px !important;
    object-fit: cover;
}
.contact-booking-section {
    padding: 60px 0 !important;
}
	section.testimonial-sec {
    padding: 60px 0 20px !important;
}
	.faq-sec {
    padding: 60px 0;
}
	.service-slider-section {
    padding: 60px 0 !important;
}
	.contact-image {
    width: 100%;
    min-height: 495px !important;
    position: relative;
}
	.swiper-button-next, .swiper-button-prev {
    color: #ffc107;
    background: #000;
    padding: 20px;
    position: absolute;
    margin-top: -11%;
}
	.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    font-size: 20px !important;
}.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'next';
    font-size: 20px !important;
}
	.testimonial-sec{
        padding:70px 0;
    }

    .sec-heading h2{
        font-size:32px;
    }

    .testimonial-item{
        padding:30px;
    }
	.faq-left h2{
        font-size:32px;
    }

    .faq-question{
        padding:20px;
        gap:15px;
    }

    .faq-question h4{
        font-size:18px;
    }

    .faq-answer{
        padding:0 20px 25px 20px;
    }
	.faq-wrapper{
        padding-left:0;
        margin-top:50px;
    }

    .faq-left h2{
        font-size:40px;
    }
	 .abt-sec {
        padding: 70px 0;
    }

    .abt-content h2 {
        font-size: 32px;
    }

    .abt-inner-box {
        padding: 20px;
    }

    .abt-small-img img {
        height: 220px;
        margin-bottom: 25px;
    }

    .abt-main-img img {
        min-height: auto;
    }

    .exp-box {
        width: 140px;
        height: 140px;
    }

    .exp-box h3 {
        font-size: 38px;
    }
	.abt-content h2 {
        font-size: 40px;
    }

    .abt-main-img {
        margin-top: 50px;
    }

    .exp-box {
        left: 20px;
    }
}
@media(max-width:667px){
	header.site-header.sticky.fixed button#mobileMenuBtn {
    display: block !important;
    width: 45px;
    height: 45px;
    background: #000;
    position: relative;
    left: -9%;
    border-radius: 6px;
}
	.slider-image {
    height: 500px;
    width: 100% !important;
    left: 0 !important;
}
/* 	.bg-taxi {
        animation: none;
        transform: translateY(-50%) scale(1);
    } */
	.container {
    max-width: 612px !important;
}
	.floating-icon {
    width: 116px !important;
    height: 116px !important;
    right: -25px !important;
	
}
	.about-sec h2 {
    font-size: 30px !important;
    margin: 0px 0 20px !important;
}
}
@media(max-width:568px){
	.taxi-shape-wrapper{
        height:350px;
        transform:scale(.65);
        transform-origin:left top;
    }

    .main-title{
        font-size:30px;
    }

    .number{
        font-size:45px;
    }
	.hero-title{
        font-size:32px;
    }

    .hero-desc{
        font-size:15px;
    }

    .taxi-btn{
        padding:15px 40px;
    }

    .taxi-car{
        width:260px;
    }

    .slider-image{
        height:400px;
    }
	.container {
    max-width: 530px !important;
}
	.floating-icon {
    width: 100px !important;
    height: 100px !important;
    right: -5px !important;
}
	.small-img {
    right: -23px !important;
}
	.about-sec {
    padding: 80px 0 60px !important;
}
	.main-shape {
    left: 0% !important;
}
	.why-choose-us {
    padding: 80px 0 40px !important;
}
	.swiper-button-next, .swiper-button-prev {
    margin-top: -15%;
}
	.work-grid {
    display: grid;
    grid-template-columns: repeat(1,1fr) !important;
}
	header.site-header.sticky.fixed button#mobileMenuBtn {
    left: -2% !important;
}
}
@media(max-width:479px){
.logo-box {
    padding: 20px 15px !important;
}
	.logo-box h4 {
    font-size: 16px;
    width: 272px;
}
	.slider-content::before {
    bottom: -159%;
    width: 319px;
}
	.floating-icon {
    width: 60px !important;
    height: 73px !important;
    right: 30px !important;
}
	header.site-header.sticky.fixed button#mobileMenuBtn {
    left: -6% !important;
}
	.container {
    max-width: 460px !important;
}
	.small-img {
    right: -11px !important;
    bottom: -11%;
}
	.col-lg-6.abt-cnt {
    margin: 64px auto 0 !important;
}
	.main-shape {
    width: 678px !important;
}
	.main-shape {
    left: -2% !important;
}
	.hero-desc {
    margin-bottom: 20px !important;
}
}
@media(max-width:414px){
	.logo-box h4 {
    font-size: 14px !important;
    width: 235px !important;
}
	.logo-box {
    padding: 20px 7px !important;
}
	.about-img-wrap {
    height: 380px !important;
}
	.main-shape {
    width: 616px !important;
}
	.main-shape {
    left: -2% !important;
}
	.yellow-shape {
    height: 201px;
    top: -25px;
    right: -51%;
}
	.swiper-button-next, .swiper-button-prev {
    margin-top: -25%;
}
#whatsappbtn {
    bottom: 12%;
    left: 9px;
}
	
}
@media(max-width:379px){
	
	.contact-image img {
    height: 540px !important;
    object-fit: cover;
}
	.section-title p {
    line-height: 32px !important;
}
	.faq-left h2 {
    font-size: 30px;
}
}
@media(max-width:360px){
	
	
	
}