/* ✅ 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');
@import url('https://fonts.cdnfonts.com/css/gill-sans-mt-2');
*{
	margin: 0;
	padding: 0;
}
:root {
    --background: #adf0c3;
	--text: #00003d;
	--primary: #00003d;
	--secondary: #00003d;
}
/* h1, h2, h3, h4, h5, h6{
	font-family: 'Merriweather', serif;
} */
body {
   font-family: 'Gill Sans MT', sans-serif;
    margin: 0;
    padding: 0;
	background: var(--background);
	color: var(--text);
}
.container{
	max-width: 1250px;
}
/* ================================
   Desktop Navigation
================================ */
.site-header .main-header {
    /* position: absolute; */
    left: 0px;
    right: 0px;
    width: 100%;
    z-index: 10;
    padding: 20px 0px;
    background: var(--background)!important;
}
.site-header.sticky .main-header {
    position: fixed !important;
    top: 0;
    background: var(--background) !important;
    padding: 12px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); 
    animation: slideDown 0.4s ease;
}
@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;
}
.wpcf7-submit {
   background: var(--text);
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    overflow: hidden;
    z-index: 1;
	border: none;
}

.site-header .nav > li > a {
  text-decoration: none;
  padding: 5px 15px;
  font-weight: 600 !important;
  transition: all 0.3s ease;
  display: inline-block;
  color: var(--text) !important;
}
.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
	color: var(--text) !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; 
  }
}
.logo-box a {
    text-decoration: none;
}
h2.site-title {
    color: var(--text);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
/* ================================
   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(--text)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#mobileMenuBtn:hover{
	background: #fff;
}
#mobileMenuBtn i{
	color: var(--text) !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: #fff !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: #fff !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://taylordodds.com/wp-content/uploads/2026/05/breadcrumb.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 60vh;
    position: relative;
}

section.breadcrumb-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* overlay */
    z-index: 1;
}

