/* Banian Engineering & Technology - Complete Stylesheet */
:root {
  /* Brand Colors from Logo */
  --primary-color: #004225; /* Navy blue from logo */
  --secondary-color: #004225;
  --accent-color: #004225; /* Green from logo */
  --accent-secondary: #004225;
  --accent-tertiary: #004225;
  --gradient-primary: linear-gradient(135deg, #004225 0%, #1b5e20 100%);
  --gradient-secondary: linear-gradient(135deg, #1e3a5f 0%, #0d47a1 100%);
  --gradient-accent: linear-gradient(135deg, #004225 0%, #2e7d32 100%);

  /* Text colors */
  --text-dark: #1a202c;
  --text-light: #4a5568;
  --text-muted: #718096;

  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-light: #f7fafc;
  --bg-gray: #edf2f7;
  --bg-green: #e8f5e8;

  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-green: 0 10px 25px -5px rgb(46 125 50 / 0.25);
}

/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Helvetica Neue Font Faces */
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/helvetica-neue-roman.woff2') format('woff2'),
  url('../fonts/helvetica-neue-light.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/helvetica-neue-bold.woff2') format('woff2'),
  url('../fonts/helvetica-neue-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

/* Apply global font */
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400; /* normal */
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: var(--bg-white);
}

/* Optional helper class for font */
.font-space {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Example of headings using bold font */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: var(--text-dark);
}
/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(-45deg, #ffffff, #f7fafc, #e8f5e8, #e3f2fd);
  background-size: 400% 400%;
  animation: gradientShift 25s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Top Contact Bar */
.top-bar {
  background: var(--primary-color);
  color: white;
  padding: 10px 0;
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
}

.top-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.2), transparent);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.95;
  transition: all 0.3s ease;
}

.contact-item:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/*.contact-item i {
  color: var(--accent-color);
  font-size: 0.875rem;
}*/

.social-top {
  display: flex;
  gap: 1rem;
}

.social-top a {
  color: white;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.social-top a:hover {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1);
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(46, 125, 50, 0.1);
  transition: all 0.3s ease;
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: var(--shadow-lg);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  text-decoration: none;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  margin-right: 10px;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 0.25rem;
  padding: 0.5rem .7rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 18px;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
  opacity: 0.1;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  left: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-color) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Dropdown Menu */
.dropdown-menu {
  background: var(--bg-white);
  border: 2px solid rgba(46, 125, 50, 0.1);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
}

.dropdown-item {
  color: var(--text-dark);
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: rgba(46, 125, 50, 0.1);
  color: var(--accent-color);
  transform: translateX(5px);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pageGrid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23pageGrid)"/></svg>');
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-green) 100%);
  color: var(--text-dark);
  padding: 50px 0 30px;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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(46,125,50,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

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

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.7;
}

.hero-visual {
  position: relative;
}

.hero-logo {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(46, 125, 50, 0.2));
}

/* Beautiful Buttons */
.btn-beautiful {
  background: var(--gradient-primary);
  border: none;
  color: white;
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-green);
}

.btn-beautiful::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1b5e20 0%, #0d47a1 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-beautiful:hover::before {
  left: 0;
}

.btn-beautiful:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(46, 125, 50, 0.4);
  color: white;
}

.btn-white {
  background: white;
  color: var(--primary-color);
  border: 2px solid white;
}

.btn-white:hover {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--primary-color);
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--bg-white);
  position: relative;
}

.service-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

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

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

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(46, 125, 50, 0.2);
}

.service-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-green);
}

.service-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
}

.service-card:hover .service-icon::before {
  width: 150px;
  height: 150px;
}

.service-card h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}



.service-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.service-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

/* Portfolio Section */
.portfolio {
  padding: 100px 0;
  background: var(--bg-gray);
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
  margin-bottom: 2rem;
  background: var(--bg-white);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.9), rgba(46, 125, 50, 0.9));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-content {
  transform: translateY(0);
}

/* Stats Section */
.stats {
  background: var(--gradient-secondary);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="statsGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23statsGrid)"/></svg>');
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

.contact-section {
  padding: 50px 20px;
  background: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}
/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--bg-light);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.contact-form {
  background: var(--bg-white);
  border: 2px solid rgba(46, 125, 50, 0.1);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-xl);
}

