/**
* Template Name: UpConstruction - v1.3.0
* Template URL: https://bootstrapmade.com/upconstruction-bootstrap-construction-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Work Sans", sans-serif;
}

/* Colors */
:root {
  --color-default: #364d59;
  --color-primary: #feb900;
  --color-secondary: #52565e;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

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

.section-header {
  color: #fff;
  text-align: center;
  /* padding-bottom: 70px; */
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #fff;
}

.section-header h2:before,
.section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-header h2:before {
  margin: 0 15px 10px 0;
}

.section-header h2:after {
  margin: 0 0 10px 15px;
}

.section-header p {
  margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
  .section-header p {
    max-width: 60%;
  }
}
/* section titele */

.section-title {
  text-align: center;
  font-family: 'Oswald', sans-serif;

  font-weight: 500;
  font-size: 36px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}




@media (max-width: 600px) {
  .section-title {
    font-size: 26px;
  }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}
.mt-3{
  color: #fff;
}
.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

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

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

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-secondary);
  line-height: 0;
}

.scroll-top:hover {
  background: #ffc732;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
/* === Modern Dark Preloader === */
.handle-preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #0a0a0a 60%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.handle-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Centered loader content */
.loader-content {
  text-align: left;
  color: #fff;
  animation: fadeIn 1.2s ease-in-out;
}

/* Logo inside ring */
.loader-ring {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fixed logo (does not rotate) */
.loader-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  border-radius: 50%;
  /* filter: drop-shadow(0 0 12px #ffb703); */
}

/* Rotating ring (only the border spins) */
.loader-ring .ring {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-top: 3px solid #ffb703;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
  box-shadow: 0 0 20px #a77803;
}

/* Title below */
.loader-text {
  font-family: 'Orbitron', sans-serif;

  font-weight: 400;
  font-size: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 30px;
  color: #d3d3d3;
}

.loader-text .highlight {
  color: #ffb703;
  font-weight: 600;
  /* text-shadow: 0 0 15px #ffb703; */
}

/* Animations */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .loader-ring {
    width: 110px;
    height: 110px;
  }

  .loader-logo {
    width: 50px;
    height: 50px;
  }

  .loader-text {
    font-size: 16px;
    margin-top: 25px;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  height: 80px;
  z-index: 997;
  position: absolute;
  padding: 20px 0;
  top: 0;
  left: 0;
  right: 0;
margin-bottom: 5%;}

.header .logo img {

  max-height: 80px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

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

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navbar>ul>li>a:before {
    color: #fff;
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
        color: #fff;

    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    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: 15px;
    text-transform: none;
    color: var(--color-default);
    font-weight: 400;
  }

  .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: var(--color-primary);
  }

  .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 (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

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

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    color: #fff;
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    text-transform: uppercase;
    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: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #222428;
  }

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

  .mobile-nav-show {
    position: relative;
    color:#fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    padding-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started .content {
  padding: 30px 0;
}

.get-started .content h3 {
  font-size: 36px;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}

.get-started .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.get-started .content p {
  font-size: 14px;
}

.get-started .php-email-form {
  background: #fff;
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-started .php-email-form {
    padding: 20px;
  }
}

.get-started .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-started .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-started .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-started .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-started .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

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

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

.get-started .php-email-form input:focus,
.get-started .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.get-started .php-email-form input {
  padding: 12px 15px;
}

.get-started .php-email-form textarea {
  padding: 12px 15px;
}

.get-started .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.get-started .php-email-form button[type=submit]:hover {
  background: rgba(254, 185, 0, 0.8);
}

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

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

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

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

/*--------------------------------------------------------------
# Constructions Section
--------------------------------------------------------------*/
.constructions .card-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  border-radius: 0;
}

.constructions .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.constructions .card-item .card-body {
  padding: 30px;
}

.constructions .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.constructions .card-item p {
  color: var(--color-secondary);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  padding: 40px;
  background: #fff;
  height: 100%;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--color-secondary);
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #ebebed;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}

