/* Custom CSS  */
@import url("https://fonts.googleapis.com/css2?family=Bicyclette:wght@400;500;600;700&display=swap");
/* Import Bicyclette Font */
/*@font-face {
    font-family: 'Bicyclette';
    src: url('../css/fonts/Bicyclette-Thin.eot');
    src: local('Bicyclette Thin'), local('Bicyclette-Thin'),
        url('../css/fonts/Bicyclette-Thin.eot?#iefix') format('embedded-opentype'),
        url('../css/fonts/Bicyclette-Thin.woff2') format('woff2'),
        url('../css/fonts/Bicyclette-Thin.woff') format('woff'),
        url('../css/fonts/Bicyclette-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}
*/
@font-face {
    font-family: 'Bicyclette';
    src: url('../css/fonts/Bicyclette-Bold.eot');
    src: local('Bicyclette Bold'), local('Bicyclette-Bold'),
        url('../css/fonts/Bicyclette-Bold.eot?#iefix') format('embedded-opentype'),
        url('../css/fonts/Bicyclette-Bold.woff2') format('woff2'),
        url('../css/fonts/Bicyclette-Bold.woff') format('woff'),
        url('../css/fonts/Bicyclette-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/*@font-face {
    font-family: 'Bicyclette';
    src: url('../css/fonts/Bicyclette-Regular.eot');
    src: local('Bicyclette Regular'), local('Bicyclette-Regular'),
        url('../css/fonts/Bicyclette-Regular.eot?#iefix') format('embedded-opentype'),
        url('../css/fonts/Bicyclette-Regular.woff2') format('woff2'),
        url('../css/fonts/Bicyclette-Regular.woff') format('woff'),
        url('../css/fonts/Bicyclette-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bicyclette Ultra';
    src: url('../css/fonts/Bicyclette-Ultra.eot');
    src: local('Bicyclette Ultra'), local('Bicyclette-Ultra'),
        url('../css/fonts/Bicyclette-Ultra.eot?#iefix') format('embedded-opentype'),
        url('../css/fonts/Bicyclette-Ultra.woff2') format('woff2'),
        url('../css/fonts/Bicyclette-Ultra.woff') format('woff'),
        url('../css/fonts/Bicyclette-Ultra.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bicyclette';
    src: url('../css/fonts/Bicyclette-Black.eot');
    src: local('Bicyclette Black'), local('Bicyclette-Black'),
        url('../css/fonts/Bicyclette-Black.eot?#iefix') format('embedded-opentype'),
        url('../css/fonts/Bicyclette-Black.woff2') format('woff2'),
        url('../css/fonts/Bicyclette-Black.woff') format('woff'),
        url('../css/fonts/Bicyclette-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Bicyclette';
    src: url('../css/fonts/Bicyclette-Italic.eot');
    src: local('Bicyclette Italic'), local('Bicyclette-Italic'),
        url('../css/fonts/Bicyclette-Italic.eot?#iefix') format('embedded-opentype'),
        url('../css/fonts/Bicyclette-Italic.woff2') format('woff2'),
        url('../css/fonts/Bicyclette-Italic.woff') format('woff'),
        url('../css/fonts/Bicyclette-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Bicyclette';
    src: url('../css/fonts/Bicyclette-Light.eot');
    src: local('Bicyclette Light'), local('Bicyclette-Light'),
        url('../css/fonts/Bicyclette-Light.eot?#iefix') format('embedded-opentype'),
        url('../css/fonts/Bicyclette-Light.woff2') format('woff2'),
        url('../css/fonts/Bicyclette-Light.woff') format('woff'),
        url('../css/fonts/Bicyclette-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}*/

/*body {
  font-family: 'Bicyclette';
}
*/
:root {
  --primary-color: #d5b929;
  --secondary-color: #0e6d57;
  --light-gray: #f8f9fa;
  --dark-gray: #343a40;
}

/* Apply Bicyclette to all headings */
h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: 'Bicyclette';
      line-height: 1;
}

:root {
  --primary-color: #d5b929;
  --secondary-color: #0e6d57;
  --light-gray: #f8f9fa;
  --dark-gray: #343a40;
}

/* Top Header Styles */
.top-header {
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.top-header .social-link:hover {
  background-color: var(--primary-color);
  color: white !important;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Override Bootstrap primary color */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #c4a825;
  border-color: #c4a825;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--gradient-primary);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}
.badge-primary {
  background-color: var(--primary-color);
}

.badge-secondary {
  background-color: var(--secondary-color);
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(14, 109, 87, 0.8) 100%);
  min-height: 100vh;
  padding-top: 120px; /* Adjusted for top header */
}

/* Main Navigation */
.navbar {
  transition: all 0.3s ease;
}

.sticky-top {
  top: 0; /* Stick to top after top header */
}

/* Service Cards */
.service-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(213, 185, 41, 0.2);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(213, 185, 41, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.service-card:hover .service-icon {
  background: rgba(213, 185, 41, 0.2);
}

/* Facts Section */
.facts-section {
  background-color: var(--secondary-color);
}

.fact-icon {
  width: 60px;
  height: 60px;
  background: rgba(213, 185, 41, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.fact-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* Commodity Cards */
.commodity-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(213, 185, 41, 0.2);
}

.commodity-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.commodity-icon {
  width: 60px;
  height: 60px;
  background: rgba(213, 185, 41, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.commodity-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* CTA Section */
.cta-section {
  background-color: var(--secondary-color);
}

/* Navigation */
.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .display-3 {
    font-size: 2.5rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .hero-section {
    padding-top: 140px; /* More space for mobile with top header */
  }

  .service-icon,
  .commodity-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i,
  .commodity-icon i {
    font-size: 1.5rem;
  }

  .top-header {
    text-align: center;
  }

  .top-header .col-lg-4 {
    margin-top: 10px;
  }
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.commodity-card {
  animation: fadeInUp 0.6s ease forwards;
}

/* Custom button styles */
.btn {
  border-radius: 25px;
  font-weight: 600;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.btn-lg {
  padding: 12px 30px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}



/* Badge styles */
.badge {
  font-size: 0.9em;
  padding: 8px 16px;
  border-radius: 20px;
}

/* Card hover effects */
.card {
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Top header responsive behavior */
@media (max-width: 991px) {
  .top-header .d-flex {
    justify-content: center;
    flex-wrap: wrap;
  }

  .top-header .mr-4 {
    margin-right: 1rem !important;
    margin-bottom: 0.5rem;
  }
}

/* Client Section Styles */
.clients-section {
  border-top: 1px solid #f8f9fa;
  border-bottom: 1px solid #f8f9fa;
}

.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.3s ease;
}

.client-logo {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
  object-fit: contain;
}

.client-item:hover .client-logo {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Owl Carousel Custom Styles */
.clients-carousel .owl-stage-outer {
  padding: 20px 0;
}

.clients-carousel .owl-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Custom responsive adjustments */
@media (max-width: 576px) {
  .client-logo {
    max-height: 60px;
  }

  .client-item {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .clients-section .display-4 {
    font-size: 2rem;
  }

  .clients-section .lead {
    font-size: 1rem;
  }
}

.trust-carousel .owl-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-logo {
  padding: 10px;
  text-align: center;
   border: 2px solid #d5b929;
    border-radius: 15px;
}

.trust-logo img {
  opacity: 1;
  transition: opacity 0.3s ease;
  /*filter: grayscale(100%);*/
 
}

.trust-logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
}
.investment-partners-carousel {
  justify-content: center;
    align-items: center;
    display: flex !important;
}
.investment-partners-carousel .owl-item {
/*  display: flex;*/
  align-items: center;
  justify-content: center;
}

.investments-logo {
  padding: 10px;
  text-align: center;
 border: 2px solid #d5b929;
  border-radius: 15px;
  min-height: 186px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.investments-logo img {
  opacity: 1;
  transition: opacity 0.3s ease;
  /*filter: grayscale(100%);*/
 
}

.investments-logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
}
.investment-partners-carousel .owl-item .investments-logo {
    margin-right: 1.5rem; /* mr-4 */
}

.investment-partners-carousel .owl-item:last-child .investments-logo {
    margin-right: 0 !important; /* mr-0 */
}
/* Center the dots */
.investment-partners-carousel .owl-dots, .trust-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* Style the dots (grey color) */
.investment-partners-carousel .owl-dots .owl-dot span, .trust-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #ccc; /* grey color */
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

/* Active dot (darker grey or black) */
.investment-partners-carousel .owl-dots .owl-dot.active span, .trust-carousel .owl-dots .owl-dot.active span {
    background: #666; /* dark grey */
}

@media (max-width: 991px) {

.investment-partners-carousel {

    display: block !important;
}
}

/* Animation for client logos */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.client-item {
  animation: fadeInUp 0.6s ease forwards;
}

/* Hover effect for the entire section */
.clients-section:hover .client-logo {
  filter: grayscale(50%) opacity(0.8);
}

.clients-section .client-item:hover .client-logo {
  filter: grayscale(0%) opacity(1);
}
/* Free Consultation Section Styles */
.auto-text-container {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auto-changing-text {
    transition: all 0.3s ease;
    font-size: 1.8rem;
    text-align: center;
}

.consultation-step {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.consultation-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #e6c84a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    color: white;
    font-size: 1.5rem;
}

.step-content {
    flex: 1;
}

.consultation-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.consultation-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    border: 2px solid rgba(213, 185, 41, 0.2);
}

.consultation-features {
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.feature-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 1.5rem;
}

.consultation-cta h4 {
    position: relative;
}

.consultation-cta h4::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Responsive adjustments for consultation section */
@media (max-width: 768px) {
    .auto-changing-text {
        font-size: 1.4rem;
    }
    
    .consultation-step {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .consultation-card {
        margin-top: 2rem;
    }
}

/* Clients Section Styles */
.clients-section {
    padding: 3rem 0;
}

.client-item {
    text-align: center;
    padding: 1rem;
}

.client-logo {
    max-width: 150px;
    max-height: 80px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}
/***********************/
/* Main Header with SlimMenu */
.main-header {
  padding: 1rem 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.header-content {
  min-height: 60px;
}

.logo a:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.login-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.login-link:hover {
  color: var(--primary-color) !important;
}

/* SlimMenu Custom Styles */
.slimmenu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.slimmenu li {
  position: relative;
  margin: 0 1rem;
}

.slimmenu li a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  display: block;
}

.slimmenu li a:hover,
.slimmenu li a.active {
  color: var(--primary-color);
}

/* Dropdown Styles for SlimMenu */
.slimmenu ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.slimmenu li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.slimmenu ul li {
  margin: 0;
  width: 100%;
  list-style: none;
}

.slimmenu ul li a {
  padding: 0.75rem 1.5rem;
  color: #6c757d;
  font-size: 0.9rem;
  border-bottom: 1px solid #f8f9fa;
}

.slimmenu ul li:last-child a {
  border-bottom: none;
}

.slimmenu ul li a:hover {
  background-color: rgba(213, 185, 41, 0.1);
  color: var(--primary-color);
}

/* Third Level Dropdown */
.slimmenu ul ul {
  top: 0;
  left: 100%;
  margin-left: -1px;
}

/* Mobile Menu Styles */
.slimmenu-collapsed {
  display: none;
}

.slimmenu-button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slimmenu-button:hover {
  background: #c4a825;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .slimmenu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
  }

  .slimmenu.slimmenu-collapsed {
    display: flex;
  }

  .slimmenu li {
    margin: 0.5rem 0;
    width: 100%;
  }

  .slimmenu ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8f9fa;
    margin-left: 1rem;
    margin-top: 0.5rem;
  }

  .slimmenu ul ul {
    margin-left: 2rem;
  }

  .header-actions {
    margin-top: 1rem;
  }

  .main-navigation {
    position: relative;
    width: 100%;
  }
}

@media (max-width: 991px) {
    .header_menu {
        position: static;
    }
    .header_menu.sticky {
        position: relative !important;
    }
    .logo img,
    .sticky .logo img {
        max-width: 210px;
        padding: 15px 0;
    }
    ul.slimmenu li a,
    .sticky ul.slimmenu li a {
        line-height: 38px;
        color:#fff !important;
    }
    ul.slimmenu li a:after {
        display: none;
    }
}

@media (max-width: 767px) {
    .top_header ul li.mail {
        display: none !important;
    }
    .top_right{display: none;}
    .top_left {
        display: inline-block;
        /* padding: 10px 0; */
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .logo img,
    .sticky .logo img {
        max-width: 180px;
        padding: 10px 0;
    }
    .menu-collapser {
        top: 15px;
    }
    ul.slimmenu {
        top: 71px;
    }
    .top_right .social_media {
        padding: 9px 0;
    }
    .top_right .cn_btn.green {
        font-size: 12px;
    }
    .top_header ul li a {
        font-size: 13px;
    }
    ul.slimmenu li a,
    .sticky ul.slimmenu li a {
        font-size: 13px;
        line-height: 34px;
    }
    ul.slimmenu li .sub-toggle {
        height: 40px;
    }
    ul.slimmenu li>ul>li a {
        font-size: 13px;
    }
}

/***********************************/
/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(14, 109, 87, 0.9) 100%);
  min-height: 75vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.floating-card .card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #e6c84a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

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

.hero-shape {
  position: absolute;
  bottom: -57px;
  left: 0;
  width: 100%;
  height: 100px;
  background: white;
  transform: skewY(-2deg);
  transform-origin: top left;
}

.hero-stats {
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
}

.stat-label {
  font-size: 0.9rem;
}

.breadcrumb-item a {
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--primary-color) !important;
}

/* Contact Information Cards */
.contact-info {
  margin-top: -50px;
  position: relative;
  z-index: 3;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #e6c84a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-content {
  flex: 1;
  margin-bottom: 1rem;
}

.contact-detail {
  margin-bottom: 0.5rem;
}

.contact-detail a {
  color: var(--secondary-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-detail a:hover {
  color: var(--primary-color);
}

.contact-action {
  margin-top: auto;
}

/* Contact Form Section */
.contact-form-section {
  padding: 4rem 0;
}

.form-container {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-header {
  margin-bottom: 2rem;
}

.form-label {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(213, 185, 41, 0.25);
}

.input-group-text {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: white;
  border-radius: 10px 0 0 10px;
}

.input-group .form-control {
  /*border-left: none;*/
  border-radius: 10px;
}
.input-group  .form-group p{
  margin-bottom:0px !important;
}
.custom-control-label {
  font-size: 0.9rem;
  color: #6c757d;
}

.custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Map Container */
.map-container {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.map-embed {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.map-embed iframe {
  border-radius: 15px;
}

.office-details {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 15px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
}

.detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(213, 185, 41, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.detail-content h6 {
  margin-bottom: 0.5rem;
}

.quick-contact {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 15px;
}

.contact-buttons .btn {
  border-radius: 25px;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  background: white;
}

.faq-card {
  border: none;
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-card .card-header {
  background: #f8f9fa;
  border: none;
  padding: 0;
}

.faq-card .btn-link {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  border: none;
  background: none;
}

.faq-card .btn-link:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.faq-card .card-body {
  padding: 1.5rem;
  background: white;
  color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero {
    min-height: 60vh;
    padding-top: 140px;
  }

  .display-3 {
    font-size: 2.5rem;
  }

  .form-container {
    padding: 2rem;
  }

  .map-container {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .floating-card {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .main-header {
    padding: 0.5rem 0;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    margin-top: 1rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Button animations */
.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer links */
footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-color) !important;
  text-decoration: none;
}

/* Form validation styles */
.form-control.is-valid {
  border-color: var(--success-color);
}

.form-control.is-invalid {
  border-color: #dc3545;
}

/* Loading animation for form submission */
.btn-loading {
  position: relative;
  color: transparent;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

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

.widget_nav_menu ul{
    padding-left: 0;
    list-style: none;
} 
.widget_nav_menu li a {
    color: #6c757d;
    font-size: 100%;
    font-weight: 400;
}

/****************************************************************/
/* About Introduction */
.about-intro {
  margin-top: -50px;
  position: relative;
  z-index: 3;
}

.intro-content {
  padding: 2rem 0;
}

.intro-features .feature-item {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.intro-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission Vision Values */
.mission-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #e6c84a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
  transform: scale(1.1);
}

/* Why Choose Us */
.why-item {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
  opacity: 0;
  transform: translateY(30px);
}

.why-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.why-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #e6c84a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  color: white;
  font-size: 1.5rem;
}

.why-content {
  flex: 1;
}

/* Team Section */
.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.team-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background-color: var(--primary-color);
  color: white !important;
  transform: translateY(-2px);
}

/* Achievements */
.achievement-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.achievement-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

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

.achievement-icon {
  width: 60px;
  height: 60px;
  background: rgba(213, 185, 41, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-color);
  font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
  background-color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero {
    min-height: 60vh;
    padding-top: 140px;
  }

  .display-3 {
    font-size: 2.5rem;
  }

  .floating-card {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .floating-card .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .main-header {
    padding: 0.5rem 0;
  }

  .mission-icon,
  .why-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .why-item {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .team-image img {
    height: 200px;
  }

  .achievement-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Button animations */
.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animation delays for staggered effect */
.why-item:nth-child(1) {
  transition-delay: 0.1s;
}
.why-item:nth-child(2) {
  transition-delay: 0.2s;
}
.why-item:nth-child(3) {
  transition-delay: 0.3s;
}
.why-item:nth-child(4) {
  transition-delay: 0.4s;
}
.why-item:nth-child(5) {
  transition-delay: 0.5s;
}
.why-item:nth-child(6) {
  transition-delay: 0.6s;
}
.team-card:nth-child(1) {
  transition-delay: 0.1s;
}
.team-card:nth-child(2) {
  transition-delay: 0.2s;
}
.team-card:nth-child(3) {
  transition-delay: 0.3s;
}

.achievement-card:nth-child(1) {
  transition-delay: 0.1s;
}
.achievement-card:nth-child(2) {
  transition-delay: 0.2s;
}
.achievement-card:nth-child(3) {
  transition-delay: 0.3s;
}
.achievement-card:nth-child(4) {
  transition-delay: 0.4s;
}
/*************************service***********************************/
/*.section-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(213, 185, 41, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-badge i {
  margin-right: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: "Bicyclette", serif;
}

.section-description {
  font-size: 1.125rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}


.creative-services {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover,
.service-card.hovered {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: rgba(213, 185, 41, 0.3);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-light);
}

.service-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-badge.popular {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
}

.service-badge.recommended {
  background: linear-gradient(135deg, #00d2d3, #54a0ff);
  color: white;
}

.service-badge.long-term {
  background: linear-gradient(135deg, #feca57, #ff9ff3);
  color: white;
}

.service-badge.premium {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.service-badge.specialty {
  background: linear-gradient(135deg, #f093fb, #f5576c);
  color: white;
}

.service-content {
  margin-bottom: 2rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-family: "Bicyclette", serif;
}

.service-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  color: #6c757d;
}

.service-features li i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  font-size: 0.875rem;
}

.service-footer {
  display: flex;
  gap: 1rem;
}

.service-footer .btn {
  flex: 1;
  text-align: center;
}


.service-item {
  position: relative;
  padding: 3rem 0;
}

.service-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e9ecef, transparent);
}

.service-number {
  position: absolute;
  top: -20px;
  left: 0;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(213, 185, 41, 0.3);
}

.service-icon-large {
  width: 100px;
  height: 100px;
  background: rgba(213, 185, 41, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2.5rem;
}

.service-features , .service-item ul {
  list-style: none;
  padding: 0;
}

.service-features li, .service-item li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f8f9fa;
}

.service-features li:last-child, .service-item li:last-child {
  border-bottom: none;
}

.service-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
*/
/***********************service***********************/
/***********************service New***********************/
/* Services Section */
.services-section {
  padding: 80px 0;
  background: #fff;
}

.services-new-category {
  margin-bottom: 60px;
}

.category-title {
  font-size: 2rem;
  font-weight: 600;
  color: #d5b929;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.category-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #d5b929;
}

.services-new-card {
  background: #fff;
  border: 2px solid #f8f9fa;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  cursor: pointer;
}

.services-new-card:hover {
  border-color: #d5b929;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 85, 48, 0.1);
}

.services-new-icon{
  width: 90px;
  height: 90px;
  background: rgba(213, 185, 41, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.services-new-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.service-card:hover .services-new-icon {
  background: rgba(213, 185, 41, 0.2);
  transform: scale(1.1);
}

/*.services-new-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d5b929, #4a7c59);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.services-new-card:hover .services-new-icon {
  transform: scale(1.1);
}

.services-new-icon i {
  color: #fff;
  font-size: 1.5rem;
}*/

.services-new-card h5 {
  color: #0e6d57;
  font-weight: 600;
  margin: 0;
  font-size: 1.1rem;
}  
/***********************service New***********************/
/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.small {
    font-size: 100%;
    font-weight: 400;
}