/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');
*{
	margin: 0;
	padding: 0;
}
:root{
    --primary: #fa0301;
    --white:#fff;
    --dark: #000;
}
body {
	margin:0 !important;
	padding:0 !important;
	font-family: 'Jost', sans-serif;
	overflow: inherit !important;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Marcellus', serif;
}
.container{
	max-width: 1250px;
}
/* ================================
   Desktop Navigation
================================ */
.site-header .main-header {
    position: absolute;
    left: 0;
    z-index: 10;
    background: #ffffffba !important;
    width: 90%;
    margin: 20px auto;
    right: 0;
    border-radius: 50px;
    padding: 5px 10px;
}
.site-header.sticky .main-header {
    position: fixed !important;
    top: 0;
	margin: 0;
    background: #fff !important;
    padding: 12px 0; 
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.4s ease;
	width: 100%;
	border-radius: 0;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.site-header .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav > li {
  position: relative;
}
.btn-primary ,
.wpcf7-submit{
    position: relative;
    z-index: 1;
    color: #fff;
    background: var(--button);
    border: none;
    padding: 10px 40px;
    letter-spacing: 1px;
    overflow: hidden;
    transition: 0.3s;
    border-radius: 0;
    display: inline-block;
}
.btn-primary:hover ,
.wpcf7-submit:hover{
    color: #fff;
}
.btn-primary::after ,
.wpcf7-submit::after{
    content: '';
    position: absolute;
    inset: 0;
    background: var(--secondary);
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.5s ease;
    z-index: -1;
    border-radius: 4px;
}
.btn-primary:hover::after ,
.wpcf7-submit:hover::after{
    transform: scale(1);
    transform-origin: top left;
}
.site-header .nav > li > a {
  color: #333;
  text-decoration: none;
  padding: 8px 15px;
  font-weight: 700 !important;
  transition: all 0.3s ease;
  display: inline-block;
}
.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
  color: var(--secondary); 
}
/* Dropdowns */
.site-header .nav li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #fff;
    list-style: none;
    margin: 0;
    display: none;
    z-index: 9999;
	border-radius: 4px;
	border-top: 4px solid var(--primary);
}
.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: var(--secondary);
  display: block;
  font-weight: 400;
  text-decoration: none;
}
.site-header .nav li ul.sub-menu li a:hover {
  background: var(--secondary);
  color: #fff;
}
.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: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#menu-main-menu-1 li {
    padding: 20px 10px;
    border-bottom: 1px solid #fff;
}
#menu-main-menu-1 li a {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}
/* ================================
   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://avatars.dzeninfra.ru/get-zen_doc/9505890/pub_64388194fb34904a5c9a938e_643881a05358984e7f468e97/scale_1200);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    height: 60vh;
    position: relative;
    z-index: 1;
}
.breadcrumb-item.active {
    color: #fff !important;
}
ol.breadcrumb {
    font-size: 18px;
    font-weight: 700;
}
.breadcrumb-item+.breadcrumb-item::before{
	color: #fff !important;
}
.breadcrumb-title h2 {
    color: #fff !important;
}
li.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}
/*==========================
     FOOTER SECTION CSS 
==============================*/
/* FOOTER SECTION CSS */
footer {
    position: relative;
    background: url("https://designdec.in/wp-content/uploads/2026/04/footer.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    padding-top: 5rem;
    background-position: center;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f7f7f7cf 33.19%, #f7f7f78f 100%);
}
footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: url(https://webzensys.com/work/fidex.co.ke/wp-content/uploads/2026/03/background-shape.webp) no-repeat;
    background-size: contain;
    background-position: bottom;
    z-index: 2;
}
footer .container{
    position:relative;
    z-index:2;
}
.footer_menu h3 {
    font-weight: 700;
    color: var(--primary);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
	margin:0;
}
footer a{
	color: #000;
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
.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;
}
.box1{
	padding: 20px;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 250px;
    display: block;
}
.footer_menu {
    padding: 40px 0 0 0;
}
ul.footer-details li i {
    background: var(--secondary);
    padding: 10px;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.footer-icon {
    height: 30px;
    width: 30px;
    background: var(--violate);
    display: flex;
    justify-content: center;
    padding: 10px;
    color: #fff;
    border-radius: 5px;
    align-items: center;
}
ul.footer-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
#mobileMenuBtn i {
    color: #fff;
    font-size: 40px;
}
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;
}
.menu ,.footer-details,.footer-payment{
    margin-top: 25px;
}
footer p {
    margin-bottom: 25px;
    line-height: 30px;
    margin-top: 25px;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer .menu li{
	padding-left: 0 !important;
	color: var(--dark) !important;
	  transition: transform 0.3s ease;
	line-height: 40px;
	margin-left: 35px;
}
footer .menu li::after {
  content: "\f101"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.underline1 {
    height: 2px;
    width: 100px;
    background: var(--secondary);
    margin: auto;
    margin-top: 8px;
}
.underline2 {
    height: 4px;
    width: 30px;
    background: var(--primary);
    margin: auto;
    margin-top: -3px;
}
.no-margin {
    margin-left: 0px;
}
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: var(--light);
    background-color: var(--primary);
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}
footer ul li, footer ul li a, footer p, footer p a {
    font-weight: 500;
    position: relative;
    text-decoration: none;
	color: #000;
}
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 var(--secondary);
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: #000;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 500;
}
.copyright p a {
    font-weight: 500;
    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%;
}
.footer-payment {
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.payment-box {
    background: #fff;
    display: flex;
    align-items: center;
    width: 65%;
    height: 90px;
    flex-direction: column;
    justify-content: center;
}
/* Scroll To Top Button */
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    z-index: 999;
    transition: all 0.3s ease-in-out;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
#GoToTop i{
	color: #fff;
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    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: 1;
}
#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;
    }
}
#whatsappbtn img {
    width: 30px;
}
/* ================================
    	Curser
================================ */
.custom-cursor__cursor{
  width:25px;
  height:25px;
  border-radius:50%;
  border:1px solid var(--primary);
  position:fixed;
  left:0;
  top:0;
  pointer-events:none;
  transform:translate(-50%,-50%);
  transition:all 200ms ease-out;
  z-index:999991;
}
.custom-cursor__cursor-two{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--primary);
  opacity:.3;
  position:fixed;
  left:0;
  top:0;
  pointer-events:none;
  transform:translate(-50%,-50%);
  transition:width .3s,height .3s,opacity .3s;
  z-index:999991;
}
a:hover ~ .custom-cursor__cursor,
button:hover ~ .custom-cursor__cursor{
  transform:translate(-50%,-50%) scale(1.4);
}
a:hover ~ .custom-cursor__cursor-two,
button:hover ~ .custom-cursor__cursor-two{
  width:20px;
  height:20px;
  opacity:.15;
}
/* Btn-primary */
.btn-primary {
    position: relative;
    z-index: 1;
    color: #fff;
    background: var(--button);
    border: none;
    padding: 10px 40px;
    letter-spacing: 1px;
    overflow: hidden;
    transition: 0.3s;
    border-radius: 0;
    display: inline-block;
}
.btn-primary:hover {
    color: #fff;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--secondary);
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.5s ease;
    z-index: -1;
    border-radius: 4px;
}
.btn-primary:hover::after {
    transform: scale(1);
    transform-origin: top left;
}
/*========================
      Marquee Tag 
=========================*/
.marquee {
    width: 100%;
    overflow: hidden;
    background: var(--primary);
    padding: 20px 0;
    margin: 40px 0 0 0;
}
.marquee-content {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll 50s linear infinite;
  font-weight: 600;
  font-family: Arial, sans-serif;
}
.marquee-content span {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: #fff;
  font-size: 25px;
  font-family: 'Marcellus', serif;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/*========================
 	 Hero Section 
=======================*/
.hero{
	height:100vh;
	width:100%;
	position:relative;
	overflow:hidden;
}
.hero img{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
top:0;
left:0;
opacity:0;
transition:0.6s;
}
.hero img.active{
opacity:1;
}
.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
z-index:2;
}
.hero-content{
position:absolute;
z-index:3;
width:100%;
top:70%;
transform:translateY(-50%);
color:#fff;
padding:0 80px;
}
.title{
font-size:60px;
font-weight:600;
margin-bottom:120px;
}
.hero-menu {
display: flex;
gap: 140px;
padding: 25px 0;
align-items: center;
justify-content: center;
color: #fff;
}
.hero-menu h2{
letter-spacing:4px;
cursor:pointer;
font-weight:500;
transition:0.3s;
color: #fff;
}
.hero-menu h2:hover{
color: var(--primary);
}
.subhero-menu{
text-align:center;
margin-top:15px;
font-size:14px;
letter-spacing:2px;
}
.subhero-menu span{
margin:0 10px;
}
section{
	padding: 80px 0 0;
}
/* About css */
.heading-section{
	text-align: center;
	width: 80%;
	margin: auto;
}
.sub-heading {
    color: var(--secondary);
    display: flex;
    justify-content: center;
}
.sub-heading img {
    height: auto;
    width: 35px;
    margin-right: 5px;
}
.heading {
    font-size: 60px;
    text-align: center;
    color: var(--primary);
    line-height: 1.4;
}
.check-list {
    list-style: none;
    padding: 0;
}
.check-list li {
    position: relative;
    padding-left: 28px;
   line-height: 40px;
}
.check-list li::before {
    content: "\f058"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
}
.about-img img {
    border-radius: 20px;
    box-shadow: 0 0 10px 0 #8080804f;
}
.second-box{
	position: relative;
}
img.img-fluid.learn {
    box-shadow: none;
    position: absolute;
    left: -15%;
    bottom: -20%;
    width: 60%;
    background: #fff;
    border-radius: 50%;
    animation: rotateCircle 10s linear infinite;
}
@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* Why choose us section */
section.why-number {
    background: url(https://designdec.in/wp-content/uploads/2026/04/choose-bg-scaled.webp);
    padding: 80px 0 120px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	background-attachment: fixed;
}
section.why-number::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}
section.why-number::before{
    content: ""; 
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: url(https://safar.devsvibe.co/wp-content/uploads/2025/10/section-line-shape-1536x57.webp) no-repeat;
    background-size: contain;
    background-position: bottom;
    z-index: 2;
}
section.why-number .container{
    position: relative;
    z-index: 3;
}
section.why-number .heading1{
	margin-bottom: 3rem;
	font-size: 60px;
    text-align: center;
    color: #fff;
    line-height: 1.4;
}
.num-card {
    position: relative;
    background: #ffffff;
    padding: 65px 25px 25px;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
    border: 1px dashed var(--primary);
}
.num-card .big-num{
    position:absolute;
    top:-20px;
    right:10px;
    font-size:100px;
    font-weight:700;
    color:rgba(0,0,0,0.05);
    z-index:0;
}
.num-card i {
    font-size: 30px;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}
.num-card h5{
    font-weight:600;
    position:relative;
    z-index:2;
}
.num-card p{
    font-size:14px;
    color:#666;
    position:relative;
    z-index:2;
}
.num-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}
.num-card:hover .big-num{
    color:#655a0157;
}
/*============================
      About Page CSS
================================*/
/* About Page CSS */
.about-inner .about-img{
	overflow: hidden;
	border-radius: 20px;
}
.about-inner .about-img img {
    border-radius: 20px;
    box-shadow: 0 0 10px 0 #8080804f;
    height: 100%;
    object-fit: cover;
	transition: 0.4s ease;
}
.about-inner .about-img img:hover{
	transform: scale(1.1);
	border-radius: 20px;
}
.about-right-contain .heading {
    text-align: left;
    font-size: 40px;
}
/*=========================
     Service Page Css 
=========================*/
.blog-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
}
.blog-card:hover{
    transform:translateY(-5px);
}
.blog-img{
    position: relative;
    overflow: hidden;
}
.blog-img img{
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease; 
}
.blog-card:hover .blog-img img{
    transform: scale(1.1);
}
.blog-img::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 9px;
    right: 9px;
    bottom: 9px;
    border: 1px solid var(--primary);
    z-index: 2;
    border-radius: 30px;
    pointer-events: none;
}
.blog-content{
    padding:20px;
}
.blog-title{
    font-size:20px;
    margin-bottom:10px;
}
.blog-content p{
    font-size:14px;
    color:#666;
}
.blog-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}
.blog-excerpt{
    margin:0;
    font-size:14px;
    color:#666;
}
/* ================================
  Contact Page Css
================================ */
   .contact-page-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    border: 1px solid #e6e6e6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    flex-direction: column;
    justify-content: center;
}    
.form-control {
   background: #f9f9f9;
   border: 1px solid #ddd;
   color: #000;
}
.form-control:focus {
   border-color: var(--primary);
   box-shadow: none;
} 
.info-card {
  padding: 35px 25px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ececec;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: 0.3s;
  display: flex;
  gap: 30px;
}
.info-card a{ 
	color: #000 !important;
	text-decoration: none;		
}
.info-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}
.info-card i{
   font-size: 28px;
   color: var(--primary);
   margin-bottom: 10px;
}
.info-card h6 {
   font-size: 18px;
   margin-bottom: 5px;
   font-weight: 600;
}
.map-section iframe {
   width: 100%;
   height: 450px;
   border: 0;
   border-radius: 12px;
   margin-top: 40px;
}