/* Corporate theme and UI enhancements for IVCL */
:root {
  --brand-blue: #0a3d92;
  --brand-gold: #d4af37;
  --brand-blue-light: #1e5fcc;
  --brand-gold-light: #f0d875;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --gradient-blue: linear-gradient(135deg, #0a3d92 0%, #1e5fcc 50%, #0a3d92 100%);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f0d875 50%, #d4af37 100%);
  --gradient-corporate: linear-gradient(135deg, #0a3d92 0%, #1e5fcc 40%, #d4af37 100%);
  --shadow-sm: 0 2px 8px rgba(10, 61, 146, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 61, 146, 0.12);
  --shadow-lg: 0 16px 48px rgba(10, 61, 146, 0.18);
  --shadow-glow: 0 0 30px rgba(10, 61, 146, 0.15);
}

html, body {
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: var(--text-dark);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ===== HEADER STYLING ===== */
#header {
  background: var(--gradient-corporate);
  color: #fff;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  padding: 25px 0;
}

/* Navbar links - white color */
#header .navbar ul li a,
#header .navbar ul li a:visited,
#header .navbar ul li a:hover,
#header .navbar ul li a:active,
#header .nav-link,
#header .nav-link:visited,
#header .nav-link:hover,
#header .nav-link:active {
  color: #ffffff !important;
  text-decoration: none;
}

#header .nav-link:hover {
  color: var(--brand-gold) !important;
}

/* Logo hover animation */
#header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

#header .logo:hover {
  transform: scale(1.02);
}

#header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

#header .container {
  position: relative;
  z-index: 1;
}

#header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

#header .logo img {
  height: 65px;
  width: auto;
  border-radius: 8px !important;
  object-fit: contain;
  border: 2px solid #d4af37;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

#header .logo svg {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

:hover svg {
  transform:#header .logo scale(1.05) rotate(3deg);
}

#header .logo a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
  letter-spacing: 0.3px;
}

/* ===== COLORFUL LINES ===== */
.color-lines {
  height: 6px;
  background: linear-gradient(90deg, 
    #0a3d92 0%, #1e5fcc 20%, 
    #d4af37 40%, #f0d875 60%, 
    #e84393 75%, #00cec9 90%, 
    #0a3d92 100%
  );
  background-size: 200% 100%;
  animation: gradientShift 8s ease infinite;
}

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

/* ===== FACT SHEET CARDS ===== */
.fact-sheet {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 50%, #e8f0ff 100%);
  border-top: 1px solid rgba(10, 61, 146, 0.08);
  border-bottom: 1px solid rgba(10, 61, 146, 0.08);
  position: relative;
}

.fact-sheet::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 0 0 3px 3px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.fact-card {
  background: #fff;
  border: none;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.fact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-corporate);
}

.fact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.fact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(10, 61, 146, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform 0.3s ease;
}

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

.fact-number {
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient-corporate);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.fact-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
  padding: 60px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose-us .section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.why-choose-us .section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.choose-card {
  background: #fff;
  border: none;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.choose-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.choose-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
}

.choose-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.choose-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .why-choose-us {
    padding: 40px 0;
  }
  
  .choose-card {
    padding: 24px 18px;
  }
}

/* ===== MANAGEMENT TEAM SECTION ===== */
.management-team {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.management-team .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.management-team .section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.management-team .section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.team-member {
  text-align: center;
  cursor: pointer;
  padding: 20px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-image {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(10, 61, 146, 0.2);
  border: 4px solid #fff;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 61, 146, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
  opacity: 1;
}

.member-overlay i {
  color: #fff;
  font-size: 2rem;
}

.team-member h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.team-member p {
  font-size: 0.85rem;
  color: var(--brand-blue);
  font-weight: 500;
  margin-bottom: 0;
}

/* Modal Styles */
.management-team .modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
}

.management-team .modal-header {
  background: var(--gradient-corporate);
  color: #fff;
  border: none;
  padding: 20px 24px;
}

.management-team .modal-header .btn-close {
  filter: invert(1);
}

.management-team .modal-title {
  font-weight: 600;
  font-size: 1.25rem;
}

.management-team .modal-body {
  padding: 30px;
}

.management-team .modal-body img {
  border: 4px solid var(--brand-blue);
  box-shadow: var(--shadow-md);
}

.management-team .modal-body p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 12px;
}

