* {
  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);
}

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;
  }
}

/* History Section */
.history-section {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.history-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(16, 185, 129, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.history-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.history-image {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.image-container {
  position: relative;
  width: 450px;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: imageFloat 6s ease-in-out infinite;
  margin-bottom: 30px;
}

@keyframes imageFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateY(5px) rotate(-0.5deg);
  }
}

.history-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-container:hover .history-img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2) 0%,
    rgba(16, 185, 129, 0.2) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.image-description {
  max-width: 450px;
  text-align: center;
  animation: fadeInUp 1s ease-out 1.3s both;
}

.image-description p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #f97316;
  transition: all 0.3s ease;
}

.image-description p:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.history-text {
  padding-left: 20px;
  animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-header {
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-subtitle {
  color: #f97316;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
  animation: slideInLeft 1s ease-out 0.7s both;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-title {
  color: #d32f2f;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  overflow: hidden;
  border-right: 3px solid #d32f2f;
  white-space: nowrap;
  animation: typewriter 2s steps(11) 0.9s both, blink 1s step-end infinite 2.9s;
}

@keyframes typewriter {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes blink {
  0%,
  50% {
    border-color: #d32f2f;
  }
  51%,
  100% {
    border-color: transparent;
  }
}

.history-description p {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
  animation: fadeIn 1s ease-out 1.1s both;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Enhanced Image Animations */
.image-container::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(59, 130, 246, 0.1),
    transparent
  );
  animation: rotate 8s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover::after {
  opacity: 1;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Scroll-triggered animations */
@media (prefers-reduced-motion: no-preference) {
  .history-section {
    opacity: 0;
    animation: sectionFadeIn 1s ease-out forwards;
  }

  @keyframes sectionFadeIn {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Particle effect */
.history-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(59, 130, 246, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(16, 185, 129, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(139, 92, 246, 0.1) 1px,
      transparent 1px
    );
  background-size: 50px 50px, 80px 80px, 60px 60px;
  animation: particleMove 20s linear infinite;
  pointer-events: none;
  opacity: 0.5;
}

@keyframes particleMove {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-50px) translateY(-50px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .history-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .history-text {
    padding-left: 0;
  }

  .image-container {
    width: 400px;
    height: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .history-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 36px;
  }

  .image-container {
    width: 350px;
    height: 250px;
  }

  .history-description p {
    text-align: left;
    font-size: 15px;
  }

  .image-description {
    max-width: 350px;
  }

  .image-description p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .history-content {
    gap: 30px;
  }

  .section-title {
    font-size: 28px;
    white-space: normal;
    border-right: none;
    animation: fadeIn 1s ease-out 0.9s both;
  }

  .image-container {
    width: 300px;
    height: 200px;
  }

  .history-text {
    padding-left: 0;
  }

  .image-description {
    max-width: 300px;
  }

  .image-description p {
    font-size: 12px;
    padding: 15px;
  }
}

/* questions sections */
.questions_section {
  background: #cbdeb433;
}

.container1 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px; /* Added horizontal padding for better mobile fit */
  gap: 60px;
  max-width: 1200px; /* Added max-width to center on large screens */
  margin: 0 auto; /* Center the container */
}

.illustration {
  flex: 0 0 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 20px;
}

.illustration img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  /* margin-top: 50px;
  height: 450px; */
}

.faq-section {
  max-width: 560px;
  flex: 1;
}

.faq-section h2 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #443a9d;
  margin-bottom: 12px;
}

.faq-section hr {
  width: 60px;
  height: 4px;
  border: none;
  background: #ea346d;
  margin-bottom: 24px;
}

.faq-section p {
  color: rgb(63, 62, 62);
  font-size: 1.08rem;
  margin-bottom: 36px;
}

.accordion {
  background: #f5f8fc;
  border-radius: 16px;
  box-shadow: 0 2px 8px #221c5411;
  padding: 24px;
}

.accordion-item {
  margin-bottom: 18px;
}

.accordion-title {
  font-weight: bold;
  color: #443a9d;
  font-size: 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
}

.accordion-content {
  color: rgb(63, 62, 62);
  font-size: 1.07rem;
  margin-top: 10px;
  display: none;
}

.accordion-item.active .accordion-content {
  display: block;
}

.plus-icon {
  font-size: 2rem;
  /* background: linear-gradient(135deg, #8B5CF6, #A78BFA); */
  color: #392e9f;
}

/* Media Queries for Responsiveness */

/* Tablets and smaller desktops (max-width: 1024px) */
@media (max-width: 1024px) {
  .container1 {
    gap: 40px;
    padding: 30px 20px;
  }

  .illustration {
    flex: 0 0 40%; /* Reduce fixed width percentage */
  }

  .illustration img {
    max-width: 100%;
  }

  .faq-section h2 {
    font-size: 2.2rem;
  }

  .accordion {
    padding: 20px;
  }

  .accordion-title {
    font-size: 1.2rem;
  }

  .accordion-content {
    font-size: 1rem;
  }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .container1 {
    flex-direction: column; /* Stack illustration and FAQ vertically */
    align-items: center;
    gap: 30px;
    padding: 20px 15px;
  }

  .illustration {
    flex: 0 0 auto; /* Remove fixed width */
    width: 100%; /* Full width on mobile */
    padding: 10px;
  }

  .illustration img {
    max-width: 100%;
  }

  .faq-section {
    max-width: 100%; /* Full width */
  }

  .faq-section h2 {
    font-size: 2rem;
    text-align: center; /* Center heading on mobile */
  }

  .faq-section hr {
    margin: 0 auto 20px; /* Center the HR */
  }

  .faq-section p {
    font-size: 1rem;
    text-align: center; /* Center paragraph text */
  }

  .accordion {
    padding: 16px;
  }

  .accordion-title {
    font-size: 1.1rem;
  }

  .accordion-content {
    font-size: 0.95rem;
  }

  .plus-icon {
    font-size: 1.5rem;
  }
}

/* Smaller mobile devices (max-width: 480px) */
@media (max-width: 480px) {
  .container1 {
    padding: 15px 10px;
    gap: 20px;
  }

  .faq-section h2 {
    font-size: 1.8rem;
  }

  .faq-section p {
    font-size: 0.95rem;
  }

  .accordion {
    padding: 12px;
  }

  .accordion-title {
    font-size: 1rem;
  }

  .accordion-content {
    font-size: 0.9rem;
  }
}

/* About Section */
.content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  background: whitesmoke;
  border-radius: 24px;
  padding: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4, #8b5cf6);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 200% 0;
  }
  50% {
    background-position: -200% 0;
  }
}

.content-section:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.15),
    0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.content-area {
  padding: 1rem;
}

.section-title1 {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 2rem;
  position: relative;
  line-height: 1.2;
}

.section-title1::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  /* background: linear-gradient(135deg, #f59e0b, #ef4444); */
  border-radius: 2px;
  transition: width 0.3s ease;
}

