/* --- Preloader Styles --- */
/* Fullscreen Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: bgLoop 3s infinite alternate ease-in-out;
  transition: opacity 0.6s ease;
  overflow: hidden;
}

/* Background animation */
@keyframes bgLoop {
  0% {
    background-color: #ffffff;
  }
  100% {
    background-color: #4584a8;
  }
}

/* Progress Bar Wrapper */
.progress-bar-wrapper {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 10px;
  background: transparent;
  border: 2px solid white;
  border-radius: 10px;
  overflow: hidden;
  z-index: 2;
}

#progress-bar {
  height: 100%;
  width: 0%;
  background-color: #88b7d0;
  transition: width 0.3s ease;
}

/* Logo Styles */
.prelogo {
  position: absolute;
  max-width: 200px;
  height: auto;
  transition: opacity 1s ease;
}

@media (max-width: 768px) {
  .prelogo {
    top: calc(50% - 70px);
  }
}

#prelogo-white {
  opacity: 0;
}

#preloader.white-bg #logo-original {
  opacity: 1;
}
#preloader.white-bg #logo-white {
  opacity: 0;
}

#preloader.blue-bg #logo-original {
  opacity: 0;
}
#preloader.blue-bg #logo-white {
  opacity: 1;
}

/* Branding Text */
.branding {
  text-align: center;
  margin-top: 120px;
  z-index: 2;
  color: #6ba3c1;
  font-family: 'Segoe UI', sans-serif;
}

.branding .title {
  font-weight: 900;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.branding .subtitle {
  font-weight: 700;
  font-size: 1rem;
}

/* Finish Class — stops animation + fade out */
#preloader.finished {
  animation: none !important;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #4584a8;
  text-decoration: none;
}

a:hover {
  color: #5baee0;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
}


.center
{
	text-align: center;
	content: center;
}

.muted-text{
	margin-top: 5px;
	font-size: 9px;
  color: #888;
	font-weight: normal;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #4584a8;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #5baee0;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}
#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
#header .logo a {
  color: #111111;
}
#header .logo a span {
  color: #5baee0;
}
#header .logo img {
  max-height: 40px;
    float: left;
}

/*--------------------------------------------------------------
# Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  margin-left: 30px;
  background: #4584a8;
  color: #fff;
  border-radius: 5px;
  padding: 8px 20px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}
.get-started-btn:hover {
  background: #111111;
  color: #fff;
}
@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.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: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  white-space: nowrap;
  transition: 0.3s;
}
.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: #4584a8;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  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;
}
.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: #4584a8;
}
.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;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #111111;
  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;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  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: #111111;
  display: flex; /* Use flex to align icon and text */
  align-items: center; /* Vertically align the icon and text */
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #e03a3c;
}
.navbar-mobile a i {
  margin-right: 5px;
}


@media (max-width: 768px) {
  .navbar-mobile ul {
    justify-content: flex-start;
  }
  .navbar-mobile a {
    text-align: left;
  }
} 
  
  
.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: #e03a3c;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 100vh;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
/*  padding-top: 82px;*/
}
	


#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
	 z-index: 0;
}

#hero .hero img{
	 filter: contrast(120%) brightness(190%) saturate(100%);
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
		 z-index: 1;

}
#hero h3 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 32px;
		 z-index: 1;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #4584a8;
  border: 2px solid #4584a8;
	 position: relative;
	 z-index: 5;
	 pointer-events: auto;
}

#hero .btn-get-started:hover {
  background: transparent;
  border-color: #fff;
}
@media (max-width: 768px) {
  #hero {
    text-align: center;
    padding-top: 58px;
  }
  #hero h1 {
    font-size: 40px;
  }
  #hero h3 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}




/*--------------------------------------------------------------
# Head Banner Section
--------------------------------------------------------------*/

#headbanner {
  width: 100%;
  height: 100vh;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
/*  padding-top: 82px;*/
}
	


#headbanner:before {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
	 z-index: 0;
}

