/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  background: rgba(32, 42, 68, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.sticked {
  padding: 15px 0;
  background: rgba(32, 42, 68, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 40px;
  margin-right: 8px;
}

.header .logo span {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

/* Navigation */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 15px;
  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;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #202a44;
}

.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: #b8860b;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

/* CTA Button */
.cta-button {
  background: #b8860b;
  color: #fff;
  border-radius: 4px;
  padding: 8px 20px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
  border: 2px solid #b8860b;
}

.cta-button:hover {
  background: #a3780a;
  color: #fff;
  border-color: #a3780a;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(rgba(32, 42, 68, 0.7), rgba(32, 42, 68, 0.7)), url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
  padding: 120px 0;
  color: #fff;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
}

.hero h1 span {
  color: #b8860b;
}

.hero h2 {
  font-size: 24px;
  margin: 10px 0 20px;
  color: rgba(255, 255, 255, 0.8);
}

.hero h2 span {
  color: #b8860b;
  border-bottom: 2px solid #b8860b;
}

.hero p {
  font-size: 16px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.btn-primary {
  background: #b8860b;
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid #b8860b;
}

.btn-primary:hover {
  background: transparent;
  color: #b8860b;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 134, 11, 0.1);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 14px;
}

.badge-item i {
  color: #b8860b;
}

.hero-img {
  position: relative;
}

.hero-img img {
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.social-links {
  position: absolute;
  bottom: 30px;
  right: -15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #202a44;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
  transform: translateY(-3px);
  color: #fff;
}

.social-links .tiktok:hover {
  background: #000;
}

.social-links .facebook:hover {
  background: #3b5998;
}

.social-links .instagram:hover {
  background: #e4405f;
}

.social-links .linkedin:hover {
  background: #0077b5;
}

.social-links .whatsapp:hover {
  background: #25D366;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}

.scroll-down:hover {
  color: #b8860b;
}

.scroll-down i {
  font-size: 24px;
  animation: bounce 2s infinite;
}

.scroll-down span {
  font-size: 12px;
  margin-top: 5px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Typed.js cursor styling */
.typed-cursor {
  opacity: 1;
  color: #b8860b;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0% { opacity:1; }
  50% { opacity:0; }
  100% { opacity:1; }
}

/* End Hero Section
-------------------------*/

/* About Section */
.about-section {
  padding: 100px 0;
  background-color: #fff;
}

.about-section .section-header {
  margin-bottom: 60px;
}

.about-section .section-title {
  color: #202a44; /* Primary color */
}

.about-section .section-divider {
  background: linear-gradient(to right, #202a44, #b8860b); /* Primary to Secondary */
}

.about-section .section-description {
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
}

/* About Image Container */
.about-img-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-img-container:hover .about-img {
  transform: scale(1.03);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-badge .years {
  color: #b8860b; /* Secondary color */
}

.experience-badge .text {
  font-size: 14px;
  color: #7f8c8d;
}

/* About Content */
.about-content {
  padding-left: 30px;
}

.about-content h3 {
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  font-size: 28px;
}

/* Tabs */
.about-tabs {
  margin-bottom: 30px;
}

.nav-tabs {
  border-bottom: 2px solid #eee;
}

.nav-tabs .nav-link {
  border: none;
  color: #7f8c8d;
  font-weight: 600;
  padding: 12px 25px;
  position: relative;
}

.nav-tabs .nav-link.active {
  color: #b8860b; /* Secondary color */
}


.nav-tabs .nav-link.active:after {
  background: #b8860b; /* Secondary color */
}

.nav-tabs .nav-link:hover {
  color: #b8860b; /* Secondary color */
}


.tab-content {
  padding: 20px 0;
}

.tab-content p {
  color: #7f8c8d;
  margin-bottom: 20px;
}

/* About List */
.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-list li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
}

.about-list i {
  color: #b8860b; /* Secondary color */
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.value-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(32, 42, 68, 0.05); /* Primary color with 5% opacity */
}


.value-item i {
  color: #b8860b; /* Secondary color */
}


.value-item h5 {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 14px;
  margin-bottom: 0;
}

/* Stats */
.stats-container {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-item .count {
  color: #202a44; /* Primary color */
}


.stat-item p {
  color: #7f8c8d;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 14px;
}

/* Hover Effects */
.about-img-container:hover .about-img {
  transform: scale(1.03);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(32, 42, 68, 0.1); /* Primary color shadow */
}


/* Responsive */
@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .nav-tabs .nav-link {
    padding: 10px 15px;
    font-size: 14px;
  }
}

/*About Section Style Ends*/


/* Video Section Styles */
.video-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.video-container {
  position: relative;
  height: 100%;
  background: url('assets/img/video-bg.jpg') no-repeat center center;
  background-size: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 42, 68, 0.7);
}

.video-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.video-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.video-divider {
  width: 80px;
  height: 2px;
  background: #b8860b;
  margin: 0 auto 20px;
}

.video-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
}

.video-play-button {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-play-button:hover {
  transform: scale(1.05);
}

.play-icon-wrapper {
  width: 70px;
  height: 70px;
  background: #b8860b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.video-play-button:hover .play-icon-wrapper {
  background: #202a44;
}

.play-icon-wrapper i {
  font-size: 1.8rem;
  color: white;
  margin-left: 5px;
}

.video-play-button span {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Modal Styles */
.modal-content {
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.modal-header {
  background: #202a44;
  color: white;
  border-bottom: none;
}

.modal-title {
  font-weight: 600;
}

.btn-close {
  filter: invert(1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .about-section {
    padding: 80px 0;
  }
  
  .about-heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .video-section {
    height: 400px;
  }
  
  .video-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .about-feature {
    flex-direction: column;
  }
  
  .feature-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .video-section {
    height: 350px;
  }
  
  .video-title {
    font-size: 1.8rem;
  }
  
  .play-icon-wrapper {
    width: 60px;
    height: 60px;
  }
}

/* End Video Section
--------------------------*/

/* Pillars Section */
.pillars-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.pillars-section .section-header {
  margin-bottom: 60px;
}

.pillars-section .section-title {
  font-weight: 700;
  color: #202a44;
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.pillars-section .section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #202a44, #b8860b);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.pillars-section .section-description {
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Pillar Cards */
.pillar-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(32, 42, 68, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
  border: 1px solid rgba(32, 42, 68, 0.05);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #b8860b;
  transition: all 0.4s ease;
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(32, 42, 68, 0.15);
}

.pillar-card:hover::before {
  height: 10px;
}

/* Individual Pillar Top Borders */
.pillar-card.vision::before {
  background: linear-gradient(to right, #202a44, #b8860b);
}

.pillar-card.mission::before {
  background: linear-gradient(to right, #b8860b, #a6780a);
}

.pillar-card.values::before {
  background: linear-gradient(to right, #202a44, #142038);
}

.pillar-card.goals::before {
  background: linear-gradient(to right, #b8860b, #202a44);
}

/* Pillar Icons */
.pillar-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(184, 134, 11, 0.1);
  color: #b8860b;
  font-size: 36px;
  transition: all 0.4s ease;
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(184, 134, 11, 0.2);
}

/* Pillar Content */
.pillar-card h3 {
  font-weight: 700;
  color: #202a44;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.pillar-card p {
  color: #6c757d;
  margin-bottom: 0;
  transition: all 0.4s ease;
  font-size: 0.95rem;
}

/* Hover Content */
.pillar-hover {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 30px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
}

.pillar-card:hover .pillar-hover {
  top: 0;
  opacity: 1;
}

.pillar-card:hover p {
  opacity: 0;
}

.pillar-hover h4 {
  font-weight: 700;
  color: #202a44;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.pillar-hover ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.pillar-hover li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  color: #495057;
  font-size: 0.9rem;
}

.pillar-hover li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 10px;
  height: 2px;
  background: #b8860b;
}

/* CTA */
.pillars-cta {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(32, 42, 68, 0.08);
  max-width: 800px;
  margin: 40px auto 0;
  border: 1px solid rgba(32, 42, 68, 0.05);
}

.pillars-cta p {
  color: #6c757d;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.btn-pillars {
  background: linear-gradient(to right, #202a44, #b8860b);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  color: white;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-pillars:hover {
  background: linear-gradient(to right, #b8860b, #202a44);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
  color: white;
}

/* Responsive */
@media (max-width: 991px) {
  .pillar-card {
    padding: 30px 20px;
  }
  
  .pillar-icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .pillars-section {
    padding: 60px 0;
  }
  
  .pillar-hover {
    position: relative;
    top: auto;
    padding: 20px 0 0;
    background: transparent;
    opacity: 1;
  }
  
  .pillar-card p {
    margin-bottom: 20px;
  }
  
  .pillar-card:hover p {
    opacity: 1;
  }
  
  .pillars-cta {
    padding: 20px;
  }
}

/* End Pillars Section Styles */


/* Services Section Styles */

.services-section {
  padding: 100px 0;
  position: relative;
}

/* Center align the header content */
.services-section .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Style for the divider to center it */
.services-section .section-divider {
  margin: 15px auto;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #202a44, #b8860b);
}

/* Optional: Add some spacing */
.services-section .section-title {
  margin-bottom: 10px;
}

.services-section .section-subtitle {
  margin-top: 15px;
  color: #6c757d; /* Optional: subtle text color */
}


.services-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  color: #555;
  line-height: 1.8;
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  perspective: 1000px;
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  min-height: 400px;
  border-bottom: 3px solid #b8860b;
}

.service-card:hover .service-card-inner {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(32, 42, 68, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(184, 134, 11, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: #b8860b;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: #b8860b;
  color: white;
  transform: rotateY(180deg);
}

.service-card h3 {
  color: #202a44;
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.service-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #555;
  line-height: 1.6;
}

.service-features li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: #b8860b;
  border-radius: 50%;
}

.service-cta {
  text-align: center;
  margin-top: auto;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: #202a44;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #b8860b;
}

.service-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .pillars-section, .services-section {
    padding: 80px 0;
  }
  
  .pillars-container, .services-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .pillars-section, .services-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card-inner {
    min-height: 380px;
  }
}

@media (max-width: 576px) {
  .pillars-container, .services-grid {
    grid-template-columns: 1fr;
  }
  
  .pillar-card, .service-card-inner {
    padding: 25px;
  }
  
  .services-intro {
    font-size: 1rem;
  }
}

/* End Services Section
--------------------------------*/

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}


/* Team Section Title Styling */

.team .section-title {
  color: #202a44;
  text-align: center;
  margin-bottom: 15px;
}

.team .section-title-divider {
  width: 50px;
  height: 2px;
  background: #b8860b;
  margin: 0 auto 20px auto;
}

.team .section-description {
  text-align: center;
  max-width: 800px;
  color: #555;
  margin-bottom: 40px;
}

.team .member {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  height: 100%;
}

.team .member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .member-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s;
}

.team .member:hover .member-img img {
  transform: scale(1.1);
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: -60px;
  right: 0;
  height: 60px;
  opacity: 0;
  transition: bottom ease-in-out 0.4s, opacity ease-in-out 0.2s;
  background: rgba(32, 42, 68, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  font-size: 18px;
}

.team .member .social a:hover {
  color: #b8860b;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .social {
  bottom: 0;
  opacity: 1;
}

.team .member .member-info {
  padding: 25px 20px;
  text-align: center;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #202a44;
}

.team .member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #b8860b;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #666;
}

/* Join Our Team Card */
.team .join-team {
  background: linear-gradient(135deg, #202a44 0%, #3a4a6e 100%);
  color: #fff;
}

.team .join-team .member-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
}

.team .join-team .join-team-icon {
  font-size: 60px;
  color: #b8860b;
}

.team .join-team .member-info h4,
.team .join-team .member-info span,
.team .join-team .member-info p {
  color: #fff;
}

.team .join-team .member-info span {
  color: #b8860b;
}

.team .btn-join {
  display: inline-block;
  padding: 8px 25px;
  background: #b8860b;
  color: #fff;
  border-radius: 4px;
  margin-top: 15px;
  transition: all 0.3s;
  border: 2px solid #b8860b;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

.team .btn-join:hover {
  background: transparent;
  color: #b8860b;
  text-decoration: none;
}

/*End Team Styles*/

/* Subscribe Section Styles */
.subscribe-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #202a44 0%, #0e1422 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.subscribe-section:before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(184, 134, 11, 0.1);
  border-radius: 50%;
}

.subscribe-section:after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(184, 134, 11, 0.05);
  border-radius: 50%;
}

.subscribe-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.subscribe-content {
  flex: 1;
  padding-right: 50px;
}

.subscribe-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.subscribe-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.7;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  margin-bottom: 15px;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.benefits-list i {
  color: #b8860b;
  margin-right: 10px;
  font-size: 1.2rem;
}

.subscribe-form {
  flex: 1;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.modern-form {
  width: 100%;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #eee;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-group input:focus {
  border-color: #b8860b;
  outline: none;
}

.submit-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  background: #202a44;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #b8860b;
}

.submit-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(3px);
}

.form-message {
  text-align: center;
  color: #4CAF50;
  font-size: 0.9rem;
  margin-top: 10px;
  min-height: 20px;
}

.privacy-note {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 0.8rem;
  margin-top: 20px;
}

.privacy-note i {
  color: #b8860b;
  margin-right: 8px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .team-section, .subscribe-section {
    padding: 80px 0;
  }
  
  .subscribe-container {
    flex-direction: column;
  }
  
  .subscribe-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .benefits-list {
    display: inline-block;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .team-section, .subscribe-section {
    padding: 60px 0;
  }
  
  .member-image {
    height: 250px;
  }
  
  .subscribe-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .team-carousel {
    padding: 10px;
  }
  
  .subscribe-form {
    padding: 30px 20px;
  }
  
  .input-group input {
    padding: 12px 15px;
  }
  
  .submit-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}
/*End Subscribe Styles*/

/* Portfolio Section Styles */
.portfolio-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.portfolio-filters {
  margin-bottom: 40px;
  text-align: center;
}

.portfolio-filters ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  background: white;
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(32, 42, 68, 0.05);
}

.portfolio-filters li {
  cursor: pointer;
  padding: 10px 25px;
  margin: 0 5px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #202a44;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.portfolio-filters li:hover,
.portfolio-filters li.active {
  background: #202a44;
  color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.portfolio-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.portfolio-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(32, 42, 68, 0.1);
}

.portfolio-wrap img {
  transition: all 0.5s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.portfolio-item:hover .portfolio-wrap img {
  transform: scale(1.05);
}

.portfolio-info {
  position: absolute;
  inset: 0;
  background: rgba(32, 42, 68, 0.8);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-item:hover .portfolio-info {
  opacity: 1;
}

.portfolio-content {
  text-align: center;
  padding: 20px;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-content {
  transform: translateY(0);
}

.portfolio-content h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.portfolio-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.portfolio-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(184, 134, 11, 0.8);
  color: white;
  border-radius: 50%;
  margin: 0 5px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.portfolio-links a:hover {
  background: white;
  color: #202a44;
  transform: translateY(-5px);
}

/*#############Portfolio Styles Ends####################*/

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #202a44;
  margin-bottom: 15px;
}

.faq-section .section-divider {
  width: 60px;
  height: 3px;
  background: #b8860b;
  margin: 0 auto 20px;
}

.faq-section .section-description {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* FAQ Accordion */
.faq-accordion {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-item:last-child {
  border-bottom: none;
}

.faq-accordion .accordion-button {
  background-color: #fff;
  color: #202a44;
  font-weight: 600;
  padding: 20px 25px;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: #202a44;
  color: #fff;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23202a44'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
  padding: 20px 25px;
  background-color: #f8f9fa;
  color: #555;
}

/* FAQ Image */
.faq-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .faq-image {
    margin-bottom: 40px;
  }
}

/*#############FAQs Styles Ends####################*/


/* Start Catalogue Section*/

/* Brand Color Variables */
:root {
  --brand-primary: #202a44;
  --brand-secondary: #b8860b;
  --brand-primary-light: rgba(32, 42, 68, 0.1);
  --brand-secondary-light: rgba(184, 134, 11, 0.1);
}

/* Catalogue Section Styles */
.catalogue-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.section-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 15px;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--brand-primary), var(--brand-secondary));
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-description {
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Brand Buttons */
.btn-brand {
  background-color: var(--brand-primary);
  color: white;
  border: none;
}

.btn-brand:hover {
  background-color: #182338;
  color: white;
}

.btn-outline-brand {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.btn-outline-brand:hover {
  background-color: var(--brand-primary);
  color: white;
}

.btn-outline-brand.active {
  background-color: var(--brand-primary);
  color: white;
}

/* Category Filter */
.category-filter {
  margin-bottom: 30px;
}

.category-filter .btn-group {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.category-filter .btn {
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Product Cards */
.catalogue-grid {
  transition: all 0.3s ease;
}

.product-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(32, 42, 68, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(32, 42, 68, 0.15);
}

.badge-container {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 4px;
}

.bg-brand-secondary {
  background-color: var(--brand-secondary) !important;
}

.product-image-container {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img {
  transform: scale(1.05);
}

.quick-view {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  background-color: rgba(32, 42, 68, 0.9);
  color: white;
  text-align: center;
  padding: 8px 0;
  cursor: pointer;
  transition: bottom 0.3s ease;
}

.product-card:hover .quick-view {
  bottom: 0;
}

.card-body {
  padding: 20px;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--brand-primary);
}

.product-rating {
  font-size: 0.9rem;
}

.product-description {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -moz-box; /* Firefox fallback (optional) */
  -webkit-line-clamp: 2; /* Legacy WebKit (Chrome, Safari) */
  -moz-line-clamp: 2; /* Firefox (if needed) */
  line-clamp: 2; /* Modern standard (future-proof) */
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical; /* Firefox fallback */
  overflow: hidden;
  text-overflow: ellipsis;
}

.price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.current-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-primary);
}

.original-price {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: #95a5a6;
}

.price-desc {
  font-size: 0.8rem;
  color: #6c757d;
}

.product-actions {
  display: flex;
  gap: 5px;
}

.enquire-btn, .cart-btn {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* View More Button */
.view-more-btn {
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
  background: linear-gradient(to right, var(--brand-primary), var(--brand-secondary));
  border: none;
  transition: all 0.3s ease;
  color: white;
}

.view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
  background: linear-gradient(to right, var(--brand-secondary), var(--brand-primary));
}

/* Product Modal Styles */
.product-gallery {
  position: relative;
}

.main-product-image {
  width: 100%;
  height: 350px;
  object-fit: contain;
  border-radius: 8px;
  background-color: #f8f9fa;
}

.thumbnail-container {
  display: flex;
  gap: 10px;
}

.thumbnail-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbnail-img.active {
  border-color: var(--brand-primary);
}

.product-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 15px;
}

.price-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.discount-badge {
  background-color: #e74c3c;
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.option-group {
  margin-bottom: 15px;
}

.option-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--brand-primary);
}

.color-options {
  display: flex;
  gap: 10px;
}

.color-option {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
}

.color-option.active {
  border-color: var(--brand-primary);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 5px;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.quantity-input {
  width: 50px;
  height: 30px;
  text-align: center;
  border: 1px solid #ddd;
}

.add-to-cart-btn {
  padding: 10px 20px;
  border-radius: 30px;
}

.product-meta {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.meta-item {
  display: flex;
  margin-bottom: 8px;
}

.meta-label {
  font-weight: 600;
  color: var(--brand-primary);
  min-width: 80px;
}

.meta-value {
  color: #6c757d;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
  
  .product-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .category-filter .btn {
    padding: 6px 15px;
    font-size: 0.9rem;
  }
  
  .product-image-container {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.6rem;
  }
  
  .product-card {
    margin-bottom: 15px;
  }
  
  .view-more-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  
  .modal-body {
    padding: 15px;
  }
  
  .main-product-image {
    height: 250px;
  }
}
/* End FAQ Styles */


/* Catalogue Section Styles */
.promotional-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(32, 42, 68, 0.1);
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: white;
  position: relative;
  overflow: hidden;
}

.promotional-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  transform: rotate(30deg);
  z-index: 1;
}

.promotional-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(32, 42, 68, 0.2);
}

.promotional-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
}

.promotional-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.promotional-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.promotional-subtitle {
  font-size: 1.2rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.promotional-description {
  margin-bottom: 20px;
  font-size: 1rem;
  opacity: 0.9;
}

.promotional-image {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 40%;
  max-height: 80%;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
  transition: all 0.5s ease;
}

.promotional-card:hover .promotional-image {
  transform: scale(1.05) rotate(5deg);
}

.promotional-button {
  background-color: white;
  color: var(--brand-primary);
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: auto;
  align-self: flex-start;
  transition: all 0.3s ease;
  z-index: 2;
}

.promotional-button:hover {
  background-color: rgba(255,255,255,0.9);
  color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.countdown-timer {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.countdown-item {
  background-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  padding: 5px 10px;
  border-radius: 5px;
  text-align: center;
  min-width: 50px;
}

.countdown-number {
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
}

.countdown-label {
  font-size: 0.7rem;
  opacity: 0.8;
  display: block;
  text-transform: uppercase;
}

/* Seasonal Theme Colors */
.promotional-card.christmas {
  background: linear-gradient(135deg, #b81d13, #0e5e27);
}

.promotional-card.valentines {
  background: linear-gradient(135deg, #e84393, #fd79a8);
}

.promotional-card.easter {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.promotional-card.mothers-day {
  background: linear-gradient(135deg, #e84393, #fd79a8);
}

.promotional-card.fathers-day {
  background: linear-gradient(135deg, #0984e3, #74b9ff);
}

.promotional-card.halloween {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.promotional-card.new-year {
  background: linear-gradient(135deg, #182C61, #6D214F);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .promotional-title {
    font-size: 1.5rem;
  }
  .promotional-subtitle {
    font-size: 1rem;
  }
  .promotional-image {
    width: 35%;
  }
}

@media (max-width: 768px) {
  .promotional-card {
    text-align: center;
  }
  .promotional-content {
    padding: 20px;
  }
  .promotional-title {
    font-size: 1.3rem;
  }
  .promotional-image {
    position: relative;
    width: 100%;
    right: auto;
    bottom: auto;
    margin-top: 15px;
  }
  .promotional-button {
    align-self: center;
  }
  .countdown-timer {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .promotional-title {
    font-size: 1.2rem;
  }
  .promotional-subtitle {
    font-size: 0.9rem;
  }
  .countdown-item {
    min-width: 40px;
    padding: 3px 5px;
  }
  .countdown-number {
    font-size: 1rem;
  }
}

/* End Catelogue Section
--------------------------------*/


/* Blog Section Styles */

.blog-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.blog-section .section-title {
  color: #202a44;
 text-align: center;
  position: relative;
  margin-bottom: 20px; 
}

.blog-section .section-title-divider {
  background: #b8860b;
  width: 50px;
  height: 2px;
  background: #3498db;
  margin: 0 auto 20px auto;
}

.blog-section .section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #6c757d;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-date {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(32, 42, 68, 0.9);
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  text-align: center;
  line-height: 1.2;
}

.blog-date span:first-child {
  font-size: 22px;
  font-weight: 700;
  display: block;
}

.blog-date span:last-child {
  font-size: 12px;
  text-transform: uppercase;
}

.blog-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.blog-category {
  background: #b8860b;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.blog-category:hover {
  background: #202a44;
  text-decoration: none;
}

.blog-author {
  color: #777;
  font-size: 12px;
}

.blog-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.blog-content h4 a {
  color: #202a44;
  transition: 0.3s;
}

.blog-content h4 a:hover {
  color: #b8860b;
  text-decoration: none;
}

.blog-content p {
  color: #555;
  font-size: 14px;
  margin-bottom: 15px;
  flex: 1;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.read-more {
  color: #b8860b;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.read-more:hover {
  color: #202a44;
  text-decoration: none;
}

.read-more i {
  margin-left: 5px;
  transition: 0.3s;
}

.read-more:hover i {
  transform: translateX(3px);
}

.blog-stats {
  color: #777;
  font-size: 12px;
}

.blog-stats span {
  margin-left: 10px;
}

.blog-stats i {
  margin-right: 3px;
}

.btn-view-all {
  display: inline-block;
  background: #202a44;
  color: #fff;
  padding: 10px 30px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #202a44;
}

.btn-view-all:hover {
  background: transparent;
  color: #202a44;
  text-decoration: none;
}

.btn-view-all i {
  margin-left: 5px;
  transition: 0.3s;
}

.btn-view-all:hover i {
  transform: translateX(5px);
}

/* End Blog Section
--------------------------------*/

/* Contact Section Styles */
.contact-section {
  padding: 100px 0 0;
  position: relative;
  background-color: #f9f9f9;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.contact-info {
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(32, 42, 68, 0.05);
}

.info-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(184, 134, 11, 0.1);
  color: #b8860b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.info-content h3 {
  color: #202a44;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.info-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-social {
  margin-top: 40px;
}

.contact-social h3 {
  color: #202a44;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f1f1f1;
  color: #202a44;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #b8860b;
  color: white;
  transform: translateY(-3px);
}

.social-links .twitter:hover { background: #1DA1F2; }
.social-links .facebook:hover { background: #4267B2; }
.social-links .instagram:hover { background: #E1306C; }
.social-links .linkedin:hover { background: #0077B5; }
.social-links .whatsapp:hover { background: #25D366; }

.contact-form {
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(32, 42, 68, 0.05);
}

.modern-contact-form .form-group {
  margin-bottom: 20px;
}

.modern-contact-form .form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.modern-contact-form .form-control:focus {
  border-color: #b8860b;
  box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.25);
  outline: none;
}

.modern-contact-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  text-align: right;
}

.submit-btn {
  background: #202a44;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #b8860b;
  transform: translateY(-3px);
}

.submit-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

.contact-map {
  width: 100%;
  height: 450px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(90%);
}

/* End Contact Section
--------------------------------*/

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 30px 0;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: gray;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* Footer Styles */
.modern-footer {
  background: #202a44;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-top {
  padding: 80px 0 40px;
}

.footer-brand {
  margin-bottom: 40px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.footer-about {
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #b8860b;
  transform: translateY(-3px);
}

.footer-links h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #b8860b;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  padding: 8px 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
  text-decoration: none;
}

.footer-links i {
  color: #b8860b;
  margin-right: 8px;
  font-size: 0.8rem;
}

.footer-newsletter h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-newsletter h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #b8860b;
}

.newsletter-form {
  position: relative;
  margin-bottom: 30px;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 35px;
  height: 35px;
  background: #b8860b;
  color: white;
  border: none;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: white;
  color: #202a44;
}

.payment-methods h5 {
  color: white;
  font-size: 1rem;
  margin-bottom: 10px;
}

.payment-icons {
  display: flex;
  gap: 15px;
}

.payment-icons i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.payment-icons i:hover {
  color: #b8860b;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.copyright strong {
  color: white;
}

.footer-menu {
  margin-bottom: 10px;
}

.footer-menu ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  padding: 0 15px;
  position: relative;
}

.footer-menu li:not(:last-child):after {
  content: '•';
  position: absolute;
  right: -5px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  color: #b8860b;
  text-decoration: none;
}

.credits {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

.credits a {
  color: rgba(255, 255, 255, 0.6);
}

.credits a:hover {
  color: #b8860b;
  text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .footer-top .row > div {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0 0;
  }
  
  .footer-menu ul {
    flex-direction: column;
  }
  
  .footer-menu li {
    padding: 5px 0;
  }
  
  .footer-menu li:after {
    display: none;
  }
}

@media (max-width: 576px) {
  .info-card {
    flex-direction: column;
  }
  
  .info-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# End Footer
--------------------------------------------------------------*/