.form-control {
  background: var(--bg-white);
  border: 2px solid #e2e8f0;
  color: var(--text-dark);
  border-radius: 10px;
  padding: 15px 20px;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: var(--bg-white);
  border-color: var(--accent-color);
  color: var(--text-dark);
  box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.25);
  transform: translateY(-2px);
}

.form-control::placeholder {
  color: var(--text-muted);
}

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

.contact-item {
  /* background: var(--bg-white); */
  /* border: 2px solid rgba(46, 125, 50, 0.1); */
  backdrop-filter: blur(20px);
  padding: 12px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  /* margin-bottom: 1.5rem; */
  box-shadow: var(--shadow-lg);
}

/* .contact-item {
  background: var(--bg-white);
  border: 2px solid rgba(46, 125, 50, 0.1);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-lg);
} */

.contact-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-color);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
  box-shadow: var(--shadow-green);
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: white;
  padding: 40px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.footer-logo {
  max-height: 60px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.footer-section h6 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
  position: relative;
}

.footer-section h6::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;

}



.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(10px);
}

.social-footer {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(46, 125, 50, 0.3);
  backdrop-filter: blur(20px);
  color: white;
  border-radius: 50%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.social-footer a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.4s ease;
  z-index: -1;
}

.social-footer a:hover::before {
  left: 0;
}

.social-footer a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-green);
  border-color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Section Titles */
.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Client Stats Section */
.client-stats {
  background: var(--gradient-secondary);
  color: white;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.client-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="statsGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23statsGrid)"/></svg>');
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

/* Clients Section */
.clients-section {
  padding: 100px 0;
  background: var(--bg-white);
  position: relative;
}

.client-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.client-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.client-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(46, 125, 50, 0.2);
}

.client-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-green);
}

.client-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
}

.client-card:hover .client-icon::before {
  width: 150px;
  height: 150px;
}

.client-card h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.client-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.client-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(46, 125, 50, 0.1);
}

.client-sector {
  background: rgba(46, 125, 50, 0.1);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.client-duration {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: var(--bg-gray);
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.quote-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.testimonial-content p {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.testimonial-author h5 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Client Logos Section */
.client-logos {
  padding: 80px 0;
  background: var(--bg-light);
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.logo-item {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

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

/* CTA Section */
.cta-section {
  background: var(--gradient-primary);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ctaGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23ctaGrid)"/></svg>');
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.cta-section .lead {
  font-size: 1.25rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* Beautiful Buttons */


.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-title.text-start::after {
  left: 0;
  transform: none;
}

/* Loading Animation */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(46, 125, 50, 0.2);
  border-top: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* jQuery Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in.animated {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
}

.slide-left.animated {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s ease;
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
}



.slide-right.animated {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s ease;
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
}

.scale-in.animated {
  opacity: 1;
  transform: scale(1);
  transition: all 0.8s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }

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

@media (max-width: 992px) {
  .hero {
    min-height: 60vh;
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

  .services,
  .portfolio,
  .contact {
    padding: 80px 0;
  }

  .page-header {
    padding: 100px 0 60px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    text-align: center;
    padding: 12px 0;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }

  .hero {
    min-height: 50vh;
    padding: 60px 0 40px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

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

  .social-top {
    justify-content: center;
    margin-top: 1rem;
  }

  .services,
  .portfolio,
  .contact {
    padding: 60px 0;
  }

  .page-header {
    padding: 80px 0 50px;
  }

  .page-header h1 {
    font-size: 2.25rem;
  }

  .service-card,
  .contact-form {
    margin-bottom: 2rem;
    padding: 2rem;
  }

  .navbar-brand img {
    height: 40px;
  }

  .hero-logo {
    max-width: 80%;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.75rem;
  }

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

  .page-header h1 {
    font-size: 2rem;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

  .service-card,
  .contact-form,
  .contact-item {
    padding: 1.5rem;
  }

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

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}


.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 50px;
}

/* Contact row as flex */
.contact-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* Contact Card */
.contact-card {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 15px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

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



/* Card headings */
.contact-card h5 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1e3a5f;
}

/* Card paragraph */
.contact-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media(max-width: 991px){
  .contact-row {
    flex-direction: column;
    align-items: center;
  }
}