.content-section:hover .section-title1::after {
  width: 120px;
}

.section-text {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  font-weight: 400;
  text-align: justify;
}

.image-container {
  position: relative;
  padding: 1rem;
}

.section-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.section-image:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 35px 70px -12px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2),
    rgba(6, 182, 212, 0.2),
    rgba(139, 92, 246, 0.2)
  );
  border-radius: 24px;
  transform: rotate(-3deg) scale(0.95);
  z-index: 1;
  transition: transform 0.5s ease;
}

.content-section:hover .image-container::before {
  transform: rotate(-6deg) scale(0.9);
}

.mission-section {
  grid-template-columns: 1fr 1fr;
}

.mission-section .content-area {
  order: 2;
}

.mission-section .image-container {
  order: 1;
}

/* Decorative elements */
.decorative-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
}

.decorative-dot:nth-child(1) {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.decorative-dot:nth-child(2) {
  top: 60%;
  right: 5%;
  animation-delay: 1s;
}

.decorative-dot:nth-child(3) {
  top: 80%;
  right: 15%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  body {
    padding: 3rem 1.5rem;
  }

  .main-title {
    font-size: 3.5rem;
  }

  .content-section {
    gap: 3rem;
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2.8rem;
  }

  .subtitle {
    font-size: 1.25rem;
  }

  .content-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
    padding: 2rem;
  }

  .mission-section .content-area,
  .mission-section .image-container {
    order: unset;
  }

  .section-title1 {
    font-size: 2.25rem;
    text-align: center;
  }

  .section-text {
    text-align: center;
    font-size: 1.125rem;
  }

  .section-image {
    height: 280px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 2rem 1rem;
  }

  .main-title {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1.125rem;
  }

  .content-section {
    padding: 1.5rem;
    gap: 2rem;
  }

  .section-title1 {
    font-size: 1.875rem;
  }

  .section-text {
    font-size: 1rem;
  }

  .section-image {
    height: 240px;
  }
}