#headbanner .headbanner img{
	 filter: contrast(120%) brightness(190%) saturate(100%);
}

#headbanner h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
		 z-index: 1;

}
#headbanner h3 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 32px;
		 z-index: 1;
}

#headbanner .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #4584a8;
  border: 2px solid #4584a8;
	 position: relative;
	 z-index: 5;
	 pointer-events: auto;
}

#headbanner .btn-get-started:hover {
  background: transparent;
  border-color: #fff;
}
@media (max-width: 768px) {
  #headbanner {
    text-align: center;
    padding-top: 58px;
  }
  #headbanner h1 {
    font-size: 40px;
  }
  #headbanner h3 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-height: 500px) {
  #headbanner {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #5baee0;
  bottom: 10px;
  left: calc(50% - 25px);
}
.section-title p {
  margin-bottom: 0;
}

.section-bg {
  padding: 120px 0;
  color: #fff;
}
.section-bg:before {
  content: "";
  background: #1b1b1b;
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 0 0 15px 0;
  background: #2b2b2b;
  min-height: 40px;
  color: #fff;
  border-top: 10px solid #5baee0;
}
.breadcrumbs h2 {
  margin-top: 15px;
	font-size: 28px;
  font-weight: 500;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 5px 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol a {
  color: #aaaaaa;
}
.breadcrumbs ol a:hover {
  color: #fff;
  transition: 0.3s;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #5baee0;
  content: "/";
}

/*--------------------------------------------------------------
# CTA Button
--------------------------------------------------------------*/
.cta-button {
		background-color: #4584a8;
		color: white;
		padding: 10px 20px;
		text-decoration: none;
		border-radius: 5px;
		font-weight: bold;

		text-align: center;
		display: inline-block;
		margin-top: auto; /* Ensures button always at bottom */
}

.cta-button:hover {
		background-color: #5baee0;
		color: white;

}		

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients {
	border-bottom: 2px solid #333;
}



.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #e03a3c;
}
.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e03a3c;
}
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}
.clients .swiper-slide img:hover {
  opacity: 1;
  filter: none;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
  position: relative;
  z-index: 10;
}
.about .content {
  padding: 30px 30px 30px 0;
}
.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.about .content h4 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 26px;
}

.about .content h5 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}

.about .content span{
	color: #4584a8;
}

.about .content p {
  margin-bottom: 30px;
}
.about .content .about-btn {
  padding: 8px 30px 9px 30px;
	color: #4584a8;
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid #4584a8;
}
.about .content .about-btn:hover {
	color: #fff;
	background: #4584a8;
}


.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
	color: #4584a8;
}

.about .content .about-btn:hover i {
	color: #fff;
}

.about .icon-boxes .icon-box {
  margin-top: 30px;
}
.about .icon-boxes .icon-box i {
  font-size: 40px;
  color: #4584a8;
  margin-bottom: 10px;
}
.about .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}
.about .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}
@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .about {
    text-align: center;
  }
}


/* Mission & Vision */
/*
.mission-vision .container {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.mission, .vision {
    flex: 1;
}
*/
.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f4f4f4, #e1ecf2);
    text-align: center;
}

.mission-vision-wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.mission-box, .vision-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    width: 45%;
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-10px);
}

.icon {
    font-size: 3rem;
    color: #4584a8;
    margin-right: 20px;
}

.text h2 {
    font-size: 1.8rem;
    color: #333;
}

.text p {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .mission-vision-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .mission-box, .vision-box {
        width: 90%;
    }
}
	
/* Core Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
	
	background: #f4f4f4;
}

.value {
    text-align: center;
    padding: 20px;
}

.value i {
    font-size: 40px;
    color: #4584a8;
}

	
	
/* Why Choose Us */
	
.why-choose-us {
    padding: 50px 0;
    background: linear-gradient(360deg, #ffffff, #f8f8f8);
    position: relative;
    }

	.why-choose-us .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #fff;
    gap: 20px;
		padding-bottom: 20px;
}

