/* ====== Top Header ====== */

.top-header {
  background: linear-gradient(135deg, #0d6efd, #161656);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
}
.tour-logo {
    height: 75px;
    width: 86px;
}
.top-header i {
     color: #fff;
    }

.social-circle {
  color: #fff;
  margin-left: 10px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  text-decoration: none !important;
  border-radius: 50%;
  transition: 0.3s;
}
.text-primary{
  color: #014382 !important;
}
.social-circle:hover {
  background: #fff !important;
  color: #033cc1 !important;
  transform: scale(1.1);
}
.tagline {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.tagline i {
  margin: 0 6px;
  font-size: 14px;
}
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

body {
  padding-top: 80px;
}



/* ===== Main Header ===== */
.main-header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: relative;
  z-index: 100;
}

.logo h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}
.logo span {
  color: #033cc1;
}

.menu li {
  position: relative;
  margin: 0 15px;
}
.menu li a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}
.menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #033cc1;
  transition: width 0.3s ease;
}
.menu li a:hover::after,
.menu li a.active::after {
  width: 100%;
}
.menu li a:hover,
.menu li a.active {
  color: #033cc1;
}
.menu li {
  margin: 0 15px;
}



.dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  list-style: none;
  padding: 10px 0;
  top: 120%;
  left: 0;
  border-radius: 6px;
  min-width: 206px;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  color: #000;
  font-weight: 500;
}
.dropdown-menu li a:hover {
 
  color: #033cc1;
}

.btn-primary {
  background: #033cc1;
  color: #ffffff;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-primary:hover {
  background: #ffffff;
  color: #033cc1;
}
.btn-secondary {
    background: #ffffff;
    color: #033cc1;
    border: 2px solid #033cc1;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-secondary:hover {
    background: #033cc1;
    color: #fff;
    border-color: #033cc1;
}
html, body {
  width: 100%;
  /* overflow-x: hidden;  */
}


body.menu-open {
  overflow: hidden;
  height: 100vh;
}


