/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600&family=Poppins:wght@400;600&display=swap');

/* Reset and base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f7fa;
  color: #042c33;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  background-color: #e0f0ff; /* Soft background */
  color: #0a2540;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Logo (Site Title) */
.logo {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #0a2540;
  cursor: default;
  user-select: none;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.03);
}

/* Navbar */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

nav ul li {
  position: relative;
}

nav ul li a,
nav ul li .btn {
  color: #f1f4f7;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 0.8rem;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: #74b9ff;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li a:hover,
nav ul li .btn:hover {
  color: #2980b9;
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #dfe6e9;
  min-width: 180px;
  top: 100%;
  left: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: dropdownFade 0.3s ease;
}

.dropdown-content a {
  color: #0a2540;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background-color: #b2bec3;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Subscribe Button */
.subscribe-btn {
  background: #74b9ff;
  color: white;
  font-weight: 600;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.subscribe-btn:hover {
  background: #0984e3;
  transform: scale(1.05);
}

/* Animation for dropdown */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Poppins:wght@400;600&display=swap');

/* Hero Section (Home Page) */


.home-hero {
  background-image: url('images/computingbg.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Transparent dark overlay */
.home-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55); /* Adjust opacity */
  z-index: 1;
}

/* Hero Content */
.home-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 2rem;
  max-width: 800px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

/* Hero Title */
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  color: whi;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  animation: fadeIn 2s ease forwards;
}

/* Hero Subtitle / Paragraph */
.hero-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #f0f0f0;
  margin-top: 0.5rem;
  animation: fadeIn 2.5s ease forwards;
}

.home-hero {
  transition: background-image 1s ease-in-out;
}

.home-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-background-slider {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1s ease-in-out;
  z-index: 0;
  opacity: 1;
}


/* Fade-in keyframes */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/* Cards container */
.cards {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Roboto&family=Montserrat:wght@700&display=swap');

/* General Body */
body {
  background-color: #f9fbfc;
  font-family: 'Roboto', sans-serif;
  color: #333;
  margin: 0;
  padding: 0 1rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 5rem 1rem 3rem 1rem;
  background: linear-gradient(135deg, #4a90e2, #145374);
  color: white;
  font-family: 'Poppins', sans-serif;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(20, 83, 116, 0.4);
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 1.2px;
  text-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Section Titles */
.section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  text-align: center;
  color: #145374;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}



/* Responsive tweaks */
@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    padding: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .search-icons {
    margin-top: 0.7rem;
    justify-content: center;
    width: 100%;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 2rem 1rem;
  }
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #0c0c0c; /* optional: navbar bg color */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* subtle shadow */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px; /* space between logo and text */
  cursor: pointer;
}

.logo img {
  height: 50px; /* size of circle */
  width: 50px;
  border-radius: 50%; /* makes image circular */
  object-fit: cover;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.5); /* subtle glow */
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1); /* slight zoom on hover */
}

.logo div {
  font-weight: 700;
  font-size: 1.5rem;
  color: #007bff; /* nice blue */
  user-select: none;
}

.subscribe-btn {
  margin-left: 1rem;
  padding: 0.5rem 1rem;
  background-color: #007BFF; /* blue */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #0056b3; /* darker blue on hover */
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}



/* Industry Icons */
.icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  animation: pop 0.6s ease;
}

/* Fade-in effect on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional icon pop animation */
@keyframes pop {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Trigger fade-in with JS on scroll */


.icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  animation: pop 0.6s ease;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pop {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

 /* Loader Styles */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #cacfd4;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s;
}

/* Container for the spinning ring and logo */
.spinner-container {
  position: relative;
  width: 150px;
  height: 150px;
}

/* Stylish animated spinner */
.circle-spinner {
  width: 150px;
  height: 150px;
  border: 8px solid rgba(0, 123, 255, 0.2);
  border-top: 8px solid #007BFF;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.4);
}

/* Logo in the center */
.logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.logo-center img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  animation: none; /* Logo stays static */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Fade out loader */
body.loaded #loader {
  opacity: 0;
  visibility: hidden;
}

/* Main content initially hidden */
main {
  display: none;
}

/* Reveal content smoothly */
body.loaded main {
  display: block;
  animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

   /* ---------- FANCY & ANIMATED MODAL ---------- */

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  animation: fadeInBg 0.4s ease forwards;
}

.modal.show {
  display: block;
}

