/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins";
  color: #000000;;
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  color: #333333;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald" !important;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #bf0f08;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #d30b01;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #ffffff;
  /*box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);*/
 /* border-top: 2px solid #d30b01;*/
 /* border-bottom: 2px solid #d30b01;*/
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #384046;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #384046;
  text-decoration: none;
}

#header .logo img {
  max-height: 80px;
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  margin: 0 20px;
}

.header-social-links a {
  color: #9ba6af;
  padding-left: 8px;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
}

.header-social-links a i {
  line-height: 0;
}

.header-social-links a:hover {
  color: #3498db;
}

@media (max-width: 768px) {
  .header-social-links {
    margin: 0 5px 0 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
 #header {
background: #ffffff;
}
.navbar a,.navbar a:focus {
color: #737373;
}
.navbar-drop a {
color: #ffffff;
}
.header-scrolled {
background: #ffffff !important;
}
.bi::before, [class^="bi-"]::before, [class*=" bi-"]::before { 
font-size: 25px;
color: #ffffff;
}
.mobile-nav-toggle::before {
color: #333333;
}
@media  only screen and (max-width: 768px) {
.navbar-drop a {
color: #737373;
}
} 

.navbar {
  padding: 0;
  margin-bottom: 0px !important;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 8px 10px;
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  white-space: nowrap;
  transition: 0.3s;
}


/* Navbar Boxicons */
#navbar ul li a i {
  color: #0e4677; /* default blue */
  margin-right: 5px;
  transition: color 0.3s;
  font-size: 18px
}

/* Hover / Active */
#navbar ul li a:hover i,
#navbar ul li a.active i {
  color: #3498db; /* lighter blue on hover/active */
}


.navbar-drop a {
  color: #ffffff;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  /*color: #3498db;*/
  text-decoration: none !important;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a:after{
 /* border-bottom: 2px solid #d30b01;*/
 color: #0e4677;
 font-weight: 700;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #21262a;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #3498db;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.pitchtous{
  color: #ffffff;
  background: #0e4677;
  border: 1px solid #0e4677;
  border-radius: 50px;
  padding: 15px;
  margin-top: 0px;
  font-weight: 600;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #1f1f1f;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed !important;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(33, 38, 42, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #384046;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #0e4677;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #3498db;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.bannheight {
    height: 750px !important; /* fixed height desktop */
    width: 100% !important; 
    object-fit: cover;
}

/* Ensure carousel items fill container */
#visurecarousel .carousel-item {
    height: 750px;
}

/* Carousel images */
#visurecarousel .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Overlay for carousel images */
#visurecarousel .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Captions above overlay */
#visurecarousel .carousel-caption {
    position: absolute;
    z-index: 2;
}

#visurecarousel .visure-caption {
    bottom: 30%;
    text-align: left;
}

#visurecarousel .visure-caption h1 {
    font-size: 55px;
    font-weight: 700;
    color: #fff; /* use white text for visibility */
}

#visurecarousel .visure-caption p {
    font-size: 20px;
    color: #f0f0f0;
    margin-bottom: 20px;
}

#visurecarousel .visure-caption .btn {
    font-weight: 600;
    background-color: #0e4677;
    border: none;
    padding: 12px 25px;
    transition: 0.3s;
}

#visurecarousel .visure-caption .btn:hover {
    background-color: #3498db;
}

/* Vertical Icons */
#visurecarousel .vertical-icons i {
    font-size: 28px;
    margin: 0 10px;
    color: #0e4677;
}

/* ========== RESPONSIVE STYLES ========== */

/* Tablets (max-width: 991px) */
@media (max-width: 991px) {
    .bannheight,
    #visurecarousel .carousel-item {
        height: 550px; /* reduce height */
    }

    #visurecarousel .visure-caption {
        bottom: 20%;
        text-align: center;
    }

    #visurecarousel .visure-caption h1 {
        font-size: 36px;
    }

    #visurecarousel .visure-caption p {
        font-size: 18px;
    }

    #visurecarousel .visure-caption .btn {
        padding: 10px 20px;
        font-size: 15px;
    }
}