.reason {
    text-align: center;
    padding: 20px;
}
	
.reason i {
    font-size: 40px;
    color: #4584a8;
}
	

	        /* Story Section */
        .story {
            padding: 50px 0;
        }

	.story h5{
		font-weight: bold;
		align-content: center;
		text-align: center;
		margin-top: 5px;
	}
	
        .story p {
            font-size: 1rem;
            line-height: 1.5;
		}
	
        /* Expertise Section */
        .expertise {
            text-align: center;
            padding: 50px 0;
        }

        .expertise .box {
            padding: 30px;
            background: white;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
	
	
	.expertise .box:hover{
		    transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
			}

     .expertise .box:hover i,
     .expertise .box:hover h4	{
    color: #4584a8;
    transition: color 0.3s ease-in-out;
}
	
/*
	 .expertise .box:hover h4	{
		 font-weight: 600;
	}
*/
		.expertise .box:hover p{
		color: inherit;	
	}
      
/* Counter Section */
        .counters {
            background: url('../img/about/about.jpg') center/cover no-repeat fixed;
            padding: 100px 0;
            text-align: center;
            color: white;
        }

        .counter {
            font-size: 3rem;
            font-weight: bold;
        }

/* Final CTA */
/*
.final-cta {
    background: url('/images/placeholder.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-button {
    background-color: #4584a8;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #5baee0;
}
*/
/* --------------------------------- */
#floating-image {
  position: absolute;
  top: 50%;
/*  right: 10%;*/
	left: 70%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  pointer-events: none;
}

#floating-image img {
  width: 400px;
  height: auto;
  transition: transform 0.4s ease-in-out;
will-change: transform;
  filter: drop-shadow(0px 5px 8px rgba(0, 0, 0, 0.8));
}

/* Hide the image on mobile screens */
@media (max-width: 767px) {
  #floating-image {
    display: none;
  }
}






	
	
			/* CSS for Timeline */
.timeline-section {
padding: 80px 0;
background: #f4f4f4;
position: relative;
}

.timeline {
position: relative;
max-width: 850px;
margin: auto;
}

/* Timeline Line */
.timeline::after {
content: '';
position: absolute;
width: 6px;
background: #4584a8;
top: 0;
bottom: 0;
left: 50%;
transform: translateX(-50%);
}

/* Timeline Items */
.timeline-item {
display: flex;
align-items: center; /* Ensures vertical alignment */
justify-content: space-between; /* Pushes icon to left & year to right */
padding: 0px 35px;
position: relative;
width: 50%;
opacity: 0;
transform: translateY(30px);
transition: opacity 1s ease-out, transform 1s ease-out;
}

.timeline-content {
background: white;
padding: 15px 20px;
border-radius: 10px;
position: relative;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
text-align: left;
display: flex;
flex-direction: column;
}

.timeline-content p {
font-size: 15px;
text-align: justify;
text-justify: inter-word;
word-spacing: 0.05em; /* Optional: adjust to fine-tune the justification */
}


/* Arrow Styles */ 
.timeline-content::before {
content: '';
position: absolute;
width: 20px; /* Increased width to form the horizontal line */
height: 3px; /* Thickness of the connecting line */
background: #4584a8; /* Match timeline color */
top: 50%;
transform: translateY(-50%);
}

/* Left side (odd items) */
.timeline-item:nth-child(odd) .timeline-content::before {
right: -20px; /* Extends the line to connect to the timeline */
}

.timeline-item:nth-child(odd) .timeline-content::after {
content: '';
position: absolute;
width: 12px;
height: 12px;
background: white;
border: 3px solid #4584a8;
border-radius: 50%;
top: 50%;
right: -30px; /* Positioned at the end of the connecting line */
transform: translateY(-50%);
}

/* Right side (even items) */
.timeline-item:nth-child(even) .timeline-content::before {
left: -20px; /* Extends the line to connect to the timeline */
}