section.breadcrumb-section .container {
    position: relative;
    z-index: 2;
}
.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 !important;
    text-decoration: none;
}
/*===============================
      FOOTER SECTION CSS
================================= */
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
.underline1 {
    height: 2px;
    width: 100px;
    background: var(--secondary);
    margin: auto;
    margin-top: 8px;
}
.underline2 {
    height: 4px;
    width: 30px;
    background: var(--background);
    margin: auto;
    margin-top: -3px;
}
.no-margin {
    margin-left: 0px;
}
footer {
    position: relative;
    background: url(https://taylordodds.com/wp-content/uploads/2026/05/footer.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #000;
    z-index: 1;
	padding-top: 30px;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #adf0c3, #ffffff70);
    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;
}
.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-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;
}
.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;
    align-items: center;
}
ul.footer-details li i {
    background: var(--secondary);
    padding: 10px;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
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(--text);
    font-weight: 600;
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
	color: var(--text);
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer a{
	color: var(--text) !important;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer .menu li{
	padding-left: 0 !important;
	color: var(--text) !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;
}
footer .social-icons {
    display: flex;
    transition: 0.3s;
}
footer .social-icons a:hover{
	background: var(--background);
}
footer .social-icons a {
    display: flex;
    text-decoration: none;
    color: #fff;
    background-color: var(--text);
    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: var(--text);
}
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(--text);
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: var(--text);
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 400;
}
.copyright p a {
    color: #fff;
    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(--text);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--text);
    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;
}
#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;
}
a.btn-primary {
    background: var(--text);
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
	position:relative;
    display:inline-flex;
	overflow:hidden;
    z-index:1;
}
.btn-primary::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(135deg,var(--text),var(--background));
    transition:.5s;
    z-index:-1;
}
.btn-primary:hover::before{
    left:0;
}
.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(12,236,204,0.25);
    color:#fff;
}
/*================================
        Hero Section
=====================================*/
.hero-section{
    height: 100vh;
    position: relative;
    background-image: url("https://taylordodds.com/wp-content/uploads/2026/05/slider-home.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-section::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
}
.hero-section > *{
    position: relative;
    z-index: 2;
}
.hero-left {
    display: flex;
    align-items: center;
}
.hero-section .social-icons {
    position: absolute;
    top: 30%;
    right: 80px;
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: center;
}
.hero-section .social-icons i{
	color: var(--primary);
}
.hero-left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    gap: 20px;
}
.hero-left h1 {
  font-size: 3rem;
  line-height: 1.3;
  color: #fff;
}
.hero-left-content h4 {
    color: #fff;
    font-size: 20px;
    width: 70%;
    line-height: 32px;
    margin-bottom: 1rem;
}
/* About Section */
section{
	padding: 80px 0 0;
}
.list li {
    list-style: none;
    position: relative;
    padding-left: 25px;
    line-height: 40px;
}
.list li::before {
  content: "\f101"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  position: absolute;
  left: 0;
  color: var(--text);
}
.heading {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
	position: relative;
	padding-bottom:25px;
}
/* Service scope */
.process-section{
	position: relative;
}
.process-section {
    position: relative;
    background: #00003d1c;
    padding: 80px 0;
    margin-top: 80px;
}
.stage-icon{
	position: absolute;
	opacity: 0.4;
	top: 5%;
	right: 10%;
	width: 12%;
	animation: floatXY 8s ease-in-out infinite;
}
@keyframes floatXY{
	0% {
    transform: translate(0px, 0px) rotate(-2deg);
}
25% {
    transform: translate(10px, -15px) rotate(0deg);
}
50% {
    transform: translate(0px, -25px) rotate(2deg);
}
75% {
    transform: translate(-10px, -15px) rotate(0deg);
}
100% {
    transform: translate(0px, 0px) rotate(-2deg);
}
}
.left-image img {
    animation: floatXY 8s ease-in-out infinite;
}
.section-title {
    text-align: center;
    margin-bottom: 2rem;
}
.process-card{
    position:relative;
    text-align:center;
    padding:0 15px;
    transition:0.4s;
}
.process-card:hover{
    transform:translateY(-10px);
}
.process-card .step-number{
    width:70px;
    height:70px;
    border-radius:50%;
    background:var(--text);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:0 auto -35px;
    box-shadow:0 15px 40px rgba(11,52,127,0.15);
    position:relative;
    z-index:5;
}
.process-card .process-box{
    background: #ffffff94;
    border-radius:24px;
    padding:60px 30px 40px;
    box-shadow:0 15px 60px rgba(0,0,0,0.05);
    border:1px solid rgba(11,52,127,0.06);
    height:100%;
    transition:0.4s;
}
.process-card:hover .process-box{
    box-shadow:0 20px 70px rgba(11,52,127,0.08);
}
.process-card .icon-box{
    width:90px;
    height:90px;
    border-radius:20px;
    background: linear-gradient(90deg, var(--text), #00003d52);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    transition:0.4s;
}
.process-card .icon-box i{
    font-size:38px;
    color: #fff;
    transition:0.4s;
}
.process-card:hover .icon-box{
    background: linear-gradient(90deg , #00003d52, var(--text));
}
.process-card:hover .icon-box i{
    color:#fff;
}
.process-box h3 {
    font-size: 25px;
    margin-bottom: 15px;
    font-weight: 400;
}
.process-box p{
    font-size:15px;
    line-height:1.8;
    color:var(--text);
    margin:0;
}
/* Timeline */
.timeline{
    position: relative;
    max-width: 1200px;
    margin: auto;
}
.timeline::before{
    content: "";
    position: absolute;
    width: 4px;
    background: linear-gradient(90deg, var(--text), #00003d52);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}
.timeline-item{
    position: relative;
    width: 50%;
    padding: 20px 50px;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}
.timeline-item.left{
    left: 0;
}
.timeline-item.right{
    left: 50%;
}
section.stage {
    padding: 80px 0;
    background: url(https://taylordodds.com/wp-content/uploads/2026/05/bg-1.png);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}
.stage-card{
    background: #ffffffb8;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
    transition: 0.4s;
    position: relative;
}
.stage-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}
.stage-number{
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(180deg, var(--text), #00003db5);
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 35px;
    z-index: 2;
    box-shadow: 0 12px 30px rgba(29,114,255,0.25);
    animation: pulse 2s infinite;
}
.left .stage-number{
    right: -85px;
}
.right .stage-number{
    left: -85px;
}
.stage-card h3{
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
}
.stage-card ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.stage-card ul li{
    font-size: 15.5px;
    color: var(--text);
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    line-height: 1.8;
}
.stage-card ul li::before{
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--text);
    font-weight: 700;
}
.deliverable{
    margin-top: 25px;
    background: #f5faff;
    padding: 18px 20px;
    border-left: 4px solid var(--text);
    border-radius: 12px;
    font-size: 16px;
    color: var(--text);
    font-weight: 500;
}
.deliverable strong{
    color: var(--text);
}
@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulse{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.06);
    }
    100%{
        transform: scale(1);
    }
}
section.stage {
    padding: 80px 0;
}
/* Diffrence */
.differentiator-section{
    position: relative;
    min-height: 100vh;
    background: url('https://taylordodds.com/wp-content/uploads/2026/05/work-bg-scaled.webp') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    overflow: hidden;
}
.differentiator-section::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background: rgba(8, 20, 35, 0.35);
    z-index:1;
}
section.differentiator-section .heading {
    color: #fff;
    letter-spacing: 3px;
}
.main-wrapper{
    position: relative;
    z-index: 2;
    width: 100%;
}
.glass-box{
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.40);
    border-radius: 30px;
    padding: 50px 35px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.single-card {
    text-align: center;
    border: 1px solid rgba(255,255,255,0.12) !important;
    height: 100%;
    transition: 0.4s;
    padding: 10px;
    border-radius: 20px;
}
.single-card:hover{
    transform: translateY(-8px);
}
.icon-box1 {
    width: 65px;
    height: 65px;
    border: 2px solid var(--background);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: var(--background);
    transition: 0.4s;
}
.single-card:hover .icon-box1{
    background: var(--background);
    color: var(--text);
}
.single-card h4 {
    color: var(--background);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.4;
}
.single-card p{
    color: #f2f2f2;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}
/* Benefits */
    .content-box{
      padding-left:40px;
    }
    .benefit-item{
      display:flex;
      align-items:flex-start;
      margin-bottom: 20px;
      background:rgba(255,255,255,0.60);
      padding:10px 20px;
      border-radius: 10px;
      transition:0.4s ease;
      border-left: 5px solid var(--text);
    }
    .benefit-item:hover{
      transform:translateX(10px);
      background:rgba(255,255,255,0.60);
    }
    .benefit-item h3{
      font-size:1.05rem;
      line-height:1.7;
      margin:0;
      font-weight:500;
    }
/* Get in touch */
section.touch {
    padding: 80px 0;
}
.touch-inner {
    text-align: center;
    background: #00003d26;
    border-radius: 30px;
    padding: 40px 50px;
    border-left: 4px solid var(--text);
    border-right: 4px solid var(--text);
}
/* ================================
  Contact Page Css
================================ */
   .contact-page-box {
    background: #ffffff82;
    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;
    }
.info-card p {
    margin: 0;
    padding: 0;
}
    .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;
    }
/*==============================
      About Page Css 
==============================*/
.about-img{
	animation: floatXY 8s ease-in-out infinite;
}
.about-img-box {
    display: flex;
    justify-content: center;
}
/* Testimonial Section */
.swiper{
    padding-bottom:60px;
}
.testimonial-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    text-align:center;
    transition:0.4s;
}
.testimonial-card:hover{
    transform:translateY(-8px);
}
.quote-icon{
    font-size:35px;
    color: var(--text);
    margin-bottom:20px;
}
.testimonial-card p{
    font-size:15px;
}
.client-img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    margin:0 auto 15px;
}
.client-name{
    font-size:20px;
    font-weight:600;
    margin-bottom:5px;
}
.client-role{
    font-size:14px;
}
.swiper-pagination-bullet{
    width:12px;
    height:12px;
}
.swiper-pagination-bullet-active{
	background: var(--text);
}
.timeline-wrapper{
    position:relative;
    margin:auto;
}
.timeline-wrapper::before{
    content:'';
    position:absolute;
    left:50%;
    top:0;
    width:3px;
    height:100%;
    background:#00003d29;
    transform:translateX(-50%);
}
.timeline-item{
    width:50%;
    position:relative;
    padding:20px 45px;
}
.timeline-item.left{
    left:0;
}
.timeline-item.right{
    left:50%;
}
.timeline-dot{
    position:absolute;
    width:22px;
    height:22px;
    border-radius:50%;
    background:var(--text);
    top:30px;
    right:-11px;
    z-index:10;
}
.timeline-item.right .timeline-dot{
    left:-11px;
}
.timeline-card{
    background:#ffffff9e;
    padding:35px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.4s;
}
.timeline-card:hover{
    transform:translateY(-8px);
}
.timeline-year{
    color:var(--text);
    font-weight:700;
    margin-bottom:10px;
    font-size:18px;
}
.timeline-card h4{
    font-size:26px;
    font-weight:700;
    margin-bottom:18px;
}
.achievement-card{
    background:#ffffff9e;
    padding:35px;
    border-radius:24px;
    height:100%;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
    transition:.4s;
}
.achievement-card:hover{
    transform:translateY(-10px);
}
.achievement-icon {
    width: 75px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    border-radius: 20px;
    background: #00003d1f;
    color: var(--text);
    font-size: 30px;
    margin-bottom: 25px;
}
.achievement-card p{
    color:var(--text);
    line-height:1.9;
    margin:0;
}
.vision-section {
    background: var(--text);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    padding: 80px 0;
}
.vision-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    padding:40px;
    border-radius:28px;
    height:100%;
    backdrop-filter:blur(10px);
    transition:.4s;
}
.vision-card:hover{
    transform:translateY(-10px);
}
.vision-card i{
    font-size:42px;
    color:var(--background);
    margin-bottom:25px;
}
.vision-card h3{
    color:#fff;
    font-weight:700;
    margin-bottom:18px;
}
.vision-card p{
    color:rgba(255,255,255,.75);
    line-height:1.9;
    margin:0;
}
.difference-card{
    position:relative;
    background:#fff;
    border-radius:30px;
    padding:40px;
    height:100%;
    overflow:hidden;
    transition:.45s;
    box-shadow:0 12px 40px rgba(0,0,0,.05);
}