/* Mobile devices (max-width: 576px) */
@media (max-width: 576px) {
    .bannheight,
    #visurecarousel .carousel-item {
        height: 400px; /* smaller banner */
    }

    #visurecarousel .visure-caption {
        bottom: 15%;
        text-align: center;
        padding: 0 10px; /* prevent overflow */
    }

    #visurecarousel .visure-caption h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    #visurecarousel .visure-caption p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    #visurecarousel .visure-caption .btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    #visurecarousel .vertical-icons i {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0px 0;
}

.section-bg {
  background-color: #f5f3f5;
}

.section-title {
  text-align: center;
  padding-bottom: 0px;
}

.section-title h2 {
  font-size: 32px;
  /*font-weight: 600;*/
  margin-bottom: 15px;
 /* padding-bottom: 20px;*/
  position: relative;
  color: #58585A;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  /*background: #ddd;*/
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  /*background: #3498db;*/
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# What We Do
--------------------------------------------------------------*/
.what-we-do .icon-box {
  text-align: center;
  padding: 30px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.what-we-do .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #eaf4fb;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.what-we-do .icon-box .icon i {
  color: #3498db;
  font-size: 28px;
}

.what-we-do .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.what-we-do .icon-box h4 a {
  color: #384046;
  transition: ease-in-out 0.3s;
}

.what-we-do .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.what-we-do .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.what-we-do .icon-box:hover h4 a,
.what-we-do .icon-box:hover .icon i {
  color: #3498db;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 60px 0;
}

.about h2 {
  font-weight: 800;
  font-size: 40px;
  color: #0e4677;
  margin-bottom: 15px;
}

.about h4 {
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  color: #555;
  margin-bottom: 25px;
}

.about p {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

.about p.italic-quote {
  font-style: italic;
  color: #a63a3a;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 30px;
}

/* Buttons inside about */
.about .btn {
  background: #0e4677;
  color: #fff;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.about .btn:hover {
  background: #145a96;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

/* Image styling */
.about img {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 100%;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .about h2 {
    font-size: 32px;
  }
  .about h4 {
    font-size: 18px;
  }
  .about p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins";
  color: #384046;
}

.skills .progress .skill .val {
  float: right;
 /* font-style: normal;*/
}

.skills .progress-bar-wrap {
  background: #e8eaec;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #5faee3;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: white;
  padding: 30px 0 40px 0;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: #3498db;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #124364;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Poppins";
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  /*padding: 60px 0;*/
  border-radius: 50%;
  /*background: #000000;*/
  transition: ease-in-out 0.3s;
  margin-bottom: 20px;
  min-height: 140px;
  color: #0e4677;
}

.services .icon-box i {
  float: left;
  color: #ffffff;
  font-size: 40px;
  line-height: 0;
}

.services .icon-box h4 {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
}

.services .icon-box h4 a {
  color: #384046;
  transition: 0.3s;
}

.services .icon-box p {
  /*margin-left: 70px;*/
  /*line-height: 24px;*/
  font-size: 14px;
  padding: 0 25px;
}

.services .icon-box:hover {
  box-shadow: 0px 2px 22px rgba(0, 0, 0, 0.08);
}

.services .icon-box:hover h4 a {
  color: #3498db;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  padding: 60px 0;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 30px 15px 0;
  display: inline-block;
  padding: 12px 30px;
  font-size: 18px;
  line-height: 20px;
  color: #0E0004;
  border-radius: 15px;
  /* text-transform: uppercase; */
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #d30b01;
  color: #fff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  /*box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);*/
  transition: 0.3s;
  text-align: center;
  background: #fff;
  /*border: 1px solid #d30b01;*/
  /*border-radius: 7px;*/
  /*padding: 30px;*/
  /*height: 180px;*/
}

.portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

.portfolio .portfolio-item {
  position: relative;
  /*height: 360px;*/
  overflow: hidden;
  margin-bottom: 20px;
}

.portfolio .portfolio-item figure {
  background: #000;
  overflow: hidden;
  height: 240px;
  position: relative;
  border-radius: 4px 4px 0 0;
  margin: 0;
}

.portfolio .portfolio-item figure:hover img {
  opacity: 0.4;
  transition: 0.4s;
}

.portfolio .portfolio-item figure .link-preview,
.portfolio .portfolio-item figure .link-details {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  line-height: 0;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.2s linear;
  overflow: hidden;
  font-size: 20px;
}

.portfolio .portfolio-item figure .link-preview i,
.portfolio .portfolio-item figure .link-details i {
  color: #384046;
  line-height: 0;
}

.portfolio .portfolio-item figure .link-preview:hover,
.portfolio .portfolio-item figure .link-details:hover {
  background: #3498db;
}

.portfolio .portfolio-item figure .link-preview:hover i,
.portfolio .portfolio-item figure .link-details:hover i {
  color: #fff;
}

.portfolio .portfolio-item figure .link-preview {
  left: calc(50% - 38px);
  top: calc(50% - 18px);
}

.portfolio .portfolio-item figure .link-details {
  right: calc(50% - 38px);
  top: calc(50% - 18px);
}

.portfolio .portfolio-item figure:hover .link-preview {
  opacity: 1;
  left: calc(50% - 44px);
}

.portfolio .portfolio-item figure:hover .link-details {
  opacity: 1;
  right: calc(50% - 44px);
}

.portfolio .portfolio-item .portfolio-info {
 /* background: #fff;
  text-align: center;*/
  padding: 30px 0;
  /*height: 90px;
  border-radius: 0 0 3px 3px;*/
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info p a {
  color: #ffffff;
}

.portfolio .portfolio-item .portfolio-info p a:hover {
  color: #e51826;
}

.portfolio .portfolio-item .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  /*text-transform: uppercase;*/
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 0;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3498db;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3498db;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(56, 64, 70, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 15px 0;
  margin: 20px 5px;
  /*text-align: center;*/
  /*min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);*/
  background: #d30b01;
  border: 1px solid #d30b01;
  border-radius: 10px;
  transition: transform 0.8s;
  transition: ease-in-out 0.8s;
}
.testimonials .testimonial-item p{
   transition: ease-in-out 0.8s !important;
   transition: all 1s ease-in;
}
.testimonials .testimonial-item:hover {
   padding: 0;
   border: 0;
   margin-top: 35px;
   transition: ease-in-out 0.8s;
}
.testimonials .testimonial-item:hover p {
   transition: ease-in-out 0.8s !important;
   padding: 15px !important;
   max-height: 100% !important;
   opacity: 1 !important;

}
.testimonials .testimonial-item .testimonial-img {
  width: 100%;
  /*border-radius: 50%;
  border: 4px solid #fff;*/
  margin: 0 auto;
  border-radius: 10px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #e1f0fa;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  /*font-style: italic;*/
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3498db;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3498db;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  background: #fff;
}

.team .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  /*font-style: italic;*/
  display: block;
  font-size: 13px;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  /*font-style: italic;*/
  color: #aaaaaa;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #919191;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #3498db;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
  padding: 30px;
  background: #fff;
  border-radius: 4px;
}

.contact .info i {
  font-size: 20px;
  color: #3498db;
  float: left;
  width: 44px;
  height: 44px;
  background: #eaf4fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #384046;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #65747f;
}

.contact .info:hover i {
  background: #3498db;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 4px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #3498db;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #5faee3;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 40px 0;
  margin-top: 70px;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #0E0004;;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}


.blog-item img {
  height: 200px;
  object-fit: cover;
}



/* Make sure the content sits above the overlay */
footer section, 
footer .copyright-wrapper {
  position: relative;
  z-index: 1;
}

.team-card {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.team-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.team-img img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}
.team-card:hover img {
  transform: scale(1.05);
}
.team-img .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(14,70,119,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.team-card:hover .overlay {
  opacity: 1;
}
.team-img .overlay a {
  color: #fff;
  font-size: 28px;
  background: #0e4677;
  padding: 12px 14px;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.team-img .overlay a:hover {
  background: #083155;
}
.team-card h3 {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 600;
}
.team-card p {
  margin: 5px 0 0;
  font-size: 15px;
  color: #666;
}

#last{
background: #23606b12;
padding-top: 4%;
}

#missionvision {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

#missionvision .container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 100px 50px;
    padding: 90px 0px 40px;
}

#missionvision .container .card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 455px;
    max-width: 100%;
    height: 330px;
    background: white;
    border-radius: 20px;
    transition: 0.5s;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

#missionvision .container .card:hover {
    height: 400px;
}

#missionvision .container .card .img-box {
    position: absolute;
    top: 20px;
    left: 25px;
    width: 400px;
    height: 250px;
    background: #333;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.5s;
}

#missionvision .container .card:hover .img-box {
    top: -100px;
    scale: 0.75;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

#missionvision .container .card .img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#missionvision .container .card .content {
    position: absolute;
    top: 280px;
    width: 100%;
    height: 35px;
    padding: 0 30px;
    text-align: center;
    overflow: hidden;
    transition: 0.5s;
}

#missionvision .container .card:hover .content {
    top: 130px;
    height: 250px;
}