.services .service-item:hover .icon:before {
  background: var(--color-primary);
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  padding: 15px 0;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid #e2e4e6;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }
}

.features .nav-link:hover {
  color: var(--color-primary);
}

.features .nav-link.active {
  color: var(--color-primary);
  background-color: transparent;
  border-color: var(--color-primary);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Our Projects Section (Ongoing) - Simplified Animations
--------------------------------------------------------------*/
.projects {
  background: #000000;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

/* Static background gradient */
.projects::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(91, 173, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 71, 133, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.projects .container {
  position: relative;
  z-index: 2;
}

.projects h3 {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 4px;
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, #5badff, #ff4785, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.projects h3::before,
.projects h3::after {
  content: '';
  position: absolute;
  bottom: -20px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #5badff, transparent);
}

.projects h3::before {
  left: 0;
  width: 45%;
}

.projects h3::after {
  right: 0;
  width: 45%;
}

/* Simplified filter buttons */
.projects .portfolio-flters {
  padding: 0;
  margin: 0 auto 70px auto;
  list-style: none;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
}

.projects .portfolio-flters li {
  cursor: pointer;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(91, 173, 255, 0.2);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.projects .portfolio-flters li:hover {
  color: #fff;
  border-color: #5badff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(91, 173, 255, 0.2);
}

.projects .portfolio-flters li.filter-active {
  color: #fff;
  background: linear-gradient(135deg, #5badff, #9333ea);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(91, 173, 255, 0.4);
}

@media (max-width: 768px) {
  .projects .portfolio-flters {
    gap: 12px;
  }
  
  .projects .portfolio-flters li {
    font-size: 13px;
    padding: 12px 24px;
  }
}

.projects .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

/* Simplified portfolio item - no animations on filter */
.projects .portfolio-item {
  padding: 0 15px;
  margin-bottom: 40px;
  opacity: 1;
  transition: none;
}

/* Instant show/hide - no transitions */
.projects .portfolio-item.hidden {
  display: none !important;
}

.projects .portfolio-item.animate-in {
  display: block;
}

.projects .portfolio-content {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(20, 20, 35, 0.8), rgba(10, 10, 20, 0.9));
  border: 1px solid rgba(91, 173, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Simplified glow effect */
.projects .portfolio-content::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #5badff, #ff4785, #9333ea, #5badff);
  border-radius: 24px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.projects .portfolio-content:hover::after {
  opacity: 1;
}

.projects .portfolio-content:hover {
  transform: translateY(-8px);
  border-color: rgba(91, 173, 255, 0.5);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(91, 173, 255, 0.2);
}

.projects .portfolio-content img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
  display: block;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.projects .portfolio-content:hover img {
  transform: scale(1.03);
}

.projects .portfolio-content h6 {
  padding: 24px;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, rgba(15, 15, 25, 0.95), rgba(5, 5, 15, 1));
  position: relative;
  z-index: 2;
  min-height: 95px;
  display: flex;
  align-items: center;
  border-radius: 0 0 24px 24px;
  transition: background 0.3s ease;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

.projects .portfolio-content:hover h6 {
  background: linear-gradient(180deg, rgba(20, 30, 45, 0.95), rgba(10, 15, 25, 1));
}

/*--------------------------------------------------------------
# Completed Projects Section - Same Simplified Style
--------------------------------------------------------------*/
.projects-completed {
  background: #000000;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.projects-completed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(91, 173, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 71, 133, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.projects-completed .container {
  position: relative;
  z-index: 2;
}

.projects-completed h3 {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 4px;
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, #5badff, #ff4785, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.projects-completed h3::before,
.projects-completed h3::after {
  content: '';
  position: absolute;
  bottom: -20px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #5badff, transparent);
}

.projects-completed h3::before {
  left: 0;
  width: 45%;
}

.projects-completed h3::after {
  right: 0;
  width: 45%;
}

.projects-completed .portfolio-flters {
  padding: 0;
  margin: 0 auto 70px auto;
  list-style: none;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
}

.projects-completed .portfolio-flters li {
  cursor: pointer;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(91, 173, 255, 0.2);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.projects-completed .portfolio-flters li:hover {
  color: #fff;
  border-color: #5badff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(91, 173, 255, 0.2);
}

.projects-completed .portfolio-flters li.filter-active {
  color: #fff;
  background: linear-gradient(135deg, #5badff, #9333ea);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(91, 173, 255, 0.4);
}

.projects-completed .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.projects-completed .portfolio-item {
  padding: 0 15px;
  margin-bottom: 40px;
  opacity: 1;
  transition: none;
}

.projects-completed .portfolio-item.hidden {
  display: none !important;
}

.projects-completed .portfolio-item.animate-in {
  display: block;
}

.projects-completed .portfolio-content {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(20, 20, 35, 0.8), rgba(10, 10, 20, 0.9));
  border: 1px solid rgba(91, 173, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.projects-completed .portfolio-content::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #5badff, #ff4785, #9333ea, #5badff);
  border-radius: 24px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.projects-completed .portfolio-content:hover::after {
  opacity: 1;
}

.projects-completed .portfolio-content:hover {
  transform: translateY(-8px);
  border-color: rgba(91, 173, 255, 0.5);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(91, 173, 255, 0.2);
}

.projects-completed .portfolio-content img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
  display: block;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.projects-completed .portfolio-content:hover img {
  transform: scale(1.03);
}

.projects-completed .portfolio-content h6 {
  padding: 24px;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, rgba(15, 15, 25, 0.95), rgba(5, 5, 15, 1));
  position: relative;
  z-index: 2;
  min-height: 95px;
  display: flex;
  align-items: center;
  border-radius: 0 0 24px 24px;
  transition: background 0.3s ease;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

.projects-completed .portfolio-content:hover h6 {
  background: linear-gradient(180deg, rgba(20, 30, 45, 0.95), rgba(10, 15, 25, 1));
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .projects .portfolio-content img,
  .projects-completed .portfolio-content img {
    height: 200px;
  }
  
  .projects .portfolio-content h6,
  .projects-completed .portfolio-content h6 {
    min-height: 90px;
    font-size: 14px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .projects-completed .portfolio-flters {
    gap: 12px;
  }
  
  .projects-completed .portfolio-flters li {
    font-size: 13px;
    padding: 12px 24px;
  }
}

@media (max-width: 575px) {
  .projects h3,
  .projects-completed h3 {
    font-size: 2.2rem;
  }
  
  .projects .portfolio-content img,
  .projects-completed .portfolio-content img {
    height: 180px;
  }
  
  .projects .portfolio-content h6,
  .projects-completed .portfolio-content h6 {
    min-height: 85px;
    padding: 18px;
    font-size: 13px;
  }
}
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 0 15px 30px 0;
  min-height: 200px;
  box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

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

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

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

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

.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;
  transform: scale(-1, -1);
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d5d7da;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .img-bg {
  background-size: cover;
  background-position: center center;
  min-height: 400px;
}

.alt-services h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.alt-services h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.alt-services .icon-box {
  margin-top: 50px;
}

.alt-services .icon-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  transition: 0.3s;
}

.alt-services .icon-box:hover i {
  background-color: var(--color-primary);
  color: #fff;
}

.alt-services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

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

.alt-services .icon-box h4 a:hover {
  color: var(--color-primary);
}

.alt-services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 40px 0;
}

.about .our-story {
  padding: 40px;
  background-color: #161625;
  border-radius: 10px;
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.about .our-story h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color:#fff;
}

.about .our-story p {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 0;
}

.about .about-img {
  min-height: 380px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .about .row {
    flex-direction: column-reverse; /* For mobile, image goes below content */
  }

  .about .about-img {
    margin-top: 30px;
    min-height: 300px;
  }
}

/*-----------------------------------------------
# Stats Counter Section (Dark Theme)
-----------------------------------------------*/
.stats-counter {
  background: #161625;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.stats-counter .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Each Stat Item */
.stats-counter .stats-item {
  background: transparent;
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 calc(25% - 30px); /* 👈 ensures 4 per row on large screens */
  max-width: calc(25% - 30px);
  min-width: 220px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-counter .stats-item:hover {
  transform: translateY(-8px);
}

/* Icon Circle */
.stats-counter .icon-circle {
  width: 70px;
  height: 70px;
  background: #ff8c00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
}

.stats-counter .icon-circle i {
  font-size: 32px;
  color: #fff;
}

/* Number / Title */
.stats-counter h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff8c00;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* Description */
.stats-counter p {
  color: #ddd;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .stats-counter .stats-item {
    flex: 1 1 calc(50% - 30px); /* 2 items per row on tablets */
    max-width: calc(50% - 30px);
  }
}

@media (max-width: 576px) {
  .stats-counter .stats-item {
    flex: 1 1 100%; /* 1 per row on small screens */
    max-width: 100%;
  }
  .stats-counter h3 {
    font-size: 2rem;
  }
}



/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: #fff;
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--color-primary);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
  color: var(--color-secondary);
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: #838893;
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Servie Cards Section
--------------------------------------------------------------*/
.services-cards h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
}

.services-cards p {
  font-size: 15px;
}

.services-cards ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
}

.services-cards ul li i {
  font-size: 16px;
  color: var(--color-primary);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Projet Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
  width: 100%;
}

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {

  .project-details .swiper-button-prev,
  .project-details .swiper-button-next {
    display: none;
  }
}

.project-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.project-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

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

.project-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.project-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #838893;
  font-size: 14px;
}

.project-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.project-details .portfolio-info .btn-visit:hover {
  background: #ffc019;
}

.project-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

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

.project-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: #f5f6f7;
  height: 100%;
  margin-bottom: 50px;
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.project-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.project-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
  color: #ffd565;
  font-size: 26px;
  line-height: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.project-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.project-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid #d5d7da;
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid #d9e3e8;
  margin: 20px 0;
  color: var(--color-secondary);
  transition: 0.3s;
}

.service-details .services-list a.active {
  font-weight: 700;
  border-color: var(--color-primary);
}

.service-details .services-list a:hover {
  border-color: var(--color-primary);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 28px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

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

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 20px 0 30px 0;
}

.contact .info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: var(--color-primary);
  border-radius: 50%;
  border: 2px dotted #e9e7e2;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  color: #fff;
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

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

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  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: #059652;
  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 #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  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:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

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

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

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(254, 185, 0, 0.8);
}

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

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

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
}

.recent-blog-posts .post-item .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-posts .post-item .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.recent-blog-posts .post-item .meta span {
  font-size: 15px;
  color: #838893;
}

.recent-blog-posts .post-item hr {
  color: #888;
  margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: var(--color-primary);
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  overflow-x: hidden;
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0px 0;
  margin: 0;
  position: relative;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size:contain;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
  transition-duration: 0.4s;
}

/* .hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  inset: 0;
} */

/* Hero Info Container */
.hero .info {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  flex-direction: column;
}

/* Hero Heading */
.hero .info h2 {
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1.5s ease forwards;
}

/* Underline / Highlight Bar */
.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: -12px;
  margin: auto;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transform: scaleX(0);
  transform-origin: center;
  animation: underlineExpand 1s 0.5s forwards;
}

.hero .info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Mobile & Tablet Adjustments
--------------------------------------------------------------*/
@media (max-width: 1024px) {
  .hero .info h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .hero .carousel {
    min-height: 65vh;
    padding: 40px 0;
  }

  .hero .carousel-item {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 65vh;
  }

  .hero .info {
    padding: 0 15px;
  }

  .hero .info h2 {
    font-size: 28px !important;
    line-height: 1.3;
    margin-bottom: 20px;
    padding-bottom: 12px;
  }

  .hero .info h2:after {
    width: 50px;
    height: 3px;
  }

  .hero .info p {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .hero .carousel-control-prev-icon,
  .hero .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero .carousel {
    min-height: 55vh;
  }

  .hero .info {
    padding: 0 10px;
  }

  .hero .info h2 {
    font-size: 22px !important;
    margin-bottom: 15px;
  }

  .hero .info p {
    font-size: 13px;
  }
}



/*--------------------------------------------------------------
# Carousel Arrows Position Fix
--------------------------------------------------------------*/
.hero .carousel-control-prev,
.hero .carousel-control-next {
  position: absolute;
  top: 50%; /* vertically center */
  transform: translateY(-50%);
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

/* Adjust for smaller screens (when hero height is reduced) */
@media (max-width: 768px) {
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    top: 70%; /* stays centered */
    transform: translateY(-50%);
  }

  .hero .carousel-control-prev-icon,
  .hero .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* Optional: make sure they don't go out of hero bounds */
.hero .carousel-control-prev {
  left: 10px;
}

.hero .carousel-control-next {
  right: 10px;
}

.hero .carousel-control-prev {
  justify-content: start;
}
@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}
@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  /* background: rgba(33, 28, 28, 0.8); */
  color: red;
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #838893;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: var(--color-secondary);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
  color: #fff;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.blog .posts-list .post-img img {
  transition: 0.5s;
}

.blog .posts-list .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog .posts-list .post-content {
  padding: 30px;
}

.blog .posts-list .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog .posts-list .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.blog .posts-list .meta span {
  font-size: 15px;
  color: #838893;
}

.blog .posts-list p {
  margin-top: 20px;
}

.blog .posts-list hr {
  color: #888;
  margin-bottom: 20px;
}

.blog .posts-list .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

.blog .posts-list .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog .posts-list .post-item:hover .post-title,
.blog .posts-list .post-item:hover .readmore {
  color: var(--color-primary);
}

.blog .posts-list .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(82, 86, 94, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-primary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
}

.blog .blog-details .meta-top a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(82, 86, 94, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #838893;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(82, 86, 94, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(82, 86, 94, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(82, 86, 94, 0.3);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: var(--color-secondary);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(254, 185, 0, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(54, 77, 89, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  max-width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(54, 77, 89, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #838893;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(131, 136, 147, 0.4);
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: var(--color-secondary);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(131, 136, 147, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-secondary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(82, 86, 94, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(254, 185, 0, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(254, 185, 0, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  color: var(--color-secondary);
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background: url("../img/footer-bg.jpg") top center no-repeat;
  background-size: cover;
  font-size: 14px;
  padding: 80px 0 60px 0;
  position: relative;
}

.footer:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  inset: 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: #fff;
}

.footer .footer-content .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-content .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-legal .copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: #fff;
}

.footer .footer-legal .credits a {
  color: var(--color-primary);
}





.vision-section {
  padding: 80px 20px;
  background-color: #161625;
}

.vision-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

.vision-logo img {
  width: 180px;
  max-width: 100%;
  border-radius: 8px;
}

.vision-text {
  flex: 1;
  margin-left: 40px;
}

.vision-text h2 {
  font-size: 32px;
  font-weight: 600;
  color: #e0d9d9;
  margin-bottom: 15px;
}

.vision-text p {
  font-size: 18px;
  color: #d5cece;
  line-height: 1.6;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .vision-content {
    flex-direction: column;
    text-align: center;
  }
  .vision-text {
    margin-left: 0;
    margin-top: 20px;
  }
}



.team-emails-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: left;
}

.team-emails-section h2 {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
}

.emails-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: auto;
}

.email-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.email-item .role {
  font-weight: 600;
  color: #fff;
  min-width: 160px; /* ensures alignment */
}

.email-item a {
  color: #ffc019;
  text-decoration: none;
}

.email-item a:hover {
  text-decoration: underline;
  color: #007bff;
}

/* Responsive */
@media (max-width: 480px) {
  .email-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .email-item .role {
    min-width: auto;
  }
}






/* ---------- Base Styles ---------- */
.main-banner {
  position: relative;
  overflow: hidden;
  background-color: #161625;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.main-banner-bg-wrapper {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Background Image */
.main-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/projects-images/RMC-4.jpg');
  background-size: cover;
  background-position: center right;
  z-index: 1;
  filter: brightness(40%) contrast(110%);
}

/* Overlay */
.main-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9));
  z-index: 2;
}