.difference-card:hover{
    transform:translateY(-10px);
}
.card-number{
    position:absolute;
    top:30px;
    right:35px;
    font-size:70px;
    font-weight:800;
    color:#eff6ff;
    line-height:1;
}
.icon-box{
    width:78px;
    height:78px;
    border-radius:24px;
    background: var(--text);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:30px;
    position:relative;
    z-index:2;
}

.icon-box i{
    color:#fff;
    font-size:30px;
}

.difference-card h3{
    font-size:30px;
    font-weight:700;
     color:var(--text);
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

.difference-card p{
    color:var(--text);
    line-height:1.9;
    margin:0;
    position:relative;
    z-index:2;
}
/*=======================
     Service Page 
========================*/
.approach-section .timeline {
 position: relative;
 padding-left: 2rem;
}
.approach-section .timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
  border-radius: 2px;
}
.approach-section .step-card {
  position: relative;
  background: #ffffff69;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;   
}
.approach-section .step-card::before {
  content: '';
  position: absolute;
            top: 2.5rem;
            left: -2.7rem;
            width: 20px;
            height: 20px;
            background-color: var(--text);
            border-radius: 50%;
            z-index: 1;
        }
        .approach-section .step-header {
            display: flex;
            align-items: baseline;
            margin-bottom: 1rem;
        }
       .approach-section .step-number {
           
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-right: 1rem;
        }
       .approach-section .step-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 0;
        }
      .approach-section  .step-description {
            line-height: 1.6;
            margin: 0;
        }
       .approach-section .driver-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }
       .approach-section .tag {
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-weight: 500;
            border: 1px solid rgba(0, 86, 179, 0.2);
        }