.timeline-item:nth-child(even) .timeline-content::after {
content: '';
position: absolute;
width: 12px;
height: 12px;
background: white;
border: 3px solid #4584a8;
border-radius: 50%;
top: 50%;
left: -30px; /* Positioned at the end of the connecting line */
transform: translateY(-50%);
}



/* Positioning */
.timeline-item:nth-child(odd) {
left: 0;
}

.timeline-item:nth-child(even) {
left: 50%;
}

/* Right-side Cards: Swap icon & year positions */
.timeline-item:nth-child(even) .timeline-header {
flex-direction: row-reverse; /* Flips order: Year left, Icon right */
justify-content: space-between; /* Ensures spacing stays the same */
}

/* Header with Icon & Date */
.timeline-header {
display: flex;
align-items: center; /* Ensures vertical alignment */
justify-content: space-between;
width: 100%;
}

.timeline-item:nth-child(even) .timeline-header {
width: 107%;
}


.icon {
font-size: 2rem;
color: #5baee0;
flex-shrink: 0; /* Prevents the icon from resizing */
}

.year {
  font-weight: bold;
  font-size: 1.2rem;
  color: #4584a8;
  white-space: normal; /* Allow wrapping */
  overflow-wrap: break-word; /* Break long words if needed */
  flex: 1; /* Take remaining space */
}

/* Image Banner Placeholder */
.timeline-image {
width: 100%;
height: 240px; /* 120 Adjustable */
background: #ddd; /* Placeholder */
border-radius: 5px;
background-size: cover;
background-position: center;
}

/* Scroll Animations */
.timeline-item.show {
opacity: 1;
transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
.timeline::after {
left: 20px;
}

.timeline-item {
width: 100%;
padding-left: 60px;
padding-right: 20px;
padding-bottom: 20px;
}

.timeline-item:nth-child(even) {
left: 0;
}
}
	
	
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 80px;
}
.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}
.counts .count-box i {
  position: absolute;
  width: 54px;
  height: 54px;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #fff;
  color: #e03a3c;
  border-radius: 50px;
  border: 2px solid #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: #111111;
}
.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}
.tabs .nav-link {
  border: 1px solid #b9b9b9;
  padding: 15px;
  transition: 0.3s;
  color: #111111;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}
.tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.tabs .nav-link:hover {
  color: #4584a8;
}
.tabs .nav-link.active {
  background: #e03a3c;
  color: #fff;
  border-color: #4584a8;
}
@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 15px;
  }
  .tabs .nav-link i {
    font-size: 24px;
  }
}
.tabs .tab-content {
  margin-top: 30px;
}
.tabs .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}
.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}
.tabs .tab-pane ul li {
  padding-bottom: 10px;
}
.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #4584a8;
}
.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: #252525;
  transition: 0.3s;
}
.services .icon-box:hover {
  background: #2b2b2b;
}
.services .icon-box i {
  float: left;
  color: #e03a3c;
  font-size: 40px;
  line-height: 0;
}
.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.services .icon-box h4 a {
  color: #fff;
  transition: 0.3s;
}
.services .icon-box h4 a:hover {
  text-decoration: underline;
}
.services .icon-box .icon-box:hover h4 a {
  color: #e03a3c;
}
.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}


    .accordion-button {
        background-color: white;
        color: black;
        font-weight: normal;
        transition: all 0 ease;
    }

    .accordion-button:hover {
        background-color: #4584a8;
        color: white;
    }

    /* Active (opened) state */
    .accordion-button:not(.collapsed) {
        background-color: #4584a8 !important;
        color: white;
        font-weight: bold;
    }

    /* Ensure the body text inside the expanded section is readable */
    .accordion-body {
        background-color: #faf9fa;
        color: black;
    }

    /* Remove box shadow on button click */
    .accordion-button:focus {
        box-shadow: none;
    }

    /* Change Chevron (caret) color */
    .accordion-button::after {
        filter: invert(0); /* Default black */
        transition: all 0 ease;
    }

    /* When hovered, make the chevron white */
    .accordion-button:hover::after {
        filter: invert(1);
    }

    /* When expanded, keep the chevron white */
    .accordion-button:not(.collapsed)::after {
        filter: invert(1);
    }