/* ---------- Content Section ---------- */
.main-banner-info {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  max-width: 1300px;
  margin: auto;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 0;
}

/* Left Text Section */
.main-banner-content {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.main-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  color: #fff;
}

.main-banner-title span {
  color: #ffb703;
  text-shadow: 0 0 15px #916b0d;
}

.main-banner-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-top: 15px;
  color: #ccc;
  line-height: 1.6;
}

.main-banner-btn {
  display: inline-block;
  margin-top: 25px;
  background: #ffb703;
  color: #121111;
  padding: 12px 30px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.main-banner-btn:hover {
  background: #ffb703;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

/* Right Image Section */
.main-banner-image {
  flex: 1;
  min-width: 300px;
  max-width: 700px;
  display: flex;
  justify-content: flex-end;
}

.main-banner-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 102, 0, 0.3);
  transition: transform 0.5s ease;
}

.main-banner-image img:hover {
  transform: scale(1.05);
}

/* ---------- Keep Van Unchanged ---------- */
.main-banner-van {
  height: 100px;
  transition: all 0.3s ease;
}

/* ---------- Responsive ---------- */

/* Tablet View */
@media (max-width: 992px) {
  .main-banner-info {
    flex-direction: column-reverse;
    text-align: center;
    align-items: center;
  }

  .main-banner-content {
    max-width: 600px;
  }

  .main-banner-image {
    justify-content: center;
  }

  .main-banner-image img {
    width: 80%;
  }
}