#missionvision .container .card .content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr);
}

#missionvision .container .card .content p {
    color: #333;
}

#missionvision .container .card .content a {
    position: relative;
    top: 15px;
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    background: var(--clr);
    color: white;
    font-weight: 500;
}

#missionvision .container .card .content a:hover {
    opacity: 0.8;
}

@media (min-width: 767px) and (max-width: 1199px){

    #missionvision .container .card {
        width: 290px;
        height: 265px;
        border-radius: 15px;
    }


    #missionvision .container{
    gap: 100px 29px;
    }

    .about-content h2 {
      font-size: 45px;
    }

    
#missionvision .container .card .content {
    position: absolute;
    top: 208px;
    width: 100%;
    height: 35px;
    padding: 0 30px;
    text-align: center;
    overflow: hidden;
    transition: 0.5s;
}

    #missionvision .container .card .img-box {
        width: 240px;
        height: 175px;
        border-radius: 10px;
    }

    #missionvision .container .card .content p {
        font-size: 0.8rem;
    }

    #missionvision .container .card .content a {
        font-size: 0.9rem;
    }
}


@media (max-width: 480px) {
    #missionvision .container {
      gap: 100px 0px;
    }

        #missionvision .container .card {
        width: 310px;
        height: 250px;
        border-radius: 15px;
    }

        #missionvision .container .card .img-box {
        width: 260px;
        height: 175px;
        border-radius: 10px;
    }

    #missionvision .container .card .content p {
        font-size: 0.8rem;
    }

    #missionvision .container .card .content a {
        font-size: 0.9rem;
    }

    #missionvision .container .card .content {
      top: 205px;
    }

    #missionvision .container .card:hover{
      height: 280px;
    }

    #missionvision .container .card:hover .content {
      top: 65px;
    }

    .about-content h2 {
    font-size: 35px !important;}

    .about-content h2 span {
    color: #0e4677;
    font-weight: 700;
    font-size: 50px !important;
}

