* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --primary-light: #3b82f6;
    --primary-dark: #1e40af;
    --secondary-color: #14b8a6;
    --accent-color: #f97316;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* 2section */
     --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #dc2626;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  /* padding: 5px 10px; */
  height: 100px;
  padding-right: 50px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo_img {
  height: 150px;
  margin-left: 10px;  
}

.logo .company-name {
  color: navy;
  font-weight: bold;
  font-size: 24px;
}

.logo small {
  display: block;
  font-size: 14px;
  color: #d32f2f;
  padding-left: 40px;
}

.contact-info {
  display: flex;
  align-items: center;
}

.contact-item {
  background-color: #ffebee;
  color: #d32f2f;
  padding: 5px;
  border-radius: 10px;
  margin-left: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center; /* center horizontally */
  margin-right: 5px;
}

.contact-item i {
  font-size: 28px; /* adjust size to fit nicely */
}
.contact-label {
  color: #d32f2f;
  font-weight: bold;
}
.whatsapp {
  background-color: #2aba4c;
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
  margin-left: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.whatsapp i {
  font-size: 35px;
}

.nav-bar {
  background-color: #0c387a;
  padding: 10px 30px;
  position: relative;
}

.menu-toggle {
  display: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
}

.nav-bar ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-bar li {
  margin: 0 5px;
  position: relative;
}

.nav-bar a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  transition: background-color 0.3s, color 0.3s;
}

.nav-bar a:hover {
  background-color: white;
  color: #0d47a1;
  border-radius: 10px;
}

.dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #0c387a;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

/* Style for dropdown arrows */
.nav-bar ul li a i {
    font-size: 14px;          /* adjust icon size */
    margin-left: 6px;         /* push icon a bit to the right */
    position: relative;
    top: 1.5px;                 /* move icon slightly down */
    color:white;              /* optional: set color */
    transition: transform 0.3s ease;
}

/* Optional: Rotate arrow on hover */
.nav-bar ul li:hover > a i {
    transform: rotate(180deg);
     color: #0d47a1;
}


.dropdown:hover .dropdown-content,
.dropdown.open .dropdown-content {
  display: block;
}

.dropdown-content li {
  margin: 0;
}

.dropdown-content a {
  padding: 10px 15px;
}

.dropdown-content a:hover {
  background-color: white;
  color: #0d47a1;
}

.contact-button {
  background-color: rgb(79, 184, 225);
  border-radius: 5px;
}

.contact-button:hover {
  background-color: white;
  color: #0d47a1;
}

.gradient {
  height: 10px;
  background: linear-gradient(to bottom, #0d47a1, #64b5f6);
}

/* Media Queries for Responsiveness */

/* For tablets and smaller desktops (max-width: 1024px) */
@media (max-width: 1024px) {
  .top-bar {
    padding-right: 20px;
    height: auto;
  }

  .logo_img {
    height: 120px;
  }

  .logo .company-name {
    font-size: 18px;
  }

  .logo small {
    font-size: 10px;
    padding-left: 20px;
  }

  .contact-item {
    width: 50px;
    height: 50px;
  }

  .contact-item i {
    font-size: 24px;
  }

  .contact-label,
  .contact-value {
    font-size: 14px;
  }

  .whatsapp {
    padding: 8px 12px;
  }

  .whatsapp i {
    font-size: 30px;
  }

  .nav-bar {
    padding: 10px 20px;
  }

  .nav-bar a {
    padding: 8px 12px;
  }
}

/* For mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    height: auto;
  }

  .logo {
    margin-bottom: 15px;
  }

  .logo_img {
    height: 100px;
  }

  .logo .company-name {
    font-size: 16px;
  }

  .logo small {
    font-size: 10px;
    padding-left: 10px;
  }

  .contact-info {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
  }

  .contact-item {
    width: 40px;
    height: 40px;
    margin-left: 5px;
  }

  .contact-item i {
    font-size: 20px;
  }

  .contact-label,
  .contact-value {
    font-size: 12px;
  }

  .whatsapp {
    padding: 6px 10px;
    margin-left: 5px;
  }

  .whatsapp i {
    font-size: 25px;
  }

  .nav-bar {
    padding: 20px;
  }

  .menu-toggle {
    display: block;
    top: 10px;
  }

  .nav-bar ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    background-color: #0c387a;
    z-index: 10;
  }

  .nav-bar ul.open {
    display: flex;
  }

  .nav-bar li {
    margin: 0;
    text-align: center;
  }

  .nav-bar a {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown .dropdown-content {
    position: static;
    box-shadow: none;
    display: none;
  }

  .dropdown:hover .dropdown-content,
  .dropdown.open .dropdown-content {
    display: block;
  }

  .dropdown-content a {
    padding: 10px 20px;
    text-align: center;
  }
}

/* For smaller mobile devices (max-width: 480px) */
@media (max-width: 480px) {
  .logo {
    /* flex-direction: colum; */
    align-items: center;
  }

  .logo_img {
    height: 80px;
    margin-bottom: 5px;
  }

  .logo .company-name {
    font-size: 14px;
  }

  .logo small {
    padding-left: 0;
    font-size: 9px;
  }

  .contact-info > div:not(.contact-item) {
    font-size: 12px;
  }

  .contact-value {
    word-break: break-all;
  }
}



/* Hero Section */
.hero {
    min-height: 80vh;
    /* display: flex; */
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-gradient) 100%);
    overflow: hidden;
    /* padding-top: 20px; */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-left {
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, #1d4ed8, var(--primary-color));
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-right {
    position: relative;
    z-index: 1;
}

.hero-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover {
    transform: scale(1.05);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: var(--shadow-medium);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.card-1 {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 35%;
    left: -15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(59, 130, 246, 0.04));
    border-radius: 50%;
    animation: moveShape 25s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 5%;
    animation-delay: 8s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 25%;
    animation-delay: 16s;
}

@keyframes moveShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(40px, -40px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
}

/* ========== Responsive Styles ========== */

/* Tablet & below */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr; /* stack vertically */
    gap: 2rem;
    text-align: center;
    min-height: auto;
    padding: 3rem 0;
  }

  .hero-left {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-right {
    max-width: 500px;
    margin: 0 auto;
  }

  .floating-card {
    display: none; /* hide floating cards on small screens to avoid clutter */
  }
}