/* Modal Content with glass effect & shadow */
.modal-content {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-radius: 15px;
  margin: 8% auto;
  padding: 30px 25px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  animation: zoomFadeIn 0.5s ease forwards;
  position: relative;
  border: 2px solid #5c6bc0;
}

/* Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #5c6bc0;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s ease;
  user-select: none;
}

.close:hover {
  color: #303f9f;
}

/* Input Fields */
.modal input {
  display: block;
  width: 100%;
  margin-bottom: 18px;
  padding: 12px 15px;
  font-size: 1rem;
  border: 2px solid #c5cae9;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.modal input:focus {
  outline: none;
  border-color: #3f51b5;
  box-shadow: 0 0 8px rgba(63, 81, 181, 0.6);
}

/* Button */
.modal button {
  width: 100%;
  padding: 14px;
  background-color: #3f51b5;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.modal button:hover {
  background-color: #303f9f;
  box-shadow: 0 5px 15px rgba(48, 63, 159, 0.6);
}

/* Modal Paragraph */
.modal p {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #555;
  margin-top: 10px;
}

/* Background fade-in animation */
@keyframes fadeInBg {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Modal zoom + fade-in */
@keyframes zoomFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

  /* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@500&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Poppins:wght@400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f7fa;
  color: #333;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, #00b4db, #005b96);
  color: #fff;
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.2rem;
  animation: fadeInUp 1s ease;
}

/* Services Section */
.services-section {
  background: linear-gradient(to right, #f7fbff, #e1ecf4);
  padding: 4rem 2rem;
}

.services-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-family: 'Ubuntu', sans-serif;
  color: #003366;
  margin-bottom: 3rem;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-box {
  background: white;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.icon-box {
  font-size: 2.5rem;
  color: #0059b3;
  margin-bottom: 1rem;
}

.service-box h3 {
  font-size: 1.4rem;
  font-family: 'Ubuntu', sans-serif;
  margin-bottom: 0.8rem;
  color: #003366;
}

.service-box p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Section */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
  animation: fadeIn 1s ease;
}

.contact-info, .contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info h2,
.contact-form h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #005b96;
  margin-bottom: 1rem;
  font-family: 'Orbitron', sans-serif;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.8;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-top: 1.5rem;
}


.social-icons a {
  text-decoration: none;
  font-size: 1.7rem;
  margin-right: 1rem;
  color: #005b96;
  background: #e0f4ff;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-icons a:hover {
  background: #4da4b8;
  color: #fff;
  transform: scale(1.2);
}

/* Contact Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: #f9fcff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  width: 100%;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.03);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00b4db;
  outline: none;
  box-shadow: 0 0 10px rgba(0,180,219,0.3);
}

.contact-form button {
  background: linear-gradient(to right, #00b4db, #005b96);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.4s ease;
}

.contact-form button:hover {
  background: linear-gradient(to right, #005b96, #00b4db);
}

/* Map Section */
.map-section iframe {
  border: none;
  width: 100%;
  height: 300px;
  margin-top: -30px;
  border-radius: 0 0 20px 20px;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .contact-section {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .contact-form form {
    padding: 1.5rem;
  }
}

/* Map Toggle Button */
.map-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #005b96;
  color: white;
  padding: 14px 18px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: background 0.3s ease;
}

.map-toggle-btn:hover {
  background-color: #00b4db;
}

/* Hidden by default */
.hidden {
  display: none;
}

/* Map Section Styling */
.map-section {
  max-width: 1200px;
  margin: 1.5rem auto;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  background: #fff;
  animation: slideDown 0.6s ease;
  transition: all 0.4s ease;
}

.map-section iframe {
  width: 100%;
  height: 320px;
  border: none;
}

/* Slide Down Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Responsive Map Toggle Button */
@media (max-width: 600px) {
  .map-toggle-btn {
    padding: 10px 14px;
    font-size: 0.9rem;
    bottom: 15px;
    right: 15px;
  }
}

/* Footer Styles */
footer {
  background: linear-gradient(to right, #0083b0, #00b4db);
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  position: relative;
  margin-top: 3rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #ffffff33;
  animation: fadeInFooter 1s ease-in-out;
  letter-spacing: 0.5px;
  z-index: 10;
}

/* Footer Animation */
@keyframes fadeInFooter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer Hover Box Glow Effect */
footer:hover {
  box-shadow: 0 -6px 20px rgba(0, 179, 219, 0.4);
  transition: all 0.4s ease-in-out;
}

/* Responsive Font */
@media (max-width: 600px) {
  footer {
    font-size: 0.9rem;
    padding: 16px 8px;
  }
}


/* career css */
/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@400;600&display=swap');

/* Base Styles */
body {
  font-family: 'Kanit', sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f7fa;
  color: #222;
  line-height: 1.6;
}

/* Hero Section */
.career-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #00b4db, #0083b0);
  color: #fff;
  animation: fadeInSlide 1.2s ease-in-out;
}

.career-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  animation: fadeInDown 1s ease;
}