@media (max-width: 768px) {
  .container {
    max-width: 100%;
    overflow: hidden;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  padding: 20px;
  box-shadow: 3px 0 10px rgba(0,0,0,0.2);
  transition: left 0.4s ease;
  z-index: 9999;
  overflow-y: auto;
}
.mobile-menu.active {
  left: 0;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu .close-btn {
  text-align: right;
  font-size: 25px;
  cursor: pointer;
  color: #f70505;
}
.mobile-menu ul li {
  margin-bottom: 15px;
}
.mobile-menu a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  display: block;
}
.mobile-menu a:hover {
  color: #033cc1;
}

.mobile-menu .dropdown-sub {
  display: none;
  padding-left: 20px;
}
.mobile-menu .dropdown-sub.show {
  display: block;
}
.mobile-menu .dropdown > a i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.mobile-menu .dropdown.open > a i {
  transform: rotate(180deg);
}

.mobile-toggle {
  font-size: 25px;
  color: #033cc1;
  cursor: pointer;
  z-index: 10000;
  position: relative;
}
.logo img{
    height: 62px;
    width: 120px;
}

/* HERO SECTION */
.hero-section {
    background: url(../images/hero-banner2.jpg);
    background-size: cover;
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    height: 90vh;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
}

.highlight-text {
    color: #ffffff;
}

.hero-subtitle {
    font-size: 17px;
    margin-top: 15px;
    opacity: 0.85;
}

.hero-buttons {
    margin-top: 25px;
}

.hero-btn-primary {
    background: #ffffff;
    color: #033cc1;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 35px;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn-primary:hover {
    border: 2px solid #fff;
    color: #ffffff;
}

.hero-btn-outline {
    margin-left: 10px;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 35px;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn-outline:hover {
    background: #fff;
    color: #033cc1;
}

.hero-image-wrapper {
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.hero-image {
    width: 100%;
    max-width: 450px;
}
.floating-icon {
    position: absolute;
    font-size: 30px;
    color: #ffffff40;
    animation: floatingIcons 4s ease-in-out infinite;
}

.icon1 { top: 15%; left: 10%; }
.icon2 { bottom: 20%; right: 12%; }
.icon3 { top: 50%; right: 5%; }

@keyframes floatingIcons {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
        text-align: center;
    }
    .hero-subtitle {
        text-align: center;
        margin-bottom: 15px;
    }
    .hero-buttons {
        text-align: center;
    }
    .hero-image {
        max-width: 300px;
    }
}



/* ABOUT SECTION */
.about-section {
    background: url(../images/bg.jpg);
    background-size: cover;
    position: relative;
}

.about-img-wrapper {
    position: relative;
    animation: fadeInLeft 1.2s ease;
}

.about-img {
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.about-floating-card {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: #033cc1;
    color: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    animation: floatUpDown 3s infinite ease-in-out;
}

.about-floating-card h4 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.about-floating-card p {
    font-size: 15px;
    margin: 0;
}
.about-content {
    animation: fadeInRight 1.2s ease;
}

.about-tag {
    color: #033cc1;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 15px;
}

.about-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

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

.about-list li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-list li i {
    color: #033cc1;
    font-size: 18px;
}

@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-40px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(40px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes floatUpDown {
    0%  { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100%{ transform: translateY(0); }
}

.half-circle {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.top-right {
  top: -70px;
  right: -70px;
}

.bottom-left {
  bottom: -70px;
  left: -70px;
}

@media (max-width: 576px) {
  .half-circle {
    width: 120px;
    height: 120px;
  }
}

/* SERVICE SECTION */
.service-section {
  background: #f3f6ff;
}

.section-subtitle {
  color: #0d6efd !important;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

.section-desc {
  color: #555;
  font-size: 16px;
}

.service-box {
  background: #f8faff;
  padding: 30px;
  text-align: center;
  border-radius: 15px;
  transition: .3s ease-in-out;
  border-top: 4px solid #0d6efd;
  position: relative;
  z-index: 2;
  min-height: 260px;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: rgba(13,110,253,0.1);
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: 28px;
  color: #0d6efd;
}

.service-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 15px;
  color: #555;
}


/* WHY CHOOSE US SECTION  */

.whychoose-section {
    background: url(../images/bg2.jpg);
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.whychoose-subtitle {
    color: #0d6efd;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.whychoose-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-top: 8px;
}

.whychoose-desc {
    font-size: 16px;
    color: #555;
    margin: 15px 0 20px;
}


.whychoose-mini-box {
    background: #ffffff;
    border: 1px solid #e4ecf7;
    padding: 15px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    border-left: 4px solid #0d6efd;
    transition: 0.3s;
}

.whychoose-mini-box:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
    transform: translateY(-4px);
}

.icon-box {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(13,110,253,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.icon-box i {
    font-size: 22px;
    color: #0d6efd;
}

.text-box h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

.text-box p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.whychoose-img-wrapper {
    animation: floatUpDown 3s ease-in-out infinite;
}

.whychoose-img {
    max-width: 520px;
    width: 100%;
}

@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}


/* COUNTER SECTION  */

.counter-section {
    background: url(../images/BG3.jpg);
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}

.counter-box {
    padding: 20px;
}

.counter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-icon i {
    font-size: 32px;
    color: #0d6efd;
}

.counter-box h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter-box p {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .counter-box h2 {
        font-size: 36px;
    }
    .counter-box p {
        font-size: 16px;
    }
}

/* Work Process Section  */

.process-center {
  background: url(../images/bg4.jpg);
  background-size: cover;
  padding: 60px 0;
  text-align: center;
}

.step-wrapper {
  position: relative;
  margin-bottom: 10px;
}

.circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto; 
}

.step-wrapper h4 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 15px;
}

.step-wrapper p {
  max-width: 500px;
  margin: 10px auto 0;
  color: #555;
  font-size: 15px;
}

.dotted-line {
  width: 2px;
  height: 60px;
  border-left: 3px dotted #007bff;
  margin: 20px auto 0;
  position: relative;
}

.dotted-line::after {
  position: absolute;
  bottom: -20px;
  left: -7px;
  font-size: 20px;
  color: #007bff;
}

.step-wrapper:last-child .dotted-line {
  display: none;
}



/* Product Section  */

.products-section {
  padding: 70px 0;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #033cc1;
}

.section-title p {
  color: #555;
  font-size: 15px;
}

.product-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.product-img img {
  width: 100%;
  max-width: 320px;
  margin-bottom: 15px;
}

.product-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 15px;
  color: #555;
}

.product-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 22px;
  border-radius: 30px;
  background: #033cc1;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.product-btn:hover {
  background: #022b8c;
}

/* Contact Section  */

.contact-section{
  background: #f3f6ff;
}

.contact-info .icon-box {
  width: 45px;
  height: 45px;
  background: #0d6efd;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 18px;
}

.contact-section input,
.contact-section textarea {
  border-radius: 8px;
  padding: 12px;
}

.contact-section button {
  border-radius: 8px;
  font-weight: 600;
}
.icons-box {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.icons-box i {
    font-size: 22px;
    color: #ffffff;
}

/* footer banner  */

.footer-banner {
    background: #eff3ff;
    padding: 45px 20px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.footer-banner-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.footer-banner-text {
    font-size: 16px;
    margin-top: 8px;
    opacity: 0.9;
    color: #000;
}

.footer-btn {
    background: #fff;
    color: #0d6efd;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 15px;
    transition: 0.3s ease;
}

.footer-btn:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

.footer-banner-image {
    width: 90%;
    max-width: 370px;
    height: 260px;
    animation: floatUpDown 3s ease-in-out infinite;
}


.footer-banner * {
    position: relative;
    text-decoration: none;
    z-index: 2;
}

.footer-bottom {
    border-top: 1px solid #878787;
}

@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}



/* footer section  */

.site-footer {
    background: url(../images/footer-banner.jpg);
    color: #ffffff;
    font-size: 14px;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.site-footer a:hover {
    color: #0d6efd;
}

.footer-logo {
    width: 140px;
    height: auto;
    background: #fff;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.footer-links li {
    margin-bottom: 10px;
    color: #fff;
}



/* Scroll to top  */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0d6efd;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: floatUpDown 2.5s ease-in-out infinite;
    opacity: 0;
    visibility: hidden;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    background: #ffffff;
    color: #0d6efd;
}

@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}


/* LOADER  */

#loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
.loader-inner {
    display: flex;
    gap: 15px;
}

.loader-inner .circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #101cbb;
    animation: bounce 0.6s infinite alternate;
}

.loader-inner .circle1 {
    animation-delay: 0s;
}
.loader-inner .circle2 {
    animation-delay: 0.2s;
}
.loader-inner .circle3 {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }
}


/* Breadcrumb section  */
.breadcrumb-section {
  position: relative;
  padding: 100px 0;
  background: url(../images/breadcrumb-bg.jpg);
  overflow: hidden;
  z-index: 1;
}

/* ----- Center Floating Particle Animation ----- */
.center-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  animation: pulse 4s infinite ease-in-out;
  filter: blur(25px);
  z-index: 0;
}
.breadcrumb-item+.breadcrumb-item::before {
  color: #fff !important;
}
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
}

/* ----- Bubbles Animation ----- */
.bubble {
  position: absolute;
  width: 130px;
  height: 130px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.bubble.small {
  width: 60px;
  height: 60px;
  animation-duration: 8s;
}

.bubble-left { left: -40px; top: 40%; }
.bubble-left.small { left: 30px; top: 70%; }

.bubble-right { right: -40px; top: 30%; }
.bubble-right.small { right: 20px; top: 60%; }

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(10px); }
}

/* Text */
.breadcrumb-item a {
  color: #e9ecef;
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
  .breadcrumb-section {
    padding: 100px 0;
  }
  .center-animation {
    width: 160px;
    height: 160px;
    filter: blur(18px);
  }
  .bubble {
    width: 80px;
    height: 80px;
  }
  .bubble.small {
    width: 40px;
    height: 40px;
  }
}