/* Mobile (Small screens) */
@media (max-width: 576px) {
  .hero {
    min-height: auto;
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .btn {
    width: 100%; /* buttons full width */
    justify-content: center;
  }
}

/* Enhanced Footer Styling */
.footer {
  position: relative;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 25%, #1d4ed8 50%, #2563eb 75%, #1e40af 100%);
  color: #ffffff;
  padding: 60px 0 0;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

.footer-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 0 40px 40px;
  z-index: 1;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #e2e8f0;
  position: relative;
  margin-right:100px ;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #60a5fa, #34d399);
  border-radius: 1px;
}

.footer-brand .company-logo h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.company-description {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #cbd5e1;
  font-weight: 400;
}

.payment-section h5 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #e2e8f0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-icon {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.payment-icon img {
  width: 36px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-links li a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #60a5fa, #34d399);
  transition: width 0.3s ease;
}

.footer-links li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-links li a:hover::before {
  width: 100%;
}

.footer-contact .contact-info1 {
  margin-bottom: 32px;
}

.contact-item1 {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
  color: #cbd5e1;
}

.contact-item1 i {
  width: 18px;
  margin-right: 12px;
  color: #60a5fa;
  font-size: 14px;
}

.social-section h5 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #e2e8f0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook:hover {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
  border-color: #1877f2;
}

.social-icon.instagram:hover {
 background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);

  border-color: #e4405f;
}

.social-icon.youtube:hover {
  background: linear-gradient(135deg, #ff0000, #ff4444);
  border-color: #ff0000;
}

.social-icon.linkedin:hover {
  background: linear-gradient(135deg, #0077b5, #00a0dc);
  border-color: #0077b5;
}

/* Bottom Section */
.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.copyright p {
  font-size: 14px;
  color: #e2e8f0;
  font-weight: 400;
}

.footer-links-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links-bottom a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 4px;
}

.footer-links-bottom a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.developer-credit p {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 400;
}

.highlight {
  color: #60a5fa;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    padding: 0 32px 40px;
  }
  
  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 968px) {
  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    padding: 0 24px 40px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .footer-contact {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 20px 32px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 16px;
  }
  
  .footer-contact {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .contact-info1 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-bottom-container {
    padding: 24px 20px;
    gap: 12px;
  }
  
  .footer-links-bottom {
    flex-direction: column;
    gap: 12px;
  }
  
  .separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .main-content h1 {
    font-size: 2rem;
  }
  
  .main-content p {
    font-size: 1rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px 24px;
  }
  
  .footer-brand .company-logo h3 {
    font-size: 24px;
  }
  
  .payment-icons {
    justify-content: center;
  }
  
  .footer-bottom-container {
    padding: 20px 16px;
  }
  
  .copyright p,
  .developer-credit p {
    font-size: 12px;
  }
  
  .footer-links-bottom a {
    font-size: 12px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
}

/* Focus states for accessibility */
.footer-links li a:focus,
.social-icon:focus,
.footer-links-bottom a:focus {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Animation for loading */
.footer-column {
  animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }
.footer-column:nth-child(5) { animation-delay: 0.5s; }
.footer-column:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover effects for entire footer columns */
.footer-column:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

/* Enhanced visual hierarchy */
.footer-brand {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 40px;
}

/* Subtle glow effect on hover for payment icons */
.payment-icon:hover {
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(96, 165, 250, 0.3);
}

/* Enhanced contact items */
.contact-item1 {
  transition: all 0.3s ease;
  padding: 8px 0;
  border-radius: 6px;
}

.contact-item1:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-left: 8px;
  margin-left: -8px;
}

.contact-item1:hover i {
  color: #34d399;
  transform: scale(1.1);
}
/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: darkred;
}

/* Main grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 50px;
}

/* Service description text + image */
.service-description h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: indigo;
}