/* Mobile View */
@media (max-width: 576px) {
  .main-banner-bg-wrapper {
    min-height: 80vh;
  }

  .main-banner-title {
    font-size: 2.2rem;
  }

  .main-banner-subtitle {
    font-size: 1rem;
  }

  .main-banner-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .main-banner-image img {
    width: 100%;
    max-width: 300px;
  }
}



/* RMC Purpose Section */
.rmc-purpose {
  background: #161625;
  padding: 80px 20px;
  position: relative;
}

.rmc-purpose .section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: #fff;
  margin-bottom: 15px;
}

.rmc-purpose .rmc-intro {
  color: #c6c1c1;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Cards */
.rmc-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

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

/* Icons */
.rmc-icon {
  background: #0066cc;
  color: #fff;
  font-size: 30px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rmc-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.rmc-card p {
  color: #555;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .rmc-purpose {
    padding: 60px 15px;
  }

  .rmc-purpose .section-header h2 {
    font-size: 28px;
  }

  .rmc-intro {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .rmc-card {
    padding: 30px 20px;
  }
}


/* Our Clients Section */
.our-clients {
  background: #161625;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.our-clients .section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: #f3f0f0;
  margin-bottom: 15px;
}

.clients-intro {
  color: #adacac;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

/* Slider Container */
.clients-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Logo Track */
.clients-track {
  display: flex;
  gap: 70px;
  animation: scrollClients 25s linear infinite;
  width: max-content;
}

/* Logo Item */
.client-logo {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo Image */
.client-logo img {
  height: 110px; /* Increased size */
  width: auto;
  transition: all 0.3s ease;
  opacity: 0.95;
}

.client-logo img:hover {
  transform: scale(1.08);
  opacity: 1;
}

/* Keyframes for continuous scroll */
@keyframes scrollClients {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .our-clients {
    padding: 60px 15px;
  }

  .our-clients .section-header h2 {
    font-size: 28px;
  }

  .clients-intro {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .clients-track {
    gap: 50px;
  }

  .client-logo img {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .client-logo img {
    height: 65px;
  }
}


/*--------------------------------------------------------------
# RMC Brands Section (Grid Style)
--------------------------------------------------------------*/
.rmc-brands {
  background: #161625;
  padding: 60px 0;
}

.rmc-brands .section-header h2 {
  color: #ffff;
  font-weight: 600;
}

.brand-card {
  background: #f9f9f9;
  border-radius: 15px;
  text-align: center;
  padding: 25px 15px;
  transition: all 0.4s ease;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
}

.brand-card img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
  background-repeat: no-repeat;
}

.brand-card h4 {
  font-size: 16px;
  color: #000;
  font-weight: 600;
  margin-top: 10px;
}

/* Hover Effects */
.brand-card:hover {
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.brand-card:hover img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .brand-card img {
    height: 60px;
  }

  .brand-card {
    padding: 20px 10px;
  }

  .brand-card h4 {
    font-size: 14px;
  }
}


/* ---------- Project Showcase Section ---------- */
.section-dark {
  background-color: #161625;
  color: #f1f1f1;
  padding: 60px 0;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #e63946;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* ---------- Project Cards ---------- */
.project-card {
  background-color: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  cursor: pointer;
  transform: translateY(0);
}

.project-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 8px 25px #fc9a01;
}

.project-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 2px solid #e7dede;
  transition: transform 0.4s ease;
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-title {
  font-size: 1.1rem;
  margin: 15px 0;
  color: #fff;
  letter-spacing: 0.5px;
}

/* ---------- View All Button ---------- */
.view-all-btn {
  color: #fff;
  background: #fc9a01;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(230, 57, 70, 0.5);
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 768px) {
  .project-image {
    height: 180px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}




/* ---------- Section Base ---------- */
.section-dark {
  /* background: radial-gradient(circle at top left, #141414, #0a0a0a); */
  color: #f1f1f1;
  padding: 80px 0;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
}

.section-title::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #fc9a01;
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* ---------- Services Wrapper ---------- */
.services-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 40px;
}

/* ---------- Card Styling ---------- */
.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  text-align: center;
  padding: 35px 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

/* Hover Effect */
.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.15), transparent 70%);
  opacity: 0;
  transition: all 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 8px 25px #c97e06;
}

/* ---------- Icon ---------- */
.service-icon {
  font-size: 2.8rem;
  color: #fc9a01;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
  transform: rotate(8deg) scale(1.2);
}

/* ---------- Text ---------- */
.service-title {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.6;
}

/* ---------- Animation ---------- */
[data-aos='zoom-in'] {
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.6s ease-in-out;
}
[data-aos='zoom-in'].aos-animate {
  transform: scale(1);
  opacity: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.9rem;
  }
  .service-card {
    padding: 25px 20px;
  }
}

/* ISO Scetion */

.iso-section {
  background-color: #161625;
  color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.iso-section .section-title {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.iso-section .section-subtitle {
  color: #b0b0b0;
  font-size: 18px;
  margin-bottom: 60px;
}

.iso-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.iso-card {
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  max-width: 500px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iso-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.iso-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 3px solid #e53935;
}

.iso-content {
  padding: 25px;
  text-align: left;
}

.iso-content h3 {
  font-size: 24px;
  color: #faf612;
  margin-bottom: 10px;
}

.certificate-no {
  font-size: 15px;
  color: #aaa;
  margin-bottom: 15px;
  font-style: italic;
}

.iso-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .iso-cards {
    flex-direction: column;
    align-items: center;
  }

  .iso-card {
    max-width: 90%;
  }
}