.management-team .modal-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .management-team {
    padding: 40px 0;
  }
  
  .member-image {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 768px) {
  .member-image {
    width: 120px;
    height: 120px;
  }
  
  .team-member h3 {
    font-size: 0.9rem;
  }
  
  .team-member p {
    font-size: 0.8rem;
  }
}

/* ===== ENHANCED FOOTER ===== */
#footer {
  background: linear-gradient(135deg, #0a0f1a 0%, #1a2332 30%, #0d1525 60%, #0a0f1a 100%);
  color: #e8f0ff;
  padding-top: 60px;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    var(--brand-blue) 0%, 
    var(--brand-gold) 50%, 
    var(--brand-blue) 100%
  );
  animation: gradientShift 4s ease infinite;
  background-size: 200% 100%;
}

#footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ===== SUBSCRIBE SECTION ===== */
.subscribe {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-light) 100%);
}

.subscribe-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.subscribe h2 {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.subscribe p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 0;
}

.subscribe-form {
  display: flex;
  gap: 12px;
}

.subscribe-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.subscribe-form input:focus {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.subscribe-form button {
  padding: 14px 32px;
  background: linear-gradient(135deg, #d4af37 0%, #f5d76e 50%, #d4af37 100%);
  color: #0a3d92;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
}

.subscribe-form button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

.subscribe-form button:hover {
  background: linear-gradient(135deg, #f5d76e 0%, #ffe680 50%, #f5d76e 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.subscribe-form button:hover::before {
  left: 100%;
}

.subscribe-form button:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
  .subscribe {
    padding: 40px 0;
  }
  
  .subscribe-box {
    padding: 24px;
  }
  
  .subscribe h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .subscribe-form button {
    width: 100%;
  }
}

.footer-top {
  position: relative;
  z-index: 1;
}

.footer-contact h4 {
  color: var(--brand-gold);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-gold);
}

.footer-contact p {
  color: #a0aec0;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-links h4 {
  color: var(--brand-gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #a0aec0;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  display: inline-block;
}

.footer-links ul li a::before {
  content: '\f105';
  font-family: 'Bootstrap Icons';
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--brand-gold);
}

.footer-links ul li a:hover {
  color: #fff;
  padding-left: 18px;
}

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

.copyright {
  color: #a0aec0;
  font-size: 0.9rem;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.copyright strong {
  color: var(--brand-gold);
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 50%;
  margin: 0 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-links a:hover {
  background: var(--brand-gold);
  color: var(--brand-blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.social-links a i {
  position: relative;
  z-index: 1;
}

/* ===== HERO SECTION ===== */
#hero {
  background: linear-gradient(135deg, rgba(10, 61, 146, 0.95) 0%, rgba(30, 95, 204, 0.9) 50%, rgba(10, 61, 146, 0.95) 100%);
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 300px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(30px, -30px) rotate(5deg); }
}

#hero h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

#hero h2 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand-gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .fact-sheet {
    padding: 40px 0;
  }
  
  .fact-number {
    font-size: 26px;
  }
  
  #hero {
    padding: 50px 0 30px;
  }
  
  #hero h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .fact-card {
    padding: 16px 12px;
  }
  
  .fact-number {
    font-size: 22px;
  }
  
  .fact-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  
  #hero {
    padding: 40px 0 25px;
  }
  
  #hero h1 {
    font-size: 1.5rem;
  }
  
  #hero h2 {
    font-size: 0.875rem;
  }
}
  
  .fact-card {
    padding: 20px 16px;
    margin-bottom: 16px;
  }
  
  .fact-number {
    font-size: 26px;
  }
  
  #hero {
    font-size: 1.5rem;
  }
  
  #hero h1 {
    font-size: 2.5rem;
  }
  
  #hero h2 {
    font-size: 0.875rem;
  }