.final-cta { 
    padding: 50px 20px;
    color: white;
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/services/contact.jpg') center/cover no-repeat; /* Explicitly set the background */
    filter: contrast(200%) brightness(30%) saturate(100%);
    z-index: -1;
}

.final-cta .container #srvc-form{
	padding: 0 180px;
}

@media (max-width: 768px) {
    .final-cta .container #srvc-form {
        padding: 0 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

    .final-cta h2 {
        font-size: 2.5rem;
        font-weight: bold;
    }

    .final-cta p {
        font-size: 1.2rem;
        max-width: 400px;
        margin: 0 auto 30px;
			font-weight: bold;
    }


    .form-row {
        display: flex;
        gap: 30px;
        margin-bottom: 15px;
    }


    .srvc-form-group {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .half-width {
        flex: 1;
        min-width: 250px;
    }



    input, select, textarea {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1rem;
    }

    textarea {
        height: 100px;
        resize: vertical;
    }

    .srvc-form-button {
        background-color: #4584a8;
        color: white;
			margin-top: 20px;
        padding: 12px 24px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        display: inline-block;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .srvc-form-button:hover {
        background-color: #5baee0;
    }

    .success-message {
        color: #28a745;
        font-weight: bold;
        margin-top: 15px;
    }

/* ------------------- */
/* -- SERVICES PAGE -- */
/* ------------------- */
      .service-card {
            border: 2px solid #333;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            min-height: 100%;
            display: flex;
            flex-direction: column;
				 position: relative;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
			}

				.service-card:hover h3 {
            color: #4584a8;
        }
			
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-card .p-4 {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-card h3 {
            font-weight: 700;
        }

        .service-card p {
            font-size: 0.9rem;
            flex-grow: 1;
        }


        .consulting-section {
/*            background-color: #f7f7f7;*/
            padding: 30px 0;
            text-align: center;
        }
       
				
        .consulting-section h2 {
            font-size: 1.9rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
			
			.consulting-section .consulting-content:hover h2 {
    			color: #4584a8;
			}

        .consulting-section p {
            font-size: 1rem;
/*            margin-bottom: 30px;*/
        }
			
.why-cb {
    text-align: center;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
}

.why-cb h2, h4 {
	font-weight: 600;
	}
			
.why-cb p {
   font-size: 1rem; /* Adjust font size to make it a little smaller */
   line-height: 1.4; /* Tighten line height for wrapping */
   margin-top: 10px;
	padding: 0 20px 20px 20px;
			}
			
.why-cb i {
    font-size: 3rem; /* Adjust icon size */
    margin-bottom: 10px;
}


			
			
			
			
			
.case-studies {
    background-color: #f9f9f9;
		border-bottom: 2px solid #333;
	}
			
.case-studies h2, h4 {
	font-weight: 600;
}			
					
.case-study-box {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.case-study-box h4 {
    font-size: 1.25rem;
    color: #000;
    margin-top: 15px;
	font-weight: 600;
}

	.service-card:hover h4 {
			color: #4584a8;
        }			
			
.case-study-box p {
    font-size: 1rem;
    color: #222;
    margin-top: 10px;
}
/* ----- SPECIAL OFFERS ------ */

.promo-text {
  position: absolute;
  top: -10px;
  left: 15px;
transform: rotate(-45deg) translate(-40%, -40%);
  background: linear-gradient(135deg, #e63946, #ff9f1c);
	color: white;
  font-weight: bold;
  font-size: 12px;
	padding: 5px 40px;
	border-radius: 0;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  white-space: nowrap;
}

.cta-button.special-offer {
  background: linear-gradient(135deg, #e63946, #ff9f1c);
  color: white;
  border: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.cta-button.special-offer:hover {
  box-shadow: 0 0 12px rgba(255, 100, 50, 0.6);
  background: linear-gradient(135deg, #ff6b35, #ffb347);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #e03a3c;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(17, 17, 17, 0.6);
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(17, 17, 17, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
}
.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}
.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.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 #e03a3c;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e03a3c;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(17, 17, 17, 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: 30px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
  border-radius: 15px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 25px 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: #88b7d0;
  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: 30px 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 #4584a8;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4584a8;
}

/*--------------------------------------------------------------
# Pricing | Media Production
--------------------------------------------------------------*/
.pricing, .media .box {
  padding: 20px;
  background: #2b2b2b;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.pricing, .media .box h3 {
  font-weight: 400;
  padding: 15px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
}
.pricing, .media .box h4 {
  font-size: 42px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}
.pricing, .media .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
.pricing, .media .box h4 span {
  font-size: 16px;
  font-weight: 300;
}
.pricing, .media .box ul {
  padding: 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.pricing, .media .box ul li {
  padding-bottom: 16px;
}
.pricing, .media .box ul i {
  color: #4584a8;
  font-size: 18px;
  padding-right: 4px;
}
.pricing, .media .box ul .na {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}
.pricing, .media .box .btn-wrap {
  padding: 15px;
  text-align: center;
}
.pricing, .media .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.pricing, .media .box .btn-buy:hover {
  border-color: #fff;
}
.pricing, .media .featured {
  background: #5baee0;
}

.media .card .card-title, .card-text {
      text-align: left;
}

.media .card .card-text {
font-size: 14px;
}
.media .card .card-title {
    margin-top: -15px;
}

.media .px-2 {
  padding-left: ($spacer * .5) !important;
  padding-right: ($spacer * .5) !important;
}

.media .card .audbox{
    display: table;
}

.media .card .audplayer, .voxtitle{
      display: table-cell;
  vertical-align: middle;
}

.media .voxtitle{
  display: table-cell;
    
}

/*--------------------------------------------------------------
# Video Box | Venobox
--------------------------------------------------------------*/
#media .icon-box + .icon-box {
  margin-top: 100px;
}

#media .video-box {
  position: relative;
}

#media .icon-box .icon {
  float: left;
  display:flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #f1f7fb;
  border-radius: 6px;
  transition: 0.5s;
}

#media .icon-box .icon i {
  color: #800000;
  font-size: 32px;
}

#media .icon-box:hover .icon {
  background: #B22222;
}

#media .icon-box:hover .icon i {
  color: #fff;
}

#media .icon-box .title {
  margin-left: 95px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
}

#media .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

#media .icon-box .title a:hover {
  color: #B22222;
}

#media .icon-box .description {
  margin-left: 95px;
  line-height: 24px;
  font-size: 14px;
}

#media .play-btn {
  width: 84px;
  height: 84px;
  background: radial-gradient(#800000 50%, rgba(66, 139, 202, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 42px);
  top: calc(35% - 29px);
  overflow: hidden;
}
#media .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#media .play-btn::before {
  content: '';
  position: absolute;
  width: 110px;
  height: 110px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(66, 139, 202, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#media .play-btn:hover::after {
  border-left: 15px solid #B22222;
  transform: scale(20);
}

#media .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
  list-style: none;
}
.faq .faq-list li {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: #e03a3c;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 25px;
  cursor: pointer;
}
.faq .faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #343a40;
}
.faq .faq-list a.collapsed:hover {
  color: #e03a3c;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
}
.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team .member .social a {
  transition: color 0.3s;
  color: #111111;
  margin: 0 3px;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  background: #4584a8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  color: #fff;
}
.team .member .social a:hover {
  background: #111111;
}
.team .member .social i {
  font-size: 18px;
  line-height: 0;
}
.team .member .member-info {
  padding: 25px 15px;
}
.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #111111;
}
.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}
.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px 0 32px 0;
  border-radius: 4px;
	
}
.contact .info-box i {
  font-size: 32px;
  color: #e03a3c;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f8d4d5;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  border-radius: 4px;
}
.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;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form .form-group {
  margin-bottom: 25px;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #111111;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #4584a8;
  border: 0;
  padding: 10px 32px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #5baee0;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-post {
  display: flex;
  flex-direction: row;
  flex: 1 1 calc(33.333% - 20px);
  background: #fff;
  border: 1px solid #5baee0;
  border-radius: 8px;
  overflow: hidden;
  min-height: 180px;
  box-sizing: border-box; /* prevent overflow issues */
}