.tp-project-3-thumb:first-child{
      margin-top: 8% !important;
}
}


.about-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 40px 20px;
  background: url('/assets/images/bg-offwhite2.jpg') no-repeat center center;
  background-size: cover;   /* ensures full cover */
  color: #222;
  position: relative;
}
.about-content {
  max-width: 55%;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 15px;
}

.about-content h2 span {
  color: #0e4677; /* brand color instead of red */
    font-weight: 700;
    font-size: 52px
}

.about-content p {
  font-size: 20px;
  line-height: 1.6;
  color: #444;
}

.about-graphic {
  flex: 1;
  text-align: center;
}

.about-graphic img {
  max-width: 320px;
  filter: hue-rotate(180deg); /* optional tint */
}

@media(max-width: 768px){
  .about-hero {
  display: block;
}

.about-content {
  max-width: 100%;
}
}


#visioneryy h2 { font-size:2.6rem; }
               #visioneryy h4 { font-size:1.4rem; }
               #visioneryy p { line-height:1.8; font-size:1rem; }
               .hover-zoom { transition: transform 0.4s ease, box-shadow 0.4s ease; }
               .hover-zoom:hover { transform: scale(1.05); box-shadow:0 15px 30px rgba(0,0,0,0.15); }
               .offer-card {
               background: #fff;
               transition: transform 0.3s ease, box-shadow 0.3s ease;
               }
               .offer-card:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(0,0,0,0.1); }


 .about-hero {
         display: flex;
         align-items: center;
         justify-content: space-between;
         padding: 120px 40px 45px;
         background: url(/assets/images/bg-offwhite2.jpg) no-repeat center center;
         background-size: cover;
         color: #222;
         position: relative;
         }
         .about-graphic img {
         max-width: 400px;
         }
         .viimg{
         max-width: 700px;
         }
         @media(max-width: 768px){
         .viimg{
         max-width: 100% !important;
         }
         }