@media (max-width: 768px) {
  .fact-card {
    padding: 16px 12px;
  }
  
  .fact-number {
    font-size: 22px;
  }
  
  .fact-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  
  #hero h1 {
    font-size: 1.75rem;
  }
  
  #hero h2 {
    font-size: 1rem;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* ===== FLOATING ANIMATION ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes floatRotate {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

/* ===== PULSE ANIMATION ===== */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* ===== SHIMMER EFFECT ===== */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ===== SPIN ANIMATION ===== */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== BOUNCE ANIMATION ===== */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

/* ===== SLIDE IN ANIMATIONS ===== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SCALE IN ANIMATION ===== */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== ROTATE IN ANIMATION ===== */
@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

/* ===== ZOOM HOVER EFFECT ===== */
.zoom-hover {
  overflow: hidden;
}

.zoom-hover img {
  transition: transform 0.5s ease;
}

.zoom-hover:hover img {
  transform: scale(1.1);
}

/* ===== SLIDE UP HOVER ===== */
.slide-up {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide-up:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(10, 61, 146, 0.2);
}

/* ===== BUTTON ANIMATIONS ===== */
.btn-animate {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-animate::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-animate:hover::before {
  left: 100%;
}

.btn-animate:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10, 61, 146, 0.3);
}

/* ===== GLOW BUTTON ===== */
.btn-glow {
  transition: all 0.3s ease;
}

.btn-glow:hover {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* ===== NAV LINK HOVER ANIMATION ===== */
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

/* ===== COLOR LINES ANIMATION ===== */
.color-lines {
  animation: gradientShift 8s ease infinite;
}

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

/* ===== CARD ENTRANCE ANIMATIONS ===== */
.card-animate {
  opacity: 0;
  transform: translateY(30px);
  animation: cardEnter 0.6s ease forwards;
}

@keyframes cardEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-animate:nth-child(1) { animation-delay: 0.1s; }
.card-animate:nth-child(2) { animation-delay: 0.2s; }
.card-animate:nth-child(3) { animation-delay: 0.3s; }
.card-animate:nth-child(4) { animation-delay: 0.4s; }
.card-animate:nth-child(5) { animation-delay: 0.5s; }
.card-animate:nth-child(6) { animation-delay: 0.6s; }

/* ===== ICON HOVER SPIN ===== */
.icon-spin {
  transition: transform 0.3s ease;
}

.icon-spin:hover {
  transform: rotate(360deg);
}

/* ===== PARALLAX BACKGROUND ===== */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ===== RIPPLE EFFECT ===== */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.ripple:hover::after {
  width: 300px;
  height: 300px;
}

/* ===== UNDERLINE ANIMATION ===== */
.underline-animate {
  position: relative;
}

.underline-animate::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.underline-animate:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* ===== SKEW HOVER ===== */
.skew-hover {
  transition: transform 0.3s ease;
}

.skew-hover:hover {
  transform: skewX(-5deg);
}

/* ===== REFLECTION EFFECT ===== */
.reflect {
  position: relative;
}

.reflect::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
  transform: scaleY(-1);
  opacity: 0.3;
}

/* ===== BLINK ANIMATION ===== */
@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.5; }
}

.blink {
  animation: blink 2s infinite;
}

/* ===== WAVE ANIMATION ===== */
@keyframes wave {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.wave {
  animation: wave 1.5s ease-in-out infinite;
}

/* ===== PROGRESS BAR ANIMATION ===== */
.progress-animate {
  position: relative;
  overflow: hidden;
}

.progress-animate::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

/* ===== FOCUS RING ANIMATION ===== */
.focus-ring {
  transition: box-shadow 0.3s ease;
}

.focus-ring:focus {
  box-shadow: 0 0 0 4px rgba(10, 61, 146, 0.2);
}

/* ===== HOVER LIFT ===== */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ===== ROTATE HOVER ===== */
.rotate-hover {
  transition: transform 0.4s ease;
}

.rotate-hover:hover {
  transform: rotate(5deg) scale(1.05);
}

/* ===== COLOR SHIFT HOVER ===== */
.color-shift {
  transition: filter 0.3s ease;
}

.color-shift:hover {
  filter: brightness(1.1) saturate(1.2);
}

/* ===== SMOOTH SCROLL ===== */
html {
  scroll-behavior: smooth;
}

/* ===== AOS CUSTOM OVERRIDES ===== */
[data-aos="fade-up"] {
  transform: translateY(30px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--brand-gold) 0%, transparent 70%);
  top: -100px;
  right: -50px;
}

#hero .shape-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #fff 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  animation-delay: -5s;
}