/* Left side: image + category pill */
.post-left {
  position: relative;
  flex: 0 0 150px; /* FIXED thumbnail width */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.post-thumb {
  position: relative;
  width: 100%;
}

.post-thumb img {
  width: 100%;         /* fill parent (150px) */
  height: 150px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  cursor: pointer !important;
 margin-top: 10px;  
}

.category-pill {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #4584a8;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  text-align: center;
  z-index: 2;
}

.category-pill:hover {
  background: #5baee0;
  color: #fff;
}

/* Right side content */
.post-right {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.post-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 15px;
}

.post-title a {
  color: inherit;
  text-decoration: none;
}

.post-title a:hover {
  text-decoration: underline;
}

/* Date placement */
.post-date {
  font-size: 12px;
  color: #777;
  margin: -10px 15px 0 15px;
}

.post-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.post-date-mobile {
  display: none;
}

.read-more {
  font-size: 14px;
  text-decoration: none;
  color: #0077cc;
  font-weight: 600;
}
.read-more:hover {
  text-decoration: underline;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .blog-post {
    flex: 1 1 100%;
    flex-direction: column;
  }

  .category-pill {
    top: 10px;
    right: 10px;
    left: auto;
    bottom: auto;
  }

  .post-left {
    flex: 0 0 auto;
    width: 100%;
  }
  .post-thumb img {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .post-right {
    padding: 10px;
  }

  .post-date {
    display: none; /* hide desktop date */
  }

  .post-footer {
    justify-content: space-between; /* date left, read more right */
  }

  .post-date-mobile {
    display: inline-block;
    font-size: 12px;
    color: #777;
  }

  .read-more {
    margin-top: -5px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #111111;
}

#footer .logo {
  font-size: 30px;
  margin: 45px;
  padding: 0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
#footer .logo a {
  color: #111111;
}
#footer .logo a span {
  color: #5baee0;
}
#footer .logo img {
  max-height: 60px;
    float: left;
}