.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    background: #ffffffb8;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}
.custom-accordion .accordion-button {
    padding: 15px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text) !important;
    background: #fff !important;
    box-shadow: none !important;
    border: none;
    display: flex;
    align-items: center;
    gap: 20px;
}
.custom-accordion .accordion-button:not(.collapsed){
    background:#fff;
    color:#2563eb;
}
.custom-accordion .accordion-button::after{
    display:none;
}
.faq-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 8px;
    background: var(--text);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.faq-plus {
    margin-left: auto;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #eef2ff;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s ease;
}
.accordion-button:not(.collapsed) .faq-plus {
    transform: rotate(45deg);
    background: var(--text);
    color: #fff;
}
.custom-accordion .accordion-body {
    padding: 0px 30px 10px;
}
.custom-accordion .accordion-body p{
    color:#64748b;
    font-size:16px;
    line-height:1.9;
    margin:0;
}
.accordion-header button{
	font-size: 20px;
}
.audience-card{
    background:#fff;
    border-radius:18px;
    padding:20px;
    position:relative;
    overflow:hidden;
    transition:0.4s ease;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
	height: 100%;
}

.audience-card:hover{
    transform:translateY(-10px);
}

.audience-card::before{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#7c3aed);
    top:-60px;
    right:-60px;
    opacity:0.08;
}