/* Smooth entrance animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.header {
  animation: fadeInUp 0.8s ease-out;
}

.story-section {
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.mission-section {
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

/* Enhanced visual effects */
.content-section::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1),
    rgba(6, 182, 212, 0.1)
  );
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 0;
  transition: all 0.4s ease;
}

.content-section:hover::after {
  transform: translateY(-50%) scale(1.2);
  opacity: 0.8;
}

.content-area,
.image-container {
  position: relative;
  z-index: 3;
}

/* Section Styles */
.section-header1 {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title1 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: rgb(151, 68, 38);
  margin-bottom: 1rem;
  position: relative;
  margin-top: 3rem;
}

.section-title1::after {
  content: "";
  position: absolute;
  /* bottom: -10px; */
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  /* background: linear-gradient(90deg, var(--primary-light), var(--secondary-color)); */
  border-radius: 2px;
}

.section-subtitle1 {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Brands Section */
.brands-section {
  background-color: rgb(217, 247, 247);
  padding: 50px 20px;
}

.brands-section h3 {
  text-align: center;
  color: #001e6c;
  font-size: 2rem;
  margin-bottom: 30px;
}

.brands-section h3::after {
  content: "";
  display: block;
  height: 4px;
  width: 80px;
  background: linear-gradient(to right, #004d99, #339dff);
  border-radius: 2px;
  margin: 10px auto 0;
}

/* Slider Styling */
.brand-slider {
  overflow: hidden;
  position: relative;
  /* Adding padding to prevent names from being cut off at edges if they are too close */
  padding: 20px 0;
}

.slide-track {
  display: flex;
  /* Adjusting width based on the new slide width (image + name) */
  width: calc(
    200px * 20
  ); /* Each slide will be around 200px wide, including padding/margins */
  animation: scroll 60s linear infinite; /* Slower animation: 60s instead of 40s */
}

.slide {
  width: 200px; /* Adjusted width to better fit image and text */
  /* Removed fixed height to allow content to dictate height */
  display: flex;
  flex-direction: column; /* Stack image and name vertically */
  align-items: center; /* Center content horizontally */
  justify-content: center;
  padding: 10px;
  box-sizing: border-box; /* Include padding in the width calculation */
  text-align: center; /* Center the text */
}

.slide img {
  max-width: 100%; /* Ensure image doesn't overflow */
  height: 180px; /* Set a fixed height for images to keep them consistent */
  object-fit: contain;
  /* filter: grayscale(100%); Keep grayscale */
  transition: filter 0.3s;
  margin-bottom: 10px; /* Space between image and name */
}

.slide img:hover {
  filter: grayscale(0%);
}

/* Brand Name below Image */
.brand-name {
  color: #001e6c; /* Dark blue for brand names */
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap; /* Prevent brand names from wrapping if they are long */
  overflow: hidden; /* Hide overflow if text is too long (though white-space nowrap handles most of this) */
  text-overflow: ellipsis; /* Add ellipsis if text is cut off */
}

/* Animation - Adjusted for new slide width and slower speed */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      calc(-200px * 10)
    ); /* Adjust based on new slide width */
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    width: 150px; /* Adjusted for smaller screens */
  }

  .slide img {
    height: 80px; /* Smaller image height */
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .slide-track {
    width: calc(150px * 20);
    animation: scroll 45s linear infinite; /* Adjust animation speed */
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-150px * 10));
    }
  }
}

@media (max-width: 480px) {
  .slide {
    width: 120px; /* Further adjusted for very small screens */
  }

  .slide img {
    height: 60px; /* Even smaller image height */
  }

  .brand-name {
    font-size: 0.5rem;
  }

  .slide-track {
    width: calc(120px * 20);
    animation: scroll 35s linear infinite; /* Adjust animation speed */
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-120px * 10));
    }
  }

  .brands-section h3 {
    font-size: 1.5rem;
  }
}


/* 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);
}
.about_img {
  width: 100%;
  max-width: auto; /* keeps image area from stretching too wide on large screens */
  margin: 0 auto; /* centers on the page */
  /* padding: 10px; */
}

.about_img img {
  width: 100%;
  height: 300px; /* keeps correct aspect ratio */
  display: block;
  object-fit:fill; /* makes sure it fills nicely */
}
