@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #7cb342;
  --primary-hover: #689f38;
  --secondary-color: #17384a;
  --gradient-teal: linear-gradient(to right, #8bc34a, #7cb342);
  --gradient-bg: linear-gradient(135deg, #8bc34a 0%, #558b2f 100%);
  --text-dark: #1a252f;
  --text-light: #f4f7f6;
  --bg-dark: #17384a;
  --bg-light: #f4f9f9;
  --bg-white: #ffffff;
  --whatsapp-green: #25D366;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-hover);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-white);
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 500;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(45, 181, 163, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(45, 181, 163, 0.4);
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-white:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  padding: 15px 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-brand img {
  height: 50px;
  object-fit: contain;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

/* Specific transparent navbar for hero sections */
.navbar-transparent {
  background-color: transparent !important;
  position: absolute;
  width: 100%;
  top: 0;
}

.navbar-transparent .nav-link,
.navbar-transparent .navbar-brand {
  color: var(--bg-white) !important;
}

.navbar-transparent .nav-link:hover,
.navbar-transparent .nav-link.active {
  color: var(--primary-color) !important;
}

/* Sticky Navbar */
.navbar.scrolled {
  background-color: var(--bg-white) !important;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  animation: slideDown 0.5s ease-in-out;
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand {
  color: var(--text-dark) !important;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* Hero Section */
.hero-section {
  position: relative;
  background: url('../assets/images/hero.png') no-repeat center center/cover;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--bg-white);
  padding-top: 100px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 42, 42, 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  color: var(--bg-white);
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 500;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Internal Page Header */
.page-header {
  position: relative;
  background: url('../assets/images/hero.png') no-repeat center center/cover;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--bg-white);
  padding-top: 80px;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 0;
}

/* Section Styling */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.title-underline {
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin-bottom: 30px;
}

/* About Snippet */
.about-stats .stat-item h3 {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-body);
}

.about-stats .stat-item p {
  color: #666;
  font-weight: 500;
}

.about-img-wrapper {
  position: relative;
}

.about-img-wrapper img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  width: 100%;
  height: auto;
}

/* Projects Snippet */
.project-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  background-color: var(--bg-white);
  height: 100%;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.project-info {
  padding: 20px;
}

.project-info h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

/* Footer Complete Redesign */
.footer-new {
  background-color: #111827;
  color: #9ca3af;
  font-family: var(--font-body);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-new h5 {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-new h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 40px;
  height: 2px;
  background-color: #d1a45b;
}

.footer-info p {
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  background-color: #d1a45b;
  border-color: #d1a45b;
  color: #111827;
}

.footer-links-new {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-new li {
  margin-bottom: 12px;
}

.footer-links-new a {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.footer-links-new a i {
  color: #d1a45b;
  margin-right: 12px;
  font-size: 0.75rem;
}

.footer-links-new a:hover {
  color: #d1a45b;
  transform: translateX(5px);
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 22px;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #d1a45b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1a45b;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.footer-contact-text span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-contact-text .title {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 4px;
}

/* Newsletter Section */
.footer-newsletter {
  padding: 45px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.newsletter-box {
  display: flex;
  align-items: center;
  background-color: transparent;
  border-radius: 4px;
  overflow: hidden;
  max-width: 500px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: auto;
}

.newsletter-box input {
  flex-grow: 1;
  background-color: transparent;
  border: none;
  padding: 16px 20px;
  color: #ffffff;
  outline: none;
}

.newsletter-box input::placeholder {
  color: #6b7280;
}

.newsletter-box button {
  background-color: #d1a45b;
  color: #111827;
  border: none;
  padding: 16px 35px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-box button:hover {
  background-color: #e5b970;
}

.newsletter-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 1px solid rgba(209, 164, 91, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1a45b;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Features Section */
.footer-features {
  padding: 60px 0;
}

.feature-item {
  text-align: center;
  padding: 0 10px;
}

.feature-icon {
  color: #60a5fa;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.feature-item h6 {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-item p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 0;
  color: #9ca3af;
}

/* Footer Bottom */
.footer-bottom-new {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.footer-bottom-links li {
  position: relative;
}

.footer-bottom-links li:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -10px;
  color: #4b5563;
}

.footer-bottom-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

.scroll-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.scroll-top:hover {
  background-color: #d1a45b;
  border-color: #d1a45b;
  color: #111827;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .newsletter-box {
    margin-left: 0;
    margin-top: 20px;
  }
  .feature-item {
    margin-bottom: 40px;
  }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: var(--whatsapp-green);
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #20b858;
  color: #FFF;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .navbar-transparent {
    background-color: var(--bg-white) !important;
    position: relative;
  }
  .navbar-transparent .nav-link,
  .navbar-transparent .navbar-brand {
    color: var(--text-dark) !important;
  }
}

/* New Header Match Styles */
.bg-dark-blue {
  background-color: #1a252f !important;
}
.navbar.bg-dark-blue {
  padding: 10px 0;
  position: relative;
}
.navbar.bg-dark-blue .nav-link {
  color: #e0e0e0 !important;
  font-weight: 500;
  padding: 10px 15px !important;
  position: relative;
}
.navbar.bg-dark-blue .nav-link:hover {
  color: #fff !important;
}
.navbar.bg-dark-blue .nav-link.active {
  color: #fff !important;
}
.navbar.bg-dark-blue .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 15px;
  right: 15px;
  height: 2px;
  background-color: var(--primary-color);
}
.btn-nav-contact {
  background-color: transparent;
  color: var(--primary-color) !important;
  font-weight: 600;
  border-radius: 25px;
  border: 1px solid var(--primary-color);
  padding: 8px 24px !important;
  margin-left: 15px;
  transition: all 0.3s ease;
}
.btn-nav-contact:hover {
  background-color: var(--primary-color);
  color: #fff !important;
}
.hero-bottom-line {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: var(--primary-color);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 50% 100%, 0 0);
  z-index: 5;
}
.hero-bottom-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--bg-light);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 50% 100%, 0 0);
  z-index: 6;
}
.hero-btn-outline {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.hero-btn-outline:hover {
  background-color: #fff;
  color: #1a252f;
}

/* --- NEW UI COMPONENTS --- */

/* Stat Cards (About Section) */
.stat-card-wrapper {
  background: var(--bg-white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 30px 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  height: 100%;
}
.stat-card-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(45, 181, 163, 0.1);
  border-color: rgba(45, 181, 163, 0.2);
}
.stat-card-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.stat-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-family: var(--font-heading);
}
.stat-card-desc {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Our Solutions Gradient Section */
.gradient-section {
  background: var(--gradient-bg);
  color: var(--bg-white);
  position: relative;
  padding: 100px 0;
}
.solution-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.solution-card:hover {
  transform: translateY(-10px);
}
.solution-card-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}
.solution-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}
.solution-card-desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Signature Projects Section */
.project-card-new {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}
.project-card-new:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transform: translateY(-8px);
}
.project-card-new img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s ease;
}
.project-card-new:hover img {
  filter: grayscale(0%);
}
.project-card-body {
  padding: 25px;
}
.project-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}
.project-location {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.project-desc-snippet {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Curved Footer */
.footer-curved {
  background-color: #2a3b4c;
  color: #a0aec0;
  position: relative;
  padding-top: 60px;
  margin-top: 200px;
  font-family: var(--font-body);
  z-index: 1;
}
.footer-curved::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  max-width: 100%;
  height: 100%;
  background: url('../assets/images/Footer-tall.gif') no-repeat left center;
  background-size: contain;
  opacity: 1;
  z-index: -1;
  pointer-events: none;
}
.footer-logo-text {
  font-size: 2rem;
  font-weight: 400;
  color: var(--bg-white);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}
.footer-curved h5 {
  color: var(--bg-white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 25px;
  font-family: var(--font-heading);
}
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-list li {
  margin-bottom: 15px;
}
.footer-links-list a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.footer-links-list a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-contact-item i {
  color: #00c853; /* Bright green from image */
  font-size: 1.1rem;
  margin-top: 4px;
}
.footer-contact-item .text-group span {
  display: block;
}
.footer-contact-item .text-group .title {
  color: var(--bg-white);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.subscribe-form input {
  background: var(--bg-white);
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  width: 100%;
  outline: none;
  font-size: 0.9rem;
}
.subscribe-form input::placeholder {
  color: #999;
}
.subscribe-form .btn-subscribe {
  background: #00c853;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  align-self: flex-start;
  min-width: 120px;
  transition: all 0.3s ease;
}
.subscribe-form .btn-subscribe:hover {
  background: #00b34a;
}

/* --- NEW CUSTOM FOOTER DESIGN --- */
.footer-custom {
  background-color: transparent;
  position: relative;
  margin-top: 150px;
  font-family: var(--font-body);
}
.footer-wave-container {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
  line-height: 0;
  z-index: -1;
}
.footer-wave-container svg {
  width: 100%;
  height: 100%;
  display: block;
}
.footer-custom-content {
  background-color: #293e52;
  padding: 60px 0 40px;
  color: #a0aec0;
}
.fc-logo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 1px;
}
.fc-logo-sub {
  font-size: 0.7rem;
  color: #7cb342;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.fc-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 20px;
  color: #cbd5e1;
}
.fc-divider {
  width: 40px;
  height: 2px;
  background-color: #475569;
  margin: 25px 0;
}
.fc-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.fc-feature-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #7cb342;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7cb342;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.fc-feature-text h6 {
  color: #fff;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}
.fc-feature-text span {
  font-size: 0.8rem;
  color: #94a3b8;
}

.fc-heading {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-family: var(--font-heading);
}
.fc-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fc-links li {
  margin-bottom: 18px;
}
.fc-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.fc-links a i {
  color: #7cb342;
  font-size: 0.8rem;
}
.fc-links a:hover {
  color: #7cb342;
}

.fc-contact {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}
.fc-contact-icon {
  width: 35px;
  height: 35px;
  border: 1px solid #7cb342;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7cb342;
  font-size: 1rem;
  flex-shrink: 0;
}
.fc-contact-text h6 {
  color: #fff;
  margin: 0 0 5px 0;
  font-size: 0.95rem;
  font-weight: 600;
}
.fc-contact-text p {
  margin: 0;
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.fc-subscribe-text {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 20px;
  line-height: 1.5;
}
.fc-subscribe-input {
  background: transparent;
  border: 1px solid #1e293b;
  border-radius: 6px;
  padding: 12px 15px;
  width: 100%;
  color: #fff;
  outline: none;
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.fc-subscribe-input::placeholder {
  color: #64748b;
}
.fc-subscribe-btn {
  background: linear-gradient(135deg, #8bc34a, #4caf50);
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  color: #fff;
  font-weight: 600;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: opacity 0.3s;
}
.fc-subscribe-btn:hover {
  opacity: 0.9;
}
.fc-social {
  margin-top: 30px;
}
.fc-social h6 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.fc-social-icons {
  display: flex;
  gap: 12px;
}
.fc-social-icons a {
  width: 35px;
  height: 35px;
  border: 1px solid #475569;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
.fc-social-icons a:hover {
  border-color: #7cb342;
  color: #7cb342;
}

/* Stats Bar */
.fc-stats-bar {
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
  padding: 30px 0;
  margin: 40px 0;
}
.fc-stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.fc-stat-icon {
  color: #7cb342;
  font-size: 2rem;
}
.fc-stat-text h4 {
  color: #7cb342;
  margin: 0;
  font-weight: 700;
  font-size: 1.3rem;
}
.fc-stat-text p {
  color: #cbd5e1;
  margin: 0;
  font-size: 0.9rem;
}
.fc-stat-separator {
  border-right: 1px solid #1e293b;
}

/* Bottom Pill Copyright */
.fc-copyright-pill {
  border: 1px solid #1e293b;
  border-radius: 50px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fc-copyright-pill p, .fc-copyright-pill a {
  color: #94a3b8;
  font-size: 0.85rem;
  margin: 0;
  text-decoration: none;
}
.fc-copyright-pill a.highlight {
  color: #7cb342;
}
.fc-back-top {
  width: 35px;
  height: 35px;
  border: 1px solid #475569;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7cb342;
  text-decoration: none;
  transition: all 0.3s;
}
.fc-back-top:hover {
  background: #7cb342;
  color: #fff;
  border-color: #7cb342;
}
.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.9rem;
}
.btn-back-top {
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-back-top:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-3px);
}

/* --- New About Section Styles --- */
.about-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  background-color: rgba(124, 179, 66, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--primary-color);
  font-size: 1.2rem;
}
.about-section {
  background-image: radial-gradient(circle at 90% 10%, #e0f2fe 0%, transparent 40%);
}
/* --- New Hero Section Styles --- */
.hero-slider-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../assets/images/about.png'); /* Fallback/Current image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 40%, transparent 65%);
  z-index: 1;
}
.hero-slider-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 220px;
}
.hero-glass-stats {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1300px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px 30px;
  z-index: 3;
}
.glass-stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.glass-stat-item:last-child {
  border-right: none;
}
.glass-stat-icon {
  font-size: 2rem;
  color: var(--primary-color);
}
.glass-stat-text h4 {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.glass-stat-text p {
  color: #94a3b8;
  font-size: 0.8rem;
  margin-bottom: 0;
  line-height: 1.2;
}
.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: all 0.3s ease;
}
.hero-nav-arrow.left {
  left: 20px;
  background: rgba(15, 23, 42, 0.8);
  color: white;
}
.hero-nav-arrow.right {
  right: 20px;
  background: white;
  color: var(--primary-color);
}
.hero-nav-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}
.hero-slider-dots {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.hero-dot.active {
  width: 25px;
  border-radius: 5px;
  background: var(--primary-color);
}
@media (max-width: 991px) {
  .hero-glass-stats {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 40px;
  }
  .glass-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .glass-stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .hero-gradient-overlay {
    background: rgba(15, 23, 42, 0.85); /* Solid on mobile for readability */
  }
}

/* --- Comprehensive Responsive Improvements --- */
@media (max-width: 991px) {
  /* Reduce excessive paddings */
  .section-padding { padding: 50px 0; }
  .gradient-section { padding: 60px 0; }
  .about-section { padding: 60px 0 100px; }
  .footer-custom { margin-top: 80px; }
  .footer-custom-content { padding: 40px 0 20px; }
  .fc-stats-bar { margin: 20px 0; padding: 20px 0; }
  
  /* Fix Floating Box in About Section */
  .about-floating-box {
    position: relative !important;
    transform: none !important;
    bottom: auto !important;
    right: auto !important;
    margin: 20px auto 0;
    max-width: 100% !important;
  }
}

@media (max-width: 767px) {
  /* Typography Scaling */
  h1, .hero-content h1, .page-header h1 { font-size: 2.2rem !important; }
  h2, .section-title { font-size: 1.8rem !important; }
  .stat-card-title, .glass-stat-text h4, .about-stat-icon + h3 { font-size: 1.5rem !important; }
  .fc-logo-title { font-size: 1.5rem; }
  
  /* Layout Adjustments */
  .hero-slider-content { padding-top: 60px; padding-bottom: 120px; }
  .footer-curved h5, .fc-heading { margin-top: 20px; }
  
  /* Stacking Elements */
  .fc-stat-item { flex-direction: column; text-align: center; margin-bottom: 15px; }
  .fc-contact { flex-direction: column; align-items: flex-start; }
}
