@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Lato:wght@300;400&display=swap');

/*NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  /* Anchors the mobile dropdown correctly */
  z-index: 100;
}

.logo img {
  width: 80px;
  border-radius: 50%;
}

/* Container bundling the links & button together */
.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #2563eb;
}

.btn-primary {
  background: #2563eb;
  color: white;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #1d4ed8;
}

/* --- Hamburger Menu Icon (Hidden on Desktop) --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #1b1b70;
  border-radius: 10px;
  transition: all 0.3s ease;
}


/* RESPONSIVE BREAKPOINT (900px and below)*/
@media (max-width: 900px) {
  .navbar {
    padding: 16px 20px;
  }

  /* Reveal the hamburger icon on mobile view */
  .menu-toggle {
    display: flex;
  }

  .nav-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    box-sizing: border-box;

    /* Layout structural updates for mobile stack */
    flex-direction: column;
    align-items: stretch;
    gap: 25px;

    /* Hidden state settings  */
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.4s ease;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .navbar .btn-primary {
    text-align: center;
  }

  /* --- Interactive States (Triggered via JavaScript class toggle) --- */

  /* Slides down and fades in when .active class is applied */
  .nav-container.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Animates the 3 bars smoothly into a crisp close 'X' */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* body*/
.hero-section {
  background: #f8fafc;
  padding: 60px 40px;
}

.hero-section h2 {
  text-align: center;
  color: #1b1b70;
  margin-top: 40px;
  margin-bottom: 30px;
  font-size: 36px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.badge {
  background: #e0e7ff;
  color: #4338ca;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #1b1b70;
  margin: 20px 0;
}

.hero-content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #1b1b70;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-outline {
  background: transparent;
  color: #1b1b70;
  padding: 12px 28px;
  border: 2px solid #1b1b70;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #1c3669;
  color: white;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Feature Cards */
.features-grid {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scrollCards 20s linear infinite;
}

.feature-card {
  min-width: 260px;
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}

.feature-card .icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.icon {
  width: 80px;
  height: 80px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: 0.3s;
}

.icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.feature-card:hover .icon {
  transform: scale(1.1);
  background: #dbeafe;
}

.feature-card h4 {
  color: #1b1b70;
  font-size: 16px;
  margin-bottom: 8px;
}

.feature-card p {
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

@keyframes scrollCards {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.features-grid:hover {
  animation-play-state: paused;
}

/* RESPONSIVE*/
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-section {
    padding: 50px 20px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    width: auto;
    min-width: 180px;
    text-align: center;
  }

  .hero-image img {
    height: auto;
  }
}

.why-choose {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.why-choose h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.why-choose .subtitle {
  color: #64748b;
  font-size: 15px;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: auto;
}

.why-item {
  padding: 10px;
  border: 1px solid #e2e8f0;
}

.why-item:last-child {
  border-right: none;
}

.why-item:first-child {
  border-left: none;
}

.why-icon {
  width: 50px;
  height: 50px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.why-icon img {
  width: 24px;
  height: 24px;
}

.why-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1b1b70;
  margin-bottom: 8px;
}

.why-item span {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.why-choose h2 {
  color: #1b1b70;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .why-choose {
    padding: 50px 20px;
  }

  .why-choose h2 {
    font-size: 28px;
  }
}

@media (max-width: 500px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/*footer*/

.footer {
  background: #0a192f;
  /* dark navy like image */
  color: #cbd5e1;
  padding: 50px 60px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #60a5fa;
}

.contact-list li {
  color: #94a3b8;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  background: #1e293b;
  color: #cbd5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #2563eb;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  color: #64748b;

}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer {
    padding: 40px 20px 20px;
  }
}

/* About Us*/

.header {
  background: #0a192f;
  color: white;
  padding: 60px 40px;
  text-align: center;
}

@media (max-width: 768px) {

  .header {
    padding: 40px 15px;
  }

  .header h1 {
    font-size: 28px;
  }

  .header p {
    font-size: 14px;
  }

}

.about-hero-section {
  background: #f8fafc;
  padding: 60px 40px;
}

.about-hero-section h2 {
  color: #1b1b70;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero-image img {
  width: 100%;
  display: block;
  border-radius: 15px;

}

.about-hero-content {
  text-align: left;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-feature-card {
  width: 100%;
  min-width: 0;
  background: white;
  padding: 20px 15px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  margin-bottom: 30px;
}

.about-feature-card h4 {
  color: #1b1b70;
  font-size: 34px;
}

.about-hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #556b82;
  margin-bottom: 25px;
}

.mission-vision-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 15px;
}

.mv-block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(27, 27, 112, 0.03);
  border-left: 4px solid #1b1b70;
  transition: transform 0.3s ease;
}

.mv-block:hover {
  transform: translateX(5px);
}

.mv-icon {
  background: rgba(27, 27, 112, 0.1);
  color: #1b1b70;
  padding: 10px;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.mv-text strong {
  display: inline-block;
  color: #1b1b70;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.mv-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #556b82;
  margin: 0;
}

/*RESPONSIVE*/
@media (max-width: 900px) {
  .about-hero-container {
    grid-template-columns: 1fr;
  }

  .about-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .about-features-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-section {
    padding: 40px 20px;
  }

  .about-hero-section h2 {
    font-size: 28px;
  }
}

/*Services*/
.services-hero-section {
  background: #f8fafc;
  padding: 60px 40px;

}

.services-hero-container h2 {

  text-align: center;
  color: #1b1b70;
  margin-top: 10px;
  font-size: 30px;
}

.services-hero-container p {
  text-align: center;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 30px;
}

.services-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-feature-card {
  background: white;
  padding: 20px 10px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.services-feature-card:hover .icon {
  animation: spinOnce 0.8s ease forwards;

}

@keyframes spinOnce {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(360deg);
  }
}

.services-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(77, 78, 79, 0.15);
}

.services-feature-card h4 {
  color: #1b1b70;
}

@media (max-width: 900px) {
  .services-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-features-grid {
    grid-template-columns: 1fr;
  }

  .services-hero-section {
    padding: 40px 20px;
  }
}

/*Team*/
.team-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
  box-sizing: border-box;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-section h2 {
  font-size: 2.2rem;
  color: #1b1b70;
  margin-bottom: 12px;
  font-weight: 700;
}

.team-section p {
  font-size: 1rem;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.team-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-card {
  width: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  border: 1px solid #e1e1e1;
}

.team-card:hover {
  transform: translateY(-5px);
}

.top-section {
  background-color: #f7f8f5;
  padding: 0 0 20px 0;
}

.top-section .icon {
  width: 100%;
  height: 260px;
  overflow: hidden;
  margin-bottom: 15px;
  background-color: #f1f3f5;
  border-radius: 0;

}

.top-section .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #454647;
}

.top-section h4 {
  font-size: 1.15rem;
  color: #1f2937;
  margin: 0 0 6px 0;
  font-weight: 600;
}

.top-section p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}

.bottom-section {
  background-color: #ffffff;
  padding: 18px 15px;
  border-top: 1px solid #f3f4f6;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background-color: #f3f4f6;
  color: #0b346c;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
  transition: all 0.2s ease;
}

.social-icons a:hover {
  background-color: #1e3a8a;
  color: #ffffff;
}

/*career*/
.career-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.career-container {
  max-width: 1140px;
  margin: 0 auto;
}

.career-header {
  margin-bottom: 40px;
}

.career-header h2 {
  font-size: 2rem;
  color: #1b1b70;
  margin: 0 0 10px 0;
}

.career-header p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}