#hero .shape-3 {
  width: 150px;
  height: 150px;
  border: 2px solid var(--brand-gold);
  border-radius: 50%;
  top: 50%;
  left: 10%;
  animation: pulse 4s ease-in-out infinite;
}

#hero .shape-4 {
  width: 100px;
  height: 100px;
  border: 2px solid #fff;
  transform: rotate(45deg);
  top: 20%;
  right: 20%;
  animation: float 6s ease-in-out infinite;
}

/* ===== DYNAMIC TEXT ANIMATION ===== */
.dynamic-text {
  position: relative;
}

.dynamic-text::after {
  content: '|';
  animation: blink 1s infinite;
  color: var(--brand-gold);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin: 0 auto;
}

.scroll-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.scroll-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

/* ===== STUNNING BUTTON STYLES ===== */
.btn-stunning {
  position: relative;
  padding: 15px 35px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-light) 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(10, 61, 146, 0.3);
}

.btn-stunning::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn-stunning:hover::before {
  left: 100%;
}

.btn-stunning:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(10, 61, 146, 0.4);
}

.btn-stunning.gold {
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-light) 100%);
  color: var(--brand-blue);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-stunning.gold:hover {
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* ===== 3D CARD EFFECT ===== */
.card-3d {
  perspective: 1000px;
}

.card-3d-inner {
  position: relative;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.card-3d:hover .card-3d-inner {
  transform: rotateY(180deg);
}

.card-3d-front,
.card-3d-back {
  backface-visibility: hidden;
}

.card-3d-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
}

/* ===== GLOW EFFECTS ===== */
.glow-blue {
  box-shadow: 0 0 20px rgba(10, 61, 146, 0.3), 0 0 40px rgba(10, 61, 146, 0.1);
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(10, 61, 146, 0.3), 0 0 40px rgba(10, 61, 146, 0.1); }
  50% { box-shadow: 0 0 30px rgba(10, 61, 146, 0.5), 0 0 60px rgba(10, 61, 146, 0.2); }
}

.glow-gold {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);
  animation: glowGold 2s ease-in-out infinite;
}

@keyframes glowGold {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.1); }
  50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.5), 0 0 60px rgba(212, 175, 55, 0.2); }
}

/* ===== PARTICLE BACKGROUND ===== */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: particleFloat 15s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1s; }
.particle:nth-child(10) { left: 15%; animation-delay: 3s; }

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* ===== TILT EFFECT ===== */
.tilt-effect {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tilt-effect:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateZ(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* ===== NEON TEXT EFFECT ===== */
.neon-text {
  text-shadow: 
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px var(--brand-blue),
    0 0 40px var(--brand-blue),
    0 0 80px var(--brand-blue);
  animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
  from {
    text-shadow: 
      0 0 5px #fff,
      0 0 10px #fff,
      0 0 20px var(--brand-blue),
      0 0 40px var(--brand-blue);
  }
  to {
    text-shadow: 
      0 0 10px #fff,
      0 0 20px #fff,
      0 0 40px var(--brand-blue),
      0 0 80px var(--brand-blue),
      0 0 120px var(--brand-blue);
  }
}

.neon-gold {
  text-shadow: 
    0 0 5px var(--brand-gold),
    0 0 10px var(--brand-gold),
    0 0 20px var(--brand-gold),
    0 0 40px var(--brand-gold);
}

/* ===== MAGNETIC HOVER ===== */
.magnetic {
  transition: transform 0.3s ease;
}

.magnetic:hover {
  transform: scale(1.1);
}

/* ===== WAVE BORDER ===== */
.wave-border {
  position: relative;
}

.wave-border::before,
.wave-border::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-corporate);
}

.wave-border::before {
  top: 0;
  animation: waveBorder 2s ease-in-out infinite;
}

.wave-border::after {
  bottom: 0;
  animation: waveBorder 2s ease-in-out infinite reverse;
}

@keyframes waveBorder {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(0.8); }
}

/* ===== SKEWED SECTION ===== */
.skew-section {
  transform: skewY(-3deg);
  transform-origin: top left;
}

.skew-content {
  transform: skewY(3deg);
}

/* ===== HOVER BORDER ANIMATION ===== */
.hover-border {
  position: relative;
}