.card-number{
    font-size:52px;
    font-weight:800;
    color:#e2e8f0;
    line-height:1;
    margin-bottom:16px;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    background: linear-gradient(90deg, var(--text), #00003d52);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 22px;
}
.audience-card h5{
    font-size:18px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:0;
    line-height:1.5;
}
/*=============================
     Project Page 
================================*/
.approach-card{
    background:#fff;
    border-radius:20px;
    padding:35px 30px;
    height:100%;
    position:relative;
    transition:0.4s;
    border:1px solid #eef3f9;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
    overflow:hidden;
}
.approach-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:0;
    background:var(--primary);
    transition:0.4s;
}
.approach-card:hover::before{
    height:100%;
}
.approach-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}
.approach-card .icon-box{
    width:70px;
    height:70px;
    border-radius:18px;
    background:rgba(13,110,253,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    transition:0.4s;
}
.approach-card .icon-box i{
    font-size:28px;
    color:var(--primary);
}
.approach-card:hover .icon-box{
    background:var(--primary);
}
.approach-card:hover .icon-box i{
    color:#fff;
}
.approach-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:var(--dark);
}
.approach-card p{
    color:var(--text);
    line-height:1.8;
    margin:0;
    font-size:15px;
}
.bottom-text{
    text-align:center;
    margin-top:40px;
    padding:35px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
    border:1px solid #eef3f9;
}
.bottom-text p{
    margin:0;
    font-size:18px;
    font-weight:500;
    color:var(--dark);
    line-height:1.8;
}
.highlight{
    color:var(--primary);
    font-weight:700;
}
.mobile-menu-header a {
    text-decoration: none;
}
.mobile-menu-header a h2.site-title.mb-0 {
    font-size: 22px !important;
}
/* Responsive */
@media(max-width: 1200px){
	
}
@media(max-width: 1024px){
	.hero-left h1{
		font-size: 2.5rem;
	}
	.heading {
		font-size: 30px;
		padding-bottom: 10px;
	}
}
@media(max-width: 991px){
	 .section-title h2{
        font-size: 42px;
    }
	.timeline-dot{
		display: none;
	}
	.timeline-wrapper::before{
		display: none;
	}
    .single-card{
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        padding: 30px 15px;
    }
    .single-card:last-child{
        border-bottom: none;
    }
	 .timeline::before{
        display: none;
    }
    .timeline-item{
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        left: 0 !important;
    }
    .stage-number{
       display: none;
    }
    .section-title h2{
        font-size: 32px;
    }
    .stage-card h3{
        font-size: 24px;
    }
	footer .social-icons{
		margin-bottom: 1rem;
	}
	.approach-section .step-card::before{
		display: none;
	}
	.approach-section .timeline{
		padding-left: 0;
	}
}
@media(max-width: 767px){
	section {
		padding: 40px 0 0;
	}
	.differentiator-section{
		padding: 40px 0;
	}
	.vision-section{
		padding: 40px 0;
		margin-top: 40px;
	}
	.process-section {
		padding: 40px 0;
		margin-top: 40px;
	}
	section.stage {
		padding: 40px 0;
	}
	section.touch {
		padding: 40px 0;
	}
	.difference-card{
		padding: 20px;
		border-radius: 15px;
	}
	.icon-box {
		width: 59px;
		height: 60px;
		border-radius: 10px;
		margin-bottom: 20px;
		position: relative;
	}
	.difference-card h3{
		font-size: 22px;
	}
}
@media(max-width: 667px){
	.hero-left h1 {
		font-size: 2rem;
	}
	.hero-left-content h4{
		width: 100%;
	}
	.touch-inner{
		padding: 20px 10px;
	}
}
@media(max-width: 568px){
	.content-box{
		padding-left: 0;
	}
	.touch-inner{
		padding: 25px 10px;
	}
	.contact-page-box{
		padding: 25px;
	}
}
@media(max-width: 479px){
	.touch-inner{
		padding: 20px 10px;
	}
	.heading{
		font-size: 25px;
	}
	.timeline-item {
		padding-left: 0;
		padding-right: 0;
	}
	.vision-card,.achievement-card{
		padding: 20px;
	}
	.approach-section .step-header{
		flex-direction: column;
	}
	.approach-section .step-card{
		padding: 20px;
		margin-bottom: 1rem;
	}
	.info-card{
		flex-direction: column;
		gap: 10px;
	}
}
@media(max-width: 414px){
	
}
@media(max-width: 375px){
	
}
@media(max-width: 360px){
	
}
@media(max-width: 325px){
	
}