.service-description {
    margin: 0 auto;
    text-align: center;
}

.service-description img {
    width: 100%;              /* ✅ make image scale with screen */
    max-width: 500px;         /* ✅ prevent it from stretching too large */
    height: auto;             /* ✅ keep aspect ratio */
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    display: block;
    margin: 0 auto;
}

/* Benefits list */
.service-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--secondary-color);
}

.benefit-icon {
    background: linear-gradient(135deg, var(--secondary-color), #ef4444);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* =================== Responsive Design =================== */
@media (max-width: 1024px) { 
    .services-grid {
        gap: 50px;
    }
}

@media (max-width: 768px) { 
    .services-grid {
        grid-template-columns: 1fr;   /* ✅ stack items vertically */
        gap: 40px;
        text-align: center;
    }
    .benefit-item {
        flex-direction: column;       /* ✅ stack icon & text vertically */
        align-items: center;
        text-align: center;
    }
    .benefit-icon {
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 1.5rem;           /* ✅ smaller heading for small screens */
        margin-bottom: 40px;
    }
    .service-description h3 {
        font-size: 1.2rem;
    }
    .benefit-item {
        padding: 16px;               /* ✅ reduce padding */
    }
    .benefit-item h4 {
        font-size: 1rem;
    }
    .benefit-item p {
        font-size: 0.85rem;
    }
}

/* AMC Benefits Section */
.amc-benefits {
    padding: 6rem 0;
    background: var(--background);
}

.amc-benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.amc-benefits-left .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.amc-benefits-left .section-description {
    text-align: left;
    margin: 0 0 2rem 0;
    max-width: none;
}

.amc-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item1 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease forwards;
}

.benefit-item1:nth-child(1) { animation-delay: 0.1s; }
.benefit-item1:nth-child(2) { animation-delay: 0.2s; }
.benefit-item1:nth-child(3) { animation-delay: 0.3s; }
.benefit-item1:nth-child(4) { animation-delay: 0.4s; }
.benefit-item1:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefit-item1 i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.benefit-item1:hover i {
    transform: scale(1.2);
}

.benefit-item1 h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit-item1 p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.amc-benefits-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-heavy);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.amc-benefits-image:hover {
    transform: scale(1.03) rotateY(5deg);
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
    .amc-benefits-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .amc-benefits-left .section-title,
    .amc-benefits-left .section-description {
        text-align: center;
    }

    .amc-benefits-list {
        align-items: center;
    }

    .benefit-item1 {
        justify-content: center;
        text-align: center;
    }

    .benefit-item1 div {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .amc-benefits {
        padding: 4rem 0;
    }

    .amc-benefits-content {
        gap: 2rem;
    }

    .amc-benefits-list {
        gap: 1.5rem;
    }

    .benefit-item1 i {
        font-size: 1.25rem;
    }

    .benefit-item1 h4 {
        font-size: 1rem;
    }

    .benefit-item1 p {
        font-size: 0.875rem;
    }

    .amc-benefits-image {
        border-radius: 0.75rem;
    }
}

@media (max-width: 480px) {
    .amc-benefits {
        padding: 3rem 0;
    }

    .benefit-item1 {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .benefit-item1 i {
        margin-top: 0;
        font-size: 1.5rem;
    }
}

/* cta */
.cta {
    background: linear-gradient(135deg, #e0f2ff, #f9fcff);
    padding: 80px 20px;
    text-align: center;
    border-radius: 16px;
    margin: 60px auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
}

.cta-content {
    max-width: 700px;
    margin: auto;
}


.cta h2 {
    color: #002d72;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta p {
    color: #444;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
 font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    /* font-size: 16px;
    color: #444;
    line-height: 1.7;
    letter-spacing: 0.2px;
    margin-bottom: 15px; */
}

.cta-btn {
    background: #007bff;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
    background: #005fc2;
    transform: translateY(-2px);
}

/* 🌟 Responsive */
@media (max-width: 768px) {
    .cta h2 {
        font-size: 28px;
    }

    .cta p {
        font-size: 16px;
    }
}