.hover-border::before,
.hover-border::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--brand-gold);
  transition: width 0.3s ease;
}

.hover-border::before {
  top: 0;
  left: 0;
}

.hover-border::after {
  bottom: 0;
  right: 0;
}

.hover-border:hover::before,
.hover-border:hover::after {
  width: 100%;
}

/* ===== DYNAMIC GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-gold) 50%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientMove 5s ease infinite;
}

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

/* ===== CIRCLE PROGRESS ANIMATION ===== */
.circle-progress {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(var(--brand-blue) 0%, var(--brand-gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: circleRotate 4s linear infinite;
}

@keyframes circleRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.circle-progress::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
}

/* ===== NUMBER COUNTER ANIMATION ===== */
.counter {
  display: inline-block;
  animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== STAGGERED REVEAL ===== */
.stagger-reveal > * {
  opacity: 0;
  transform: translateY(30px);
  animation: revealItem 0.6s ease forwards;
}

.stagger-reveal > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-reveal > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-reveal > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-reveal > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-reveal > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-reveal > *:nth-child(6) { animation-delay: 0.6s; }

@keyframes revealItem {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== LIQUID BUTTON ===== */
.btn-liquid {
  position: relative;
  padding: 20px 40px;
  background: var(--brand-blue);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  overflow: hidden;
}

.btn-liquid::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
  transform: scale(0);
  transition: transform 0.5s ease;
}

.btn-liquid:hover::before {
  transform: scale(1);
}

/* ===== SPARKLE EFFECT ===== */
.sparkle {
  position: relative;
}

.sparkle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--brand-gold);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: sparkle 1s ease-out infinite;
}

@keyframes sparkle {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* ===== CONTINUOUS FLOAT ===== */
.float-continuous {
  animation: floatContinuous 4s ease-in-out infinite;
}

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

/* ===== DYNAMIC BACKGROUND ===== */
.dynamic-bg {
  background: linear-gradient(-45deg, #0a3d92, #1e5fcc, #d4af37, #f0d875);
  background-size: 400% 400%;
  animation: bgDynamic 15s ease infinite;
}

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

/* ===== SHAKE ANIMATION ===== */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake:hover {
  animation: shake 0.5s ease;
}

/* ===== BLOG SECTION ===== */
.blog {
  padding: 60px 0;
  background: #f8f9fa;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

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

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

.blog-date {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--brand-blue);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-content {
  padding: 24px;
}

.blog-category {
  display: inline-block;
  background: linear-gradient(135deg, rgba(10, 61, 146, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
  color: var(--brand-blue);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.blog-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--brand-blue);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--brand-gold);
  transform: translateX(5px);
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .blog {
    padding: 40px 0;
  }
  
  .blog-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .blog-image {
    height: 160px;
  }
  
  .blog-content {
    padding: 16px;
  }
  
  .blog-content h3 {
    font-size: 1rem;
  }
}

/* ===== RIBBON EFFECT ===== */
.ribbon {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--brand-gold);
  color: var(--brand-blue);
  padding: 5px 30px;
  transform: rotate(45deg);
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* ===== Products Introduction Page ===== */
.products-intro {
  padding: 80px 0;
}

.product-category-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  border-left: 4px solid var(--brand-gold);
}

.product-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.product-category-card .product-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, #1a5ac9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-category-card .product-icon i {
  font-size: 28px;
  color: #fff;
}

.product-category-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 12px;
}

.product-category-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-gold);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  color: var(--brand-blue);
  gap: 12px;
}

.read-more-btn i {
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(4px);
}

/* ===== Brand Logos Section ===== */
.brand-logos-section {
  padding: 40px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  border-top: 1px solid rgba(10, 61, 146, 0.08);
  border-bottom: 1px solid rgba(10, 61, 146, 0.08);
}

.brand-logos-section .section-title {
  margin-bottom: 40px;
}

.brand-logos-section .section-title p {
  color: var(--text-muted);
  margin-top: 10px;
}

.brand-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 120px;
}

.brand-logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(10, 61, 146, 0.15);
}