.career-content-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* Left Side: Roles List */
.roles {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.role-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.role-info h4 {
  font-size: 1.15rem;
  color: #1b1b70;
  margin: 0 0 6px 0;
}

.role-info p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

.btn {
  text-decoration: none;
  color: #2c4a8b;
  border: 1px solid #d4d5d6;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.btn:hover {
  background-color: #1c3669;
  color: #ffffff;
}


.why-us {
  flex: 1;
}

.why-us h2 {
  font-size: 1.4rem;
  color: #1b1b70;
  margin: 0 0 20px 0;
}


.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.benefits-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-size: 0.95rem;
}

.benefits-list i {
  color: #1b1b70;
}

.hero-image {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .career-content-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .roles,
  .why-us {
    width: 100%;
  }

  .role-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}


/* CAREER DETAIL PAGE */

.container-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.container-section h1 {
  padding-top: 10px;
  color: #1b1b70;
}

.left-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.job-info {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  color: #6b7280;
  font-size: 14px;
}

.job-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-info i {
  color: #1b1b70;
}

.icon-box {
  background-color: #eef4f8;
  color: #1b1b70;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-text h2 {
  color: #1b1b70;
  font-size: 18px;
  margin: 0 0 4px 0;
}

.info-text p,
.info-text li {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

.career-right-section {
  background: #ffffff;
  border-left: 1px solid #f0f0f0;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  box-sizing: border-box;
}

.career-right-section h2 {
  color: #1b1b70;
  margin-bottom: 35px;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  background: #fafafa;
  transition: 0.3s;
  box-sizing: border-box;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #1b1b70;
  background: #fff;
}

.input-group textarea {
  resize: vertical;
}

.btn-primary {
  background: #1b1b70;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #0d0d4a;
}

/* FOOTER CONTACT */

.footer-contact {
  background: #0a192f;
}

.footer-contact p {
  text-align: center;
  color: #64748b;
  padding: 20px;
}

/* MOBILE RESPONSIVE */

@media (max-width: 900px) {

  .container-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .career-right-section {
    border-left: none;
    width: 100%;
  }
}

@media (max-width: 768px) {

  .container-section {
    margin: 20px auto;
    padding: 20px 15px;
  }

  .left-section,
  .career-right-section {
    width: 100%;
  }

  .career-right-section {
    padding: 20px;
  }

  .job-info {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-col {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/*CONTACT PAGE*/

.contact-container-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.contact-container-section h1 {
  color: #1b1b70;
}

.contact-left-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-left: 40px;
  margin-top: 40px;
}

.info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-box {
  background-color: #eef4f8;
  color: #1b1b70;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-text h2 {
  color: #1b1b70;
  font-size: 18px;
  margin: 0 0 10px 0;
}

.info-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.contact-right-section {
  background: #ffffff;
  border-left: 1px solid #f0f0f0;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  box-sizing: border-box;
}

.contact-right-section h2 {
  color: #1b1b70;
  margin-bottom: 30px;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
}

.form-container textarea {
  resize: vertical;
}

/*TABLET*/

@media (max-width: 900px) {

  .contact-container-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-left-section {
    margin-left: 0;
    margin-top: 0;
  }

  .contact-right-section {
    border-left: none;
    width: 100%;
  }
}

/*MOBILE */

@media (max-width: 768px) {

  .contact-container-section {
    margin: 20px auto;
    padding: 20px 15px;
    gap: 30px;
  }

  .contact-left-section {
    width: 100%;
    margin: 0;
  }

  .contact-right-section {
    width: 100%;
    padding: 20px;
  }

  .info {
    align-items: flex-start;
    gap: 15px;
  }

  .info-text h2 {
    font-size: 17px;
  }

  .info-text p {
    font-size: 14px;
  }
}

/* BLOG */

.blog-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Blog Card */
.blog-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 25px;

  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  margin-bottom: 12px;
  color: #64748b;
}

.card-meta i {
  color: #1b1b70;
}

.card-content h2 {
  font-size: 19px;
  color: #1b1b70;
  line-height: 1.4;
  margin-bottom: 12px;
  font-weight: 600;
  word-wrap: break-word;
}

.card-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #475569;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1b1b70;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.2s ease;

  margin-top: auto;
}

.read-more:hover {
  gap: 10px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.page-number,
.page-next {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.page-number {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-next {
  padding: 0 16px;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-number:hover,
.page-next:hover {
  border-color: #1b1b70;
  color: #1b1b70;
  background-color: #f7fafc;
}

.page-number.active {
  background-color: #1b1b70;
  color: #ffffff;
  border-color: #1b1b70;
}

/* Tablet */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 650px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .card-meta {
    flex-direction: column;
    gap: 8px;
  }

  .pagination {
    flex-wrap: wrap;
  }

  .page-next {
    width: 100%;
    justify-content: center;
  }
}




/*blog detail*/
.main-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.image-container img {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  margin-bottom: 25px;
  object-fit: cover;
}

.blog-post h2 {
  color: #1b1b70;
  font-size: 2rem;
  margin-bottom: 15px;
}

.intro-text,
.closing-text {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.strategy-list {
  margin-bottom: 25px;
  padding-left: 20px;
}

.strategy-list li {
  margin-bottom: 15px;
}

.strategy-list b {
  font-size: 1.2rem;
  color: #1b1b70;
  display: inline-block;
  margin-bottom: 4px;
}

.strategy-list p {
  font-size: 16px;
  color: #555;
  margin: 0;

}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.widget {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.widget-title {
  font-size: 1.2rem;
  color: #1b1b70;
  border-bottom: 2px solid #1b1b70;
  padding-bottom: 10px;
  margin-top: 0;
  margin-bottom: 15px;
}

.widget-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.widget-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.widget-list a {
  text-decoration: none;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
  display: block;
  transition: all 0.3s ease;
}

.widget-list a:hover {
  color: #1b1b70;
  padding-left: 5px;
}

/* Blog Detail Responsive */

@media (max-width: 768px) {

  .main-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px 15px;
  }

  .image-container img {
    height: auto;
  }

  .blog-post h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .card-meta {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .intro-text,
  .closing-text,
  .strategy-list p {
    font-size: 16px;
  }

  .widget {
    padding: 20px;
  }
}

@media (max-width: 576px) {

  .blog-post h2 {
    font-size: 24px;
  }

  .widget-title {
    font-size: 18px;
  }

  .widget-list a {
    font-size: 14px;
  }

  .strategy-list b {
    font-size: 18px;
  }
}

/* Privacy Policy & Terms */

.privacy {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.privacy p {
  font-size: 18px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 20px;
}

.privacy strong {
  color: #1b1b70;
  font-size: 20px;
  font-weight: 600;
}

.privacy ol {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 25px;
}

.privacy li {
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
}

.privacy li::marker {
  color: #1b1b70;
  font-weight: bold;
}

.privacy-footer-bottom {
  padding: 15px;
  background: #0a192f;
  color: #64748b;
  text-align: center;
  font-size: 14px;
}

/* Tablet */
@media (max-width: 768px) {

  .privacy {
    margin: 40px auto;
    padding: 0 15px;
  }

  .privacy p,
  .privacy li {
    font-size: 16px;
  }

  .privacy strong {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 576px) {

  .privacy p,
  .privacy li {
    font-size: 15px;
    line-height: 1.6;
  }

  .privacy strong {
    font-size: 17px;
  }

  .privacy-footer-bottom {
    font-size: 13px;
    padding: 12px;
  }
}