/* --- DRAMATIC HOVER ANIMATION --- */
.vertical-item:hover {
/* Pronounced 3D lift, scale, and rotation */
transform: translateY(-10px) scale(1.08) perspective(1000px) rotateX(3deg) rotateY(3deg); 
/* Vivid blue glow */
box-shadow: 0 10px 40px rgba(14, 70, 119, 0.8), 
0 0 20px rgba(14, 70, 119, 0.5); 
background-color: #1e242b;
border-color: var(--primary-color); 
}
.vertical-item:hover .icon-box {
color: var(--text-light);
transform: scale(1.15); 
}
.vertical-item:hover .description {
height: auto;
opacity: 1;
visibility: visible;
padding-bottom: 0;
margin-top: 15px;
}
/* --- Upcoming Events Section Styling --- */
.events-section {
padding: 80px 20px;
}
.event-highlight-box {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 900px;
margin: 0 auto;
padding: 30px 40px;
background: var(--bg-card);
border: 1px solid var(--border-grey);
border-radius: 12px;
opacity: 0;
transform: translateY(20px);
/* Pulsing box shadow and fade-up */
box-shadow: 0 0 10px rgba(14, 70, 119, 0.2);
animation: fadeUp 1s 0.8s forwards, pulseShadow 3s infinite alternate ease-in-out 1.8s;
}
@media (max-width: 768px) {
.event-highlight-box {
flex-direction: column;
text-align: left;
}
}
.event-tag {
background-color: var(--primary-color); 
color: var(--text-light);
/* ... existing styles ... */
}
.event-meta i {
color: var(--primary-color);
}
/* --- Registration Button Animation (The "Jiggle") --- */
.register-button {
display: inline-flex;
align-items: center;
justify-content: center;
text-decoration: none;
background-color: var(--primary-color); 
color: var(--text-light);
font-weight: bold;
padding: 12px 25px;
border-radius: 8px;
font-size: 1.1rem;
transition: background-color 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease;
/* Continuous Jiggle Effect */
animation: bounceEffect 4s infinite 2s; 
}
.register-button:hover {
animation: none; 
background-color: var(--primary-light); 
transform: translateY(-3px) scale(1.03);
box-shadow: 0 0 25px rgba(14, 70, 119, 1), 
0 0 15px rgba(14, 70, 119, 0.7);
}
/* --- KEYFRAME ANIMATIONS --- */
/* 1. Subtle, continuous background shifting */
@keyframes backgroundShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
/* 2. Initial Vertical Item Load (3D Pop-in) */
@keyframes popIn {
0% {
opacity: 0;
transform: translateY(30px) scale(0.9) perspective(1000px) rotateX(-5deg);
}
100% {
opacity: 1;
transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
}
}
/* 3. Soft Pulsing Shadow for Event Box */
@keyframes pulseShadow {
0% { box-shadow: 0 0 10px rgba(14, 70, 119, 0.2); }
100% { box-shadow: 0 0 20px rgba(14, 70, 119, 0.4); }
}
/* 4. Animated Divider Glow */
@keyframes pulseGlow {
0% { opacity: 0.5; transform: scaleX(1); }
50% { opacity: 1; transform: scaleX(1.2); }
100% { opacity: 0.5; transform: scaleX(1); }
}
/* 5. CTA Button Bounce/Jiggle */
@keyframes bounceEffect {
0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
40% { transform: translateY(-8px); } /* Lift up slightly */
60% { transform: translateY(-4px); } /* Second, smaller lift */
}
/* Initial section load */
@keyframes fadeUp {
to {
opacity: 1;
transform: translateY(0);
}
}