.brand-logo-item img {
  max-width: 80px;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

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

.brand-logo-item .brand-name {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .brand-logos-section {
    padding: 40px 0;
  }
  
  .brand-logo-item {
    padding: 15px;
    height: 100px;
  }
  
  .brand-logo-item img {
    max-width: 60px;
    max-height: 40px;
  }
  
  .brand-logo-item .brand-name {
    font-size: 0.75rem;
  }
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, #1a5ac9 100%);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background: linear-gradient(135deg, #1a5ac9 0%, #0d4bb8 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 61, 146, 0.3);
  color: #fff;
}

.btn-view-all i {
  font-size: 1.2rem;
}

/* Why Choose Our Products */
.why-choose-products {
  padding: 60px 0;
  background: #f8f9fa;
}

.feature-box {
  text-align: center;
  padding: 30px 20px;
}

.feature-box i {
  font-size: 48px;
  color: var(--brand-gold);
  margin-bottom: 20px;
}

.feature-box h4 {
  color: var(--brand-blue);
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-box p {
  color: #666;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .products-intro {
    padding: 40px 0;
  }
  
  .product-category-card {
    padding: 20px;
  }
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--brand-blue) 0%, #0d4bb8 50%, #082b63 100%);
  overflow: hidden;
  padding: 10px 0 50px 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-background {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  transform: translateY(-50%);
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: var(--brand-gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-title {
  font-size: 7rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--brand-gold);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  max-width: 550px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-buttons .btn-primary {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--brand-blue);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
}

.hero-buttons .btn-primary:hover {
  background: #e5c14a;
  border-color: #e5c14a;
  transform: translateY(-2px);
}

.hero-buttons .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
}

.hero-buttons .btn-outline-light:hover {
  background: #fff;
  color: var(--brand-blue);
  border-color: #fff;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-gold);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-video {
  width: 100%;
  display: block;
}

.video-controls {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 15px;
  border-radius: 30px;
}

.control-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-btn:hover {
  color: var(--brand-gold);
  transform: scale(1.1);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.hero-scroll a:hover {
  background: var(--brand-gold);
  color: var(--brand-blue);
  transform: translateY(5px);
}

/* ===== Facts Section ===== */
.facts-section {
  padding: 40px 0;
  background: #fff;
  margin-top: -1px;
}

.fact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.fact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fact-card .fact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, #1a5ac9 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fact-card .fact-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.fact-card .fact-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1.2;
}

.fact-card .fact-label {
  font-size: 0.9rem;
  color: #666;
}

/* ===== About Section ===== */
.about-section {
  padding: 60px 0;
  background: #fff;
}

.about-image {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.about-img-main {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  border-radius: 20px;
  animation: pulse-dots 2s infinite;
}

@keyframes pulse-dots {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 165, 0, 0.8));
  }
}
  z-index: 2;
}

.about-img-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 85%;
  background: linear-gradient(135deg, var(--brand-blue) 0%, #1a5ac9 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.about-img-fallback i {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.5);
}

.about-image-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 60%;
  background: var(--brand-gold);
  border-radius: 20px;
  opacity: 0.3;
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--brand-blue);
  color: #fff;
  padding: 20px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(10, 61, 146, 0.3);
}

.about-experience-badge .years {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-gold);
  line-height: 1;
}

.about-experience-badge .text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.section-header {
  margin-bottom: 40px;
}

.section-subtitle {
  display: inline-block;
  color: var(--brand-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.section-title {
  color: var(--brand-blue);
  font-size: 2.5rem;
  font-weight: 700;
}

.section-description {
  color: #666;
  font-size: 1.1rem;
  margin-top: 15px;
}

.about-content .lead {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 20px;
}

.about-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-features {
  margin: 30px 0;
}

.about-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #555;
}

.about-features .feature-item i {
  color: var(--brand-gold);
  font-size: 1.2rem;
}

/* ===== Services Section ===== */
.services-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.services-section .section-header {
  text-align: center;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

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

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(10, 61, 146, 0.1) 0%, rgba(26, 90, 201, 0.1) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

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

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  color: var(--brand-gold);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 12px;
  color: var(--brand-blue);
}

/* ===== Why Choose Section ===== */
.why-choose-section {
  padding: 60px 0;
  background: #fff;
}

.why-choose-section .section-header {
  text-align: center;
}

.choose-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 15px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.choose-card:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.choose-card .choose-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, #1a5ac9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.choose-card .choose-icon i {
  font-size: 2rem;
  color: #fff;
}