.career-hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

/* Section Headings */
.career-section h2,
.why-join h2 {
  text-align: center;
  color: #0083b0;
  font-size: 2.2rem;
  margin: 2rem 0 1rem;
  animation: fadeIn 1s ease-in-out;
}

/* Job Cards Section */
.career-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.career-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 131, 176, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInCard 1s ease;
  text-align: center;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 131, 176, 0.25);
}

.career-card h3 {
  color: #00b4db;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.career-card p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.career-card button {
  background-color: #00b4db;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.career-card button:hover {
  background-color: #0083b0;
}

/* Animations */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* Why Join Section */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Poppins:wght@400;600&display=swap');
.why-card {
  background: #ffffff;
  border-left: 6px solid #00b4db;
  border-bottom: 6px solid #00b4db;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.1),
    12px 12px 25px rgba(0, 0, 0, 0.06),
    -12px 12px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 2rem 1.5rem;
  font-family: 'Merriweather', serif; /* Stylish font */
  max-width: 350px;
  margin: auto;
  animation: slideUp 0.8s ease;
}

.why-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Text inside the card */
.why-card h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.4rem;
  color: #0083b0;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 1rem;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.15),
    18px 18px 35px rgba(0, 0, 0, 0.07),
    -18px 18px 35px rgba(0, 0, 0, 0.07);
}


@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@400;600&family=Segoe+UI&display=swap');

/* Animations */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .card button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}


/* insights css */
/* Grid for cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Card style */
.card {
  background: #f9faff;
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  padding-bottom: 15px;
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* Image inside card */
.card .icon {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

/* Title styling */
.card h3 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #222;
  margin: 12px 20px 8px 20px;
  min-height: 3rem; /* to keep consistent height */
}

/* Paragraph (initially hidden) */
.card p {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  color: #0c0c0c;
  margin: 0 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

/* Show paragraph on hover or when read more clicked */
.card:hover p,
.card.expanded p {
  max-height: 300px; /* enough height to show content */
  opacity: 1;
}



/* industries */
/* ---------- IMPORT GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Raleway:wght@300;400;600&family=Playfair+Display:wght@700&display=swap');
/* ---------- IMPORT GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Raleway:wght@300;400;600&family=Playfair+Display:wght@700&family=Pacifico&family=Oswald:wght@500&family=Shadows+Into+Light&display=swap');

/* ---------- INDUSTRIES SECTION ---------- */
.expertise-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f2f4f7, #e8ecf0);
  text-align: center;
}

.expertise-section h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  color: #1f1f1f;
  margin-bottom: 20px;
}

/* Grid layout */
/* .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  padding: 0 20px;
} */

/* Card Common Style */
#healthcare-card,
#ecommerce-card,
#finance-card,
#education-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  font-family: 'Raleway', sans-serif;
  border: 2px solid transparent;
  animation: fadeSlideIn 1s ease both;
  display: flex;
  flex-direction: column;
}

/* Hover effect */
#healthcare-card:hover,
#ecommerce-card:hover,
#finance-card:hover,
#education-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  border: 2px solid #0d0d0e;
}

/* Banner Image */
#healthcare-card img,
#ecommerce-card img,
#finance-card img,
#education-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#healthcare-card:hover img,
#ecommerce-card:hover img,
#finance-card:hover img,
#education-card:hover img {
  transform: scale(1.05);
}

/* Different Font Titles */
#healthcare-card h3 {
  font-family: 'Pacifico', cursive;
}

#ecommerce-card h3 {
  font-family: 'Oswald', sans-serif;
}

#finance-card h3 {
  font-family: 'Playfair Display', serif;
}

#education-card h3 {
  font-family: 'Shadows Into Light', cursive;
}

/* Common Title Styling */
#healthcare-card h3,
#ecommerce-card h3,
#finance-card h3,
#education-card h3 {
  font-size: 1.7rem;
  color: #2a2a2a;
  margin: 20px 15px 10px 15px;
}

/* Description */
#healthcare-card p,
#ecommerce-card p,
#finance-card p,
#education-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  padding: 0 15px 20px;
  flex-grow: 1;
}

/* Fancy Animation */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