@media (max-width: 768px) {
#footer .logo {
  margin: 0;
	float: none;
  }

}


#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #1b1b1b;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
}
#footer .footer-top .footer-contact h3 span {
  color: #5baee0;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #4584a8;
  bottom: 0;
  left: 0;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: white;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #aaaaaa;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}
#footer .footer-newsletter {
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 5px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #4584a8;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #5baee0;
}
#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2b2b2b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #4584a8;
  color: #fff;
  text-decoration: none;
}


/* Privacy Policy Modal*/
/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  color: #000;
  margin: 3% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
}

#acknowledgeBtn {
  display: block;
  margin: 20px auto;
  padding: 10px 25px;
  background-color: #4584a8;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#acknowledgeBtn:hover {
  background-color: #555;
}

/* Privacy policy layout */
.privacy-container {
  /*font-family: 'Segoe UI', sans-serif;*/
  padding: 10px 0;
}

.privacy-logo-space {
  height: 60px;
  margin-bottom: 20px;
}

.privacy-logo {
  max-height: 80px;
}

.privacy-container h1,
.privacy-container h2,
.privacy-container h3 {
  margin-top: 1em;
}

.privacy-container ul {
  padding-left: 1.2em;
  list-style: disc;
}

@media (max-width: 600px) {
  .modal-content {
    width: 95%;
    margin: 5% auto;
    max-height: 90vh;
  }
}