/* --- Global Variables (for consistent branding) --- */
:root {
--primary-color: #0e4677; /* Your Blue Accent */
--primary-light: #1765ac; 
--text-dark: #333;
--text-light: #f0f6fc;
--slider-bg: #f5f5f5; /* Light background for container */
--card-bg: #ffffff; /* White background for the main card */
--button-bg: var(--primary-color);
}
/* 1. Isolation Container and Base Styles */
#eventSliderContainer {
position: relative;
z-index: 100; /* Ensure it's above other elements */
margin: 50px auto; /* Adjust margin as needed, removed absolute positioning */
width: 950px;
height: 500px;
background: var(--slider-bg);
border-radius: 20px;
}
#eventSliderContainer .slide {
border-radius: 20px;
}
/* --- Company background for entire card --- */
#eventSliderContainer .slide .item {
background-color: #f0f4f8; /* Light company-themed background */
background-image: none; /* Remove original image from the card itself */
position: absolute;
top: 50%;
transform: translate(0, -50%);
width: 200px;
height: 250px;
border-radius: 20px;
box-shadow: 0 10px 20px #505050;
border: 1px solid #ddd;
display: inline-block;
transition: all 0.5s;
}
/* Keep small preview images if needed */
#eventSliderContainer .slide .item .small-preview {
background-image: url('assets/images/events/1.webp'); /* Event image as small thumbnail */
background-size: cover;
background-position: center;
width: 100%;
height: 120px; /* adjust height */
border-radius: 20px 20px 20px 20px;
margin-bottom: 10px;
}
/* Ensure content appears above overlay */
#eventSliderContainer .item .content {
position: absolute;
top: 50%;
left: 100px;
width: 450px;
text-align: left;
transform: translate(0, -50%);
font-family: system-ui;
display: none;
z-index: 2; /* Above overlay */
}
/* 3. Positioning Logic (Must remain exactly the same as original JS slider) */
#eventSliderContainer .slide .item:nth-child(1),
#eventSliderContainer .slide .item:nth-child(2) {
top: 0;
left: 0;
transform: translate(0, 0);
border-radius: 20px;
width: 100%;
height: 100%;
transition: all .5s;
}
#eventSliderContainer .slide .item:nth-child(3) {
left: 60%;
}
#eventSliderContainer .slide .item:nth-child(4) {
left: calc(50% + 320px);
}
#eventSliderContainer .slide .item:nth-child(5) {
left: calc(50% + 440px);
}
#eventSliderContainer .slide .item:nth-child(n + 6) {
left: calc(50% + 660px);
opacity: 0;
}
#eventSliderContainer .slide .item:nth-child(2) .content {
display: block;
}
#eventSliderContainer .content .name {
font-size: 3rem;
text-transform: uppercase;
font-weight: bold;
color: var(--primary-color);
opacity: 0;
animation: animate 1s ease-in-out 1 forwards;
}
#eventSliderContainer .content .des {
margin-top: 10px;
margin-bottom: 20px;
font-size: 1.1rem;
opacity: 0;
animation: animate 1s ease-in-out 0.3s 1 forwards;
}
/* Event Details Meta */
#eventSliderContainer .event-meta {
margin-top: 15px;
font-size: 1rem;
line-height: 1.6;
}
#eventSliderContainer .event-meta i {
color: var(--primary-color);
margin-right: 5px;
}
/* Registration Button */
#eventSliderContainer .content button {
padding: 10px 25px;
border: none;
cursor: pointer;
opacity: 0;
border-radius: 8px;
background-color: var(--button-bg);
color: var(--text-light);
font-weight: bold;
transition: all 0.5s;
animation: animate 1s ease-in-out 0.6s 1 forwards;
}
#eventSliderContainer .content button:hover {
background-color: var(--primary-light);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* 5. Animation Keyframes (Adjusted for non-blur content) */
@keyframes animate {
from {
opacity: 0;
transform: translate(0, 50px); /* Less vertical movement */
filter: blur(5px);
}
to {
opacity: 1;
transform: translate(0);
filter: blur(0);
}
}
/* 6. Button Styles */
#eventSliderContainer .button {
display: flex;
flex-direction: row;
gap: 20px;
justify-content: center;
align-items: center;
position: absolute;
bottom: 20px;
width: 100%;
}
#eventSliderContainer .button button {
width: 40px;
height: 35px;
border-radius: 8px;
border: 2px solid var(--primary-color);
cursor: pointer;
background: rgba(255, 255, 255, 0.9);
color: var(--primary-color);
font-size: 1.2rem;
transition: 0.3s;
}
#eventSliderContainer .button button:hover {
background: var(--primary-color);
color: var(--text-light);
transform: scale(1.1);
}
/* 7. Mobile Responsiveness */
@media (max-width: 900px) {
#eventSliderContainer {
width: 90vw; /* Take up 90% of viewport width */
height: 50vh; /* Allow height to be more flexible */
}
#eventSliderContainer .item .content {
left: 5%;
width: 95%; /* Content takes up most of the slide */
padding: 10px;
}
#eventSliderContainer .content .name {
font-size: 1.6rem; /* Smaller title */
}
#eventSliderContainer .content .des, 
#eventSliderContainer .event-meta {
font-size: 0.9rem; /* Smaller text */
width: 100%;
}
/* Readjust positioning for smaller screen */
#eventSliderContainer .slide .item:nth-child(3) {
left: 55%; /* Move closer */
}
#eventSliderContainer .slide .item:nth-child(4) {
left: calc(55% + 150px); /* Smaller gap */
}
#eventSliderContainer .slide .item:nth-child(5) {
left: calc(55% + 300px);
}
/* Make sure the primary content card has a clean background on mobile */
#eventSliderContainer .slide .item:nth-child(2) {
background-color: var(--card-bg);
}
}
/* --- Small Card View (Compact Event Info) --- */
#eventSliderContainer .slide .item .small-preview {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 10px;
font-family: system-ui;
height: 100%;
}
#eventSliderContainer .slide .item .small-preview .name {
font-size: 1rem;
font-weight: 600;
color: var(--primary-color);
margin-bottom: 5px;
}
#eventSliderContainer .slide .item .small-preview .date,
#eventSliderContainer .slide .item .small-preview .time {
font-size: 0.8rem;
color: var(--text-dark);
}
/* Show only small preview for non-active items */
#eventSliderContainer .slide .item .content {
display: none;
}
#eventSliderContainer .slide .item:nth-child(2) .content {
display: block;
}
#eventSliderContainer .slide .item:nth-child(2) .small-preview {
display: none;
}
/* --- Hide small cards completely on mobile --- */
@media (max-width: 900px) {
#eventSliderContainer .slide .item:not(:nth-child(2)) {
display: none;
}
#eventSliderContainer .button{
bottom: 8px !important;
}
}