.choose-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 15px;
}

.choose-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 50px 0;
  background: linear-gradient(135deg, var(--brand-blue) 0%, #1a5ac9 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-section h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin: 0;
}

.cta-section .btn-light {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--brand-blue);
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 8px;
}

.cta-section .btn-light:hover {
  background: #e5c14a;
  border-color: #e5c14a;
  color: var(--brand-blue);
}

/* ===== Footer ===== */
.footer-top {
  padding: 70px 0 30px;
  background: #1a1a1a;
}

.footer-info h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-info .pb-3 {
  color: var(--brand-gold);
  font-size: 1rem;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-info strong {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--brand-gold);
  color: var(--brand-blue);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-newsletter h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.footer-links h4::after,
.footer-newsletter h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--brand-gold);
}

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

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--brand-gold);
  padding-left: 5px;
}

.footer-newsletter form {
  display: flex;
  gap: 10px;
}

.footer-newsletter input[type="email"] {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 5px;
}

.footer-newsletter input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter input[type="submit"] {
  padding: 12px 25px;
  background: var(--brand-gold);
  border: none;
  color: var(--brand-blue);
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter input[type="submit"]:hover {
  background: #e5c14a;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
}

.credits {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-stats {
    gap: 25px;
  }
  
  .about-image {
    height: 350px;
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 120px 0 80px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .stat-item {
    flex: 1 1 100px;
  }
  
  .hero-video-container {
    display: none;
  }
  
  .about-section,
  .services-section,
  .why-choose-section {
    padding: 60px 0;
  }
  
  .service-card,
  .choose-card {
    padding: 30px 20px;
  }
  
  .cta-section {
    padding: 50px 0;
    text-align: center;
  }
  
  .cta-section .btn {
    width: 100%;
    margin-top: 20px;
  }
  
  .footer-top {
    padding: 50px 0 20px;
  }
  
  .footer-newsletter form {
    flex-direction: column;
  }
}

/* ===== Query Modal ===== */
.query-form-container {
  display: flex;
  gap: 30px;
}

.query-form-icons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  padding-right: 20px;
  border-right: 2px solid #e0e0e0;
}

.query-form-icons .icon-item {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, #1a5ac9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.query-form-icons .icon-item i {
  font-size: 1.8rem;
  color: #fff;
}

.query-form {
  flex: 1;
}

.query-form .form-label {
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 8px;
}

.query-form .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.query-form .form-control:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(10, 61, 146, 0.1);
}

.query-form .btn-primary {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--brand-blue);
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.query-form .btn-primary:hover {
  background: #e5c14a;
  border-color: #e5c14a;
  transform: translateY(-2px);
}

.modal-title {
  color: var(--brand-blue);
  font-weight: 700;
}

.modal-header {
  border-bottom: 2px solid var(--brand-gold);
}

.btn-close:focus {
  box-shadow: 0 0 0 3px rgba(10, 61, 146, 0.2);
}

@media (max-width: 576px) {
  .query-form-container {
    flex-direction: column;
  }
  
  .query-form-icons {
    flex-direction: row;
    justify-content: center;
    border-right: none;
    border-bottom: 2px solid #e0e0e0;
    padding-right: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

/* ===== Simplified Footer ===== */
#footer {
  background: #1a1a1a;
  padding: 20px 0;
}

#footer .footer-top {
  padding: 30px 0 20px;
}

#footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

#footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

#footer .footer-brand img {
  height: 40px;
  width: auto;
}

#footer .footer-brand h4 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
}

#footer .footer-brand span {
  color: #ff6600;
}

#footer .footer-links {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#footer .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

#footer .footer-links a:hover {
  color: #ff6600;
}

#footer .footer-social {
  display: flex;
  gap: 12px;
}

#footer .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

#footer .footer-social a:hover {
  background: #ff6600;
  transform: translateY(-2px);
}

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

#footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

#footer .footer-bottom strong {
  color: #ff6600;
}

/* ===== Simple Footer ===== */
.simple-footer {
  background: #1a1a1a;
  padding: 12px 0;
  text-align: center;
}

.simple-footer p {
  margin: 5px 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.simple-footer strong {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  #footer .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  #footer .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}