.bi-leaf::before { content: "\f90c"; }
               .ourstory [class*=" bi-"]::before {
               color: #b23a48; 
               }
               .hover-card [class*=" bi-"]::before{
               color: #b23a48;
               }
               .hover-card {
               transition: transform 0.3s ease, box-shadow 0.3s ease;
               border: 1px solid #e6e6e6;
               border-radius: 10px;
               }
               .hover-card:hover {
               transform: translateY(-5px);
               box-shadow: 0 10px 20px rgba(0,0,0,0.15);
               border: 1px solid #b23a48;
               }
               .core-card {
               transition: transform 0.3s ease, box-shadow 0.3s ease;
               }
               .core-card:hover {
               transform: translateY(-5px);
               box-shadow: 0 20px 40px hsl(var(--primary) / .15);
               border: 1px solid #b23a48;
               }
               .hover-lift {
               background-image: linear-gradient(to bottom right,#da102f1a, #da102f0d);
               transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
               border: 1px solid #da102f33;
               border-radius: 1rem;
               }
               .hover-lift:hover {
               transform: translateY(-8px);
               box-shadow: 0 20px 40px hsl(var(--primary) / .15);
               }
               .rounded-circle {
               background-color: #b23a48;
               }


                 @media(min-width: 1600px){
            .container {
                width: 1650px !important;
            }


            #visurecarousel .carousel-item {
    height: 975px !important;
}


.bannheight {
    height: 975px !important;}
        }
        