:root {
    --primary: #ff0000;
    --light: #f0e4de00;
    --dark: #000000;
  }
  :root {
    --bg: #fff;
    --text: #111;
    --text-light: #666;
    --input-bg: #f3f3f3;
    --input-focus-bg: #e0e0e0;
    --accent: #ff0000;
    --accent-hover: #b30000;
  }
  
  body.dark-mode {
    --bg: #000000;
    --text: #f9f9f9;
    --text-light: #aaa;
    --input-bg: #222;
    --input-focus-bg: #333;
    --accent: #d40000;
    --accent-hover: #a70000;
  }
  
  body {
    background-color: var(--dark);
    color: white;
    font-family: 'Nunito', sans-serif;
    margin: 0;
    transition: background-color 0.5s, color 0.5s;
  }
  
  /* NAVBAR */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 90px;
    z-index: 1000;
  }
  
  .navbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .navbar-nav {
    display: flex;
    font-family: sans-serif;
    font-weight: 800; /* Bold font weight */
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 15px;
    transition: color 0.3s ease;
    gap: 20px;
  }
  
  .nav-item {
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
  }
  
  .nav-item:hover,
  .nav-item.active {
    color: var(--primary);
  }

  .navbar-center {
    position: absolute;
    left: 48.75%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  @media (max-width: 768px) {
    .navbar-center {
      left: 46.5%; /* Slightly shift to the left */
    }
  }
  
  .navbar-brand img {
    height: 80px;
    width: auto;
  }
  .navbar-right {
    display: flex;
    align-items: center;
    gap: 60px; /* Add spacing between menu and translator */
  }
  .menu-icon {
    font-size: 20px;
    color: var(--primary);
  }
  /* Highlight active item inside dropdown list */
.dropdown-list a.active {
  color: var(--primary); /* Your theme's primary color */
  font-weight: 700;

}
  
  /* RIGHT SIDE (LANGUAGE SWITCHER) */
  .navbar-right {
    display: flex;
    align-items: center;
  }
  .nav-item.dropdown {
    position: relative;
  }
  
  .navbar-toggler {
    background: none;
    border: 2px solid var(--primary);
    padding: 8px 10px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* DROPDOWN TOGGLE LINK */
  .nav-link.dropdown-toggle {
    padding: 10px 15px;
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
  }
  .collab-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
  }

  
  .nav-link.dropdown-toggle:hover {
    color: var(--primary-color);
  }
  /* TOGGLE MODE BUTTON */
  .toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;              /* Set width */
    height: 40px;             /* Set equal height */
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;       /* Make it a circle */
    z-index: 1001;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;            /* Center icon */
    align-items: center;
    justify-content: center;
    font-size: 20px;          /* Adjust icon size */
    padding: 0;               /* Remove padding to prevent distortion */
  }
  
  .toggle-btn i {
    font-size: 18px;
  }
  body.light-mode .toggle-btn {
    background-color: black;
    color: white;
  }
    /* SHOW MENU ON HOVER */
    .nav-item.dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .nav-link.active {
      color: var(--primary-color);
    }
    
    .nav-item.active .nav-link {
      font-weight: 700;
      border-bottom: 2px solid var(--primary-color); /* optional underline effect */
    }

    body.light-mode .navbar {
      background-color: white;
    }
    
    body.light-mode .nav-item {
      color: black;
    }
    
    body.light-mode .nav-item:hover,
    body.light-mode .nav-item.active {
      color: var(--primary);
    }

  /* CONTENT */
  .content-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 120px;
    padding: 20px;
    justify-content: center;
  }
  
  .content-item {
    width: 300px;
    background-color: #1b1b1b;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    color: white;
    
  }
  
  .content-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--primary);
  }
  
  .content-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  /* FOOTER */
  .footer {
    background-color: var(--dark);
    padding: 30px 20px;
    text-align: center;
    color: white;
  }
  
  /* LIGHT MODE */
  body.light-mode {
    background-color: #ffffff;
    color: black;
  }
  
  
  body.light-mode .content-item {
    background-color: #f5f5f5;
    color: black;
  }
  
  body.light-mode .footer {
    background-color: var(--light);
    color: black;
  }
  

  .quick-links {
    margin-left: 100px; /* Default for large screens */
  }
  
  /* Override for smaller screens */
  @media (max-width: 768px) {
    .quick-links {
      margin-left: 0;
    }
  }

  .footer {
    background-color: var(--dark);
    padding: 50px 20px 30px;

    text-align: center;
  }
  
  .footer.light-mode {
    background-color: var(--light);
    color: black;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
    text-align: left;
  }
  
  .footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
  }
  
  .footer-link {
    color: inherit;
    text-decoration: none;
  }
  
  .footer-link:hover {
    color: var(--primary);
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }
  
  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;         /* Circle size */
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: var(--primary); /* Or any other color */
    color: white;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .social-icons a:hover {
    background-color: white;
    color: var(--primary);
    transform: scale(1.1);
  }
  
  .logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .footer-bottom {
    padding-top: 15px;
    font-size: 12px;
  }
  
  body.light-mode .footer {
    background-color: var(--light);
    color: black;
  }
  
  body.light-mode .footer-link {
    color: black;
  }
  
  body.light-mode .footer-link:hover {
    color: var(--primary);
  }
  
  body.light-mode .social-icons a {
    color: rgb(255, 255, 255);
    border-color: black;
  }
  
  body.light-mode .social-icons a:hover {
    background-color: black;
    color: white;
  }
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-right: 75px;
  }
  
  .newsletter-form input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 8px;
    background-color: #fff;
    color: #000;
    font-size: 14px;
  }
  
  .newsletter-form button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .newsletter-form button:hover {
    background-color: #2f2f2f;
  }
  
  body.light-mode .newsletter-form input[type="email"] {
    background-color: #f0f0f0;
    color: #000;
  }
  
  body.dark-mode .newsletter-form input[type="email"] {
    background-color: #333;
    color: #fff;
  }
/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
  }
  
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  .hero-overlay {
    z-index: 1;
  }
  
  .hero-overlay {
    background-color: rgba(0, 0, 0, 0.572);
    padding: 2rem;
    border-radius: 1rem;
  }
  
  .hero-title {
    font-size: 3rem;
    font-family: sans-serif;
    margin-bottom: 1rem;
    color: #f9f9f9;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fbfbfb;
  }
  @media (max-width: 768px) {
    .hero-overlay {
      padding: 1.2rem;
      border-radius: 0.75rem;
    }
  
    .hero-title {
      font-size: 2rem;
      margin-bottom: 0.75rem;
    }
  
    .hero-subtitle {
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
    }
  }
  .hero-btn {
    background: #252525be;
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .hero-btn:hover {
    background: #cd0000;
  }
  @media (max-width: 768px) {
    .hero-btn {
      padding: 0.5rem 1.2rem;
      font-size: 0.85rem;
      border-radius: 1.2rem;
    }
  }
   /* Theme-specific text color */
   body.dark-mode .hero,
   body.dark-mode .intro-section {
     color: #f5f5f5;
   }
   
   body.light-mode .hero,
   body.light-mode .intro-section {
     color: #121212;
   } 
  
  /* Intro Section */
  .intro-section {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background-color: transparent; /* Transparent background */
  }
  
  .intro-content {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
  }
  
  .intro-text {
    flex: 1;
    text-align: justify;
    min-width: 280px;
    color: inherit; /* Inherit from theme */
  }
  
  .intro-text h2 {
    font-family: sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: red;
  }
  
  .intro-text p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: inherit;
  }
  
  .intro-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #565656a2;
    color: white;
    border-radius: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .intro-btn:hover {
    background: #fe0000;
  }
  
  .intro-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
  }
  
  .intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
  }
  

  .services-intro {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
  }
  
  .service-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
  }
  
  .service-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .service-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  
  .service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: var(--hover-bg);
  }
  
  .service-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: 0;
    left: 0;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
  }
  
  .service-card:hover::after {
    transform: scaleX(1);
  }
  /* Theme Variables */
  body.dark-mode {
    --card-bg: rgba(255, 255, 255, 0.13);
    --card-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
    --text-color: #ffffff;
    --text-light: #cccccc;
    --accent-color: #ff0000;
  }
  
  body:not(.dark-mode) {
    --card-bg: #b4b4b4;
    --card-shadow: 0 4px 20px rgb(255, 255, 255);
    --text-color: #222222;
    --text-light: #555555;
    --accent-color: #ff0000;
  }
  .enroll-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: var(--bg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  .enroll-heading {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
  }
  .enroll-subtext {
    text-align: center;
    color: var(--text);
    margin-bottom: 30px;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
  }
  .form-group.full-width {
    grid-column: span 2;
  }
  .form-group label {
    margin-bottom: 6px;
    font-weight: 600;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }
  .enroll-btn-wrapper {
    text-align: center;
    margin-top: 30px;
  }
.enroll-btn {
  background-color: var(--primary); /* Example: red or your theme primary */
  color: #fff;
  border: none;
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.enroll-btn:hover {
  background-color: var(--accent); /* A brighter red or highlight color */
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
  .status-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    color: green;
    font-weight: 600;
  }
  .status-wrapper img {
    width: 22px;
    height: 22px;
  }
  
  @media (max-width: 768px) {
    .form-grid {
      grid-template-columns: 1fr;
    }
    .form-group.full-width {
      grid-column: span 1;
    }
  }
  /* Responsive */
  @media (max-width: 600px) {
    .enroll-container {
      padding: 30px 20px;
    }
  
    .enroll-container h2 {
      font-size: 1.5rem;
    }
  }
  .enroll-section {
    padding-top: 20px;
  }
  .enroll-vertical-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 50px 0px;
  }
@media (max-width: 768px) {
  .enroll-vertical-wrapper img {
    display: none !important;
  }
}
 .contact-section {
    padding: 10px 10px;
    background: var(--bg-color);
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-info, .contact-form {
    flex: 1 1 45%;
  }
  
  .contact-info i {
    margin-right: 10px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
  }
  .contact-info h2 {
    margin-top: 40px; /* or any value you prefer */
  }
  .contact-form {
    margin-top: 60px; /* Adjust as needed */
  }
  .contact-intro {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
  }
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      padding: 0 20px;
    }
  
    .contact-info,
    .contact-form {
      flex: 1 1 100%;
      width: 100%;
    }
  
    .contact-info h2 {
      margin-top: 20px;
      text-align: center;
    }
  
    .contact-form {
      margin-top: 30px;
    }
  

  } 
  .map-container {
    margin-top: 60px; /* You can increase or decrease this value */
  }

  .send-btn {
    background-color: var(--primary-color);
    color: rgb(0, 0, 0);
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .send-btn:hover {
    background-color: var(--primary-color-dark);
  }
  
  .form-message {
    margin-top: 10px;
    color: green;
  }

  .send-btn {
    background-color: #626262; /* Bootstrap blue */
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
  }
  
  .send-btn:hover {
    background-color: #ff0000;
    transform: translateY(-2px);
  }
  
  /* Dark mode support */
  body.dark-mode .send-btn {
    background-color: #b6b6b6;
    color: #000;
  }
  
  body.dark-mode .send-btn:hover {
    background-color: #ff0303;
  }

  /* Layout containers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-section {
    background-color: var(--bg, #fff);
    color: var(--text, #000);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .about-grid.reverse {
    flex-direction: row-reverse;
  }
  
  .about-text {
    flex: 1 1 50%;
    font-family: 'Nunito', sans-serif;
    text-align: justify;
  }
  
  .about-text h2 {
    font-size: 2.rem;
    margin-bottom: 20px;
    color: red;
  }
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-light, #444);
  }
  
  .about-image {
    flex: 1 1 40%;
    text-align: center;
  }
  
  .about-image img {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* Responsive Layout */
  @media (max-width: 992px) {
    .about-grid {
      flex-direction: column;
      text-align: justify;
    }
  
    .about-grid.reverse {
      flex-direction: column;
    }
  
    .about-text, .about-image {
      flex: 1 1 100%;
    }
  
    .about-text h2 {
      font-size: 1.8rem;
    }
  
    .about-image img {
      max-width: 100%;
    }
  }

  /* Image styling */

  .team-member img {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    object-fit: cover;
  }
  
  .mission-vision-section {
    background-color: var(--bg, #fff);
    color: var(--text, #000);
    text-align: center;
  }
  
  .section-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .box {
    flex: 1 1 45%;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgb(117, 117, 117);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.508);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.812);
  }
  
  .box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
  }
  
  .box p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light, #000000);
  }
  
  /* Dark Mode Support */
  body.dark-mode .box {
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  body.dark-mode .box p {
    color: #ccc;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .section-grid {
      flex-direction: column;
    }
  
    .box {
      width: 100%;
    }
  }

  /* Headings */
  .section-heading {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
  }
  
  /* Team Grid */
  .team-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    text-align: center;
  }
  

  .team-member img {
    width: 150px;
    height: 175px;
    border-radius: 10%;
    margin-bottom: 10px;
  }
  .explore-team-btn {
    text-align: center;
    margin-top: 30px;
  }  

  .about-intro {
    text-align: center;
    padding: 4rem 1rem;
    max-width: 900px;
    margin: 0 auto;
  }

/* Optional: Emphasize icons if used */


  
  .btn-explore {
    display: inline-block;
    background-color: #606060bf;
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .btn-explore:hover {
    background-color: #ff0000;
    transform: translateY(-2px);
  }
/* Scroll Toggle Button */
.scroll-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    z-index: 1001;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s, color 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .scroll-btn i {
    font-size: 18px;
  }
  body.light-mode .scroll-btn {
    background-color: black;
    color: white;
  }
    /* Dropdown Wrapper */
.dropdown-wrapper {
  position: relative;
  display: inline-block;
  z-index: 1000;
}
  .dropdown-wrapper {
    position: relative;
    display: inline-block;
    z-index: 999;
  }
  
 /* Wrapper */
.dropdown-wrapper {
    position: relative;
    display: inline-block;
    z-index: 999;
  }
  
  /* Hamburger Button */
  .menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    transition: transform 0.3s ease;
  }
  
  .menu-btn span {
    width: 26px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.4s ease;
  }
  
  /* Animated Lines */
  .menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  
  .menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Dropdown Menu */
  .dropdown-list {
    display: none;
    position: absolute;
    top: 48px;
    left: 0;
    background-color: var(--bg-color);
    border-radius: 8px;
    min-width: 160px;
    flex-direction: column;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  /* Dropdown Links */
  .dropdown-list a {
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 15px;
    transition: background-color 0.3s ease;
  }
  
  .dropdown-list a:hover {
    background-color: rgba(255, 0, 0, 0);
  }
  
  /* Show Dropdown with Animation */
  .dropdown-list.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
/* Active dropdown link in light mode */
body.light-mode .dropdown-list a.active {
  color: var(--primary);
  font-weight: 700;
}

/* Active dropdown link in dark mode */
body.dark-mode .dropdown-list a.active {
  color: var(--primary); /* Adjust if you want a different color in dark mode */
  font-weight: 700;
}
  /* DROPDOWN MENU */
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background-color: var(--dropdown-bg);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  /* FADE ANIMATION */
  .fade-down {
    animation: fadeDown 0.3s ease-in-out;
  }
  
  @keyframes fadeDown {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  

  /* INDIVIDUAL DROPDOWN ITEM */
  .dropdown-item {
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
    display: block;
  }
  
  .dropdown-item:hover {
    background-color: var(--dropdown-hover);
    color: var(--primary-color);
  }

/* Collaboration Section Container */
.collab-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Collaboration Row Layout */
.collab-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.collab-row.reverse {
  flex-direction: row-reverse;
}

/* Image Block */
.collab-img {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.collab-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Content Block */
.collab-content {
  flex: 1;
  min-width: 300px;
}

.partner-logo img {
  max-height: 50px;
  margin-bottom: 10px;
}

.collab-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.collab-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text);
}

/* Explore Button */
.explore-btn {
  background-color: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.explore-btn:hover {
  background-color: var(--accent);
}

/* Social Icons */
.social-icons a {
  color: var(--text);
  margin-right: 10px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent);
}

/* Animation Triggers */
[data-animate="slide-left"] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease-out;
}

[data-animate="slide-right"] {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease-out;
}

[data-animate].visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .collab-row,
  .collab-row.reverse {
    flex-direction: column;
    align-items: flex-start;
  }

  .collab-content,
  .collab-img {
    width: 100%;
  }

  .collab-content {
    padding-top: 20px;
  }

  .explore-btn {
    width: 100%;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }
}
  .collab-heading {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
  }
  
  .collab-subtext {
    text-align: center;
    color: var(--text);
    margin-bottom: 30px;
  }
  
  .collab-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    background: var(--input-bg, #fff);
    color: var(--text);
  }
  
  .form-group.full-width {
    grid-column: span 2;
  }
  
  .collab-btn-wrapper {
    grid-column: span 2;
    text-align: center;
    margin-top: 20px;
  }
  
  .collab-btn {
    background-color: var(--primary);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
  }
  
  .collab-btn:hover {
    background-color: var(--accent);
  }
  
  .form-status-message {
    margin-top: 15px;
    text-align: center;
  }
  
  .status-content {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: green;
    font-weight: 600;
  }
  
  .status-content img {
    width: 22px;
    height: 22px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .collab-form {
      grid-template-columns: 1fr;
    }
  
    .form-group.full-width,
    .collab-btn-wrapper {
      grid-column: span 1;
    }
  }
  
  .explore-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #4d4d4d;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .explore-btn:hover {
    background-color: #ff0000;
    transform: translateY(-2px);

  }
  .social-icons {
    display: flex;                 /* Use Flexbox for layout */
    justify-content: center;      /* Center the icons horizontally */
    align-items: center;          /* Align icons vertically (optional) */
    gap: 15px;                    /* Space between icons */
    margin-top: 15px;             /* Space above icons */
  }

  
  /* Specific partner logo overrides (optional if needed) */
  .partner1-logo img,
  .partner3-logo img {
    max-height: 60px;
  }
  .partner2-logo img,
  .partner4-logo img {
    max-height: 60px;
  } 
  .carousel-section {
    padding: 40px 20px;
    text-align: center;
  }
  
  .carousel-heading h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: var(--primary);
  }
  
  .carousel-wrapper {
    overflow: hidden;
    background-color: var(--light);
    padding: 20px 0;
    border-radius: 12px;
    
  }
  
  body.dark .carousel-wrapper {
    background-color: var(--dark);
  }
/* Section Wrapper */
.carousel-section {
    padding: 40px 20px;
    text-align: center;
  }
  
  /* Heading */
  .carousel-heading h1 {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
  
  /* Carousel Wrapper (fixed width for 5 icons) */
  .carousel-wrapper {
    width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    background-color: var(--light);
    padding: 20px 0;
    border-radius: 12px;
  }
  
  body.dark .carousel-wrapper {
    background-color: var(--dark);
  }
  
  /* Icon Row */
  .carousel-icon-carousel {
    display: flex;
    gap: 50px;
    animation: scroll-loop 60s linear infinite;
    width: max-content;
    padding: 10px 0;
    justify-content: flex-start;
    
  }
  
  .carousel-icon-carousel:hover {
    animation-play-state: paused;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* Icon Style */
  .carousel-icon {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    background-color: var(--primary);
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
  }
  
  .carousel-icon span {
    font-size: 12px;
    margin-top: 5px;
    color: #fff;
  }
  
  /* Hover Effects */
  .carousel-icon:hover {
    transform: scale(1.15);
    background-color: #fff;
    color: var(--primary);
  }
  
  .carousel-icon:hover span {
    color: var(--primary);
  }
  
  /* Highlight Center Icon */
  .carousel-icon.center-highlight {
    transform: scale(1.15);
    background-color: #fff;
    color: var(--primary);
    z-index: 2;
  }
  
  .carousel-icon.center-highlight span {
    color: var(--primary);
  }
  
  /* Scrolling Animation */
  @keyframes scroll-loop {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* Responsive for smaller screens */
  @media (max-width: 768px) {
    .carousel-wrapper {
      width: 100%;
      padding: 10px 0;
    }
  
    .carousel-icon-carousel {
      gap: 30px;
    }
  
    .carousel-icon {
      width: 80px;
      height: 80px;
      font-size: 24px;
    }
  
    .carousel-icon span {
      font-size: 11px;
    }
  }
  .strategic-container {
    padding: 40px 20px;
    background-color: var(--light);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 0 20px rgb(143, 143, 143);
    margin: 40px auto;
    max-width: 1200px;
    overflow: hidden;
  }
  
  body.dark .strategic-container {
    background-color: var(--dark);
  }
  
  .strategic-heading h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary);
  }
  
  .strategic-carousel-wrapper {
    overflow: hidden;
    width: 100%;
  }
  
  .strategic-carousel {
    display: flex;
    gap: 40px;
    animation: strategic-scroll 40s linear infinite;
    width: max-content;
    align-items: center;
    padding: 10px 0;
  }
  
  .strategic-logo {
    flex: 0 0 auto;
    width: 160px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  
  .strategic-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .strategic-logo:hover img {
    transform: scale(1.1);
    filter: none;
  }
  
  @keyframes strategic-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .side-img {
    width: 100px; /* Adjust width as needed */
    object-fit: cover;
    height: auto;
  }

  .side-img {
    width: 80%;
    max-width: 400px;
    border-radius: 20px;
  }

  
  /* Menu Button */
  .menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    transition: transform 0.3s ease;
  }
  
  .menu-btn span {
    width: 26px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.4s ease;
  }
  
  /* Animation for menu open */
  .menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  
  .menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Dropdown List */
  .dropdown-list {
    display: none;
    position: absolute;
    top: 48px;
    left: 0;
    background-color: var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    flex-direction: column;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding: 8px 0;
  }
  
  /* Show Dropdown */
  .dropdown-list.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Dropdown Links */
  .dropdown-list a {
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .dropdown-list a:hover {
    background-color: rgba(255, 0, 0, 0.05);
    color: var(--accent);
  }
  
  /* Dark Mode Adjustments */
  body.dark-mode .dropdown-list {
    background-color: var(--dark);
  }
  
  body.dark-mode .dropdown-list a {
    color: #f0f0f0;
  }
  
  body.dark-mode .dropdown-list a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent);
  }
  .why-skiv ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for desktop */
    gap: 15px;
    justify-items: center;
    margin: 0 auto;
    max-width: 600px; /* limit the width instead of margin left/right */
  }
  
  .why-skiv h2 {
    text-align: center;
    font-family: sans-serif;
    color: red;
    margin-bottom: 20px;
  }
  
  .why-skiv li {
    background-color: #7b7b7b;
    padding: 10px 20px;
    border-left: 4px solid #ff0000;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #fff;
    font-weight: 600;
    width: 80%;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }
  
  .why-skiv li:hover {
    background-color: #2c2c2c;
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  /* Responsive for tablets and mobiles */
  @media (max-width: 768px) {
    .why-skiv ul {
      grid-template-columns: 1fr; /* stack items on small screens */
      max-width: 90%;
    }
  }
  /* Success Stories Carousel */

  .skiv-features {

    background-color: var(--bg);
    color: var(--text);
    text-align: center;
  }
  
  
  .features-heading {
    font-size: 2.0rem;
    color: var(--primary);
    margin-bottom: 40px;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .feature-box {
    background-color: var(--card-bg, #626262);
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: var(--card-shadow, 0 8px 20px rgba(87, 87, 87, 0.517));
    transition: transform 0.3s ease;
  }

  
  /* Theme Support */
  body.dark-mode .feature-box {
    background-color: rgba(255, 255, 255, 0.498);
    color: #fff;
  }
  
  body.dark-mode .feature-box p {
    color: #ffffff;
  }
  .core-values-modern {
    padding: 80px 20px;
    background: var(--bg);
    color: var(--text);
    text-align: center;
  }
  
  .core-values-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 800;
    color: var(--primary);
  }
  
  .core-values-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    
  }
  
  .core-card {
    background: var(--card-bg, #1b1b1b);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: var(--card-shadow, 0 8px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }
  
  .core-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.757);
    
  }
  
  .icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
  }
  
  .core-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
  }
  
  .core-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
  }
  
  /* Dark Mode Support */
  body.dark-mode .core-card {
    background-color: rgba(255, 255, 255, 0.211);
  }
  
  body.dark-mode .core-card p {
    color: #ccc;
  }
  .section-spacing {
    margin-top: 60px;
  }
/* ------------------ MOBILE MENU TOGGLE FIXED TOP RIGHT ------------------ */
.mobile-menu-toggle {
  position: fixed;
  top: 27px;
  right: 20px;
  z-index: 1100;
  display: none;
}

.mobile-menu-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-toggle button span {
  height: 3px;
  width: 25px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Dark/Light Mode */
body.light-mode .mobile-menu-toggle button span {
  background-color: #000;
}
body.dark-mode .mobile-menu-toggle button span {
  background-color: #fff;
}

/* Animation */
.mobile-menu-toggle button.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle button.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle button.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ------------------ MOBILE MENU PANEL ------------------ */
.mobile-menu-panel {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 70px;
  right: 20px;
  background-color: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  min-width: 220px;
  padding: 10px 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1001;
}

.mobile-menu-panel.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-panel a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-menu-panel a:hover {
  background-color: rgba(255, 0, 0, 0.05);
  color: var(--accent);
}

/* Active Link Color */
body.dark-mode .mobile-menu-panel a.active,
body.light-mode .mobile-menu-panel a.active {
  color: var(--primary);
}

body.dark-mode .mobile-menu-panel {
  background-color: var(--dark);
}
body.dark-mode .mobile-menu-panel a {
  color: #f0f0f0;
}
body.dark-mode .mobile-menu-panel a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ------------------ RESPONSIVE ------------------ */
/* Only show on mobile & tablets */
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: block;
  }
  .desktop-nav {
    display: none !important;
  }
}

/* Hide on large screens */
@media (min-width: 1025px) {
  .mobile-menu-toggle,
  .mobile-menu-panel {
    display: none !important;
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].animated {
  opacity: 1;
  transform: none;
}

[data-animate="slide-left"].animated {
  transform: translateX(0);
}

[data-animate="slide-right"].animated {
  transform: translateX(0);
}

[data-animate="slide-up"].animated {
  transform: translateY(0);
}

[data-animate="zoom"].animated {
  transform: scale(1);
}

[data-animate="slide-left"] {
  transform: translateX(-50px);
}

[data-animate="slide-right"] {
  transform: translateX(50px);
}

[data-animate="slide-up"] {
  transform: translateY(50px);
}

[data-animate="zoom"] {
  transform: scale(0.8);
}
/* ========== WHY SKIV UNIQUE SECTION ========== */
.why-skiv-unique {
  background: var(--bg);
  color: var(--text);
}

.why-skiv-unique .section-heading {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: red;
  text-align: center;
  font-family: sans-serif;
}

.unique-points {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.point {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.265);
  padding: 15px 20px;
  border-left: 4px solid var(--primary);
  border-radius: 10px;
  color: var(--text);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.point:hover {
  background-color: rgba(255, 255, 255, 0.868);
  color: var(--accent);
}

body.light-mode .point {
  background-color: rgba(0, 0, 0, 0.373);
  color: #000;
}

body.light-mode .point:hover {
  background-color: rgba(255, 0, 0, 0);
  color: var(--primary);
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="zoom"] {
  transform: scale(0.85);
  opacity: 0;
  transition: all 0.6s ease-in-out;
}
[data-animate="zoom"].visible {
  transform: scale(1);
  opacity: 1;
}

[data-animate="left"] {
  transform: translateX(-40px);
}
[data-animate="left"].visible {
  transform: translateX(0);
  opacity: 1;
}

[data-animate="right"] {
  transform: translateX(40px);
}
[data-animate="right"].visible {
  transform: translateX(0);
  opacity: 1;
}

/* Optional delays */
[data-delay="1"] { transition-delay: 0.2s; }
[data-delay="2"] { transition-delay: 0.4s; }
[data-delay="3"] { transition-delay: 0.6s; }

.form-status-message {
  margin-top: 10px;
  font-weight: 600;
  font-size: 14px;
}
.thanks-message {
  color: #28a745;
  margin-top: 10px;
  font-size: 0.9rem;
}
.blog-section {
  padding: 60px 20px;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

/* Root theme variables (optional if already defined elsewhere) */
/* Blog Grid Layout */
.blog-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

/* Blog Card */
.blog-card {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 420px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(3px);
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* Blog Image */
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Blog Content */
.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.blog-content p {
  flex-grow: 1;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;

}
.blog-section {
  padding-top: 30px !important;
  padding-bottom: 60px !important;
  margin-top: 40px !important;
}
/* Read More Button */
.read-more {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
}

.read-more:hover {
  text-decoration: underline;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 20px;
  color: var(--primary);
}

/* Blog Modal */
.blog-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  padding: 20px;
  box-sizing: border-box;
}

.blog-modal.active {
  display: flex;
}

/* Modal Content */
.blog-modal-content {
  max-width: 1250px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2rem;
  border-radius: 14px;
  position: relative;
  background-color: var(--bg);
  color: var(--text);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.3s ease-out;
}

/* Light & Dark Mode Handling */
body.light-mode .blog-card {
  background: #fff;
  color: #000;
}

body.light-mode .blog-modal-content {
  background: #d8d8d8;
  color: #000;
}

body.dark-mode .blog-card {
  background: #121212;
  color: #fff;
}

body.dark-mode .blog-modal-content {
  background: #2c2c2c;
  color: #fff;
}

/* Close Button */
.close-btn {
  position: fixed;
  top: 30px;
  right: 25px;
  font-size: 32px;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  z-index: 10000;
}

.close-btn:hover {
  color: var(--accent);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .blog-modal-content {
    padding: 1.5rem;
    max-height: 90vh;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .read-more {
    font-size: 0.9rem;
  }
}

/* Career Page Styles */

/*======================
  Careers Page Styling
========================*/


/* General Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-intro {
  margin-top: 0 !important;
  padding-top: 1px !important; /* or reduce further */
}
/* Hero Section */
.career-hero {
  background-color: var(--bg);
  color: var(--text);
  padding: 60px 20px 30px;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.career-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.career-hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.contact-intro {
  margin-bottom: 0;
  padding-bottom: 15px;
}

/* Intro Section */
.career-intro {
  text-align: center;
  
}
.contact-intro {
  padding-top: 30px !important;
  padding-bottom: 25px !important;
  margin-top: 40px !important;
}
.career-intro h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.career-intro p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Open Positions Section */
.open-positions {
  padding: 20px 0 40px;
}

.open-positions h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary);
}

.position-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.position-card {
  background: var(--card-bg);
  color: var(--text);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.position-card:hover {
  transform: translateY(-6px);
}

/* Icon */
.position-icon {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--primary);
  transition: transform 0.3s ease, color 0.3s ease;
}

.position-card:hover .position-icon {
  transform: scale(1.2);
  color: var(--accent);
}

/* Job Info */
.position-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.position-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 10px;
}


/* Apply Button */
.apply-btn {
  background-color: var(--primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease;
  display: inline-block;
  margin-top: 20px; /* <-- This adds space above the button */
  text-align: center;
}

.apply-btn:hover {
  background-color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
  .career-hero-content h1 {
    font-size: 2rem;
  }
  .career-intro h2,
  .open-positions h2 {
    font-size: 1.6rem;
  }
  .apply-now-btn {
    padding: 10px 24px;
  }
}
.career-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

.highlight-box {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-5px);
}

.highlight-box i {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 10px;
}
.job-detail-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.job-detail-content {
  background: var(--bg);
  color: var(--text);
  padding: 30px;
  border-radius: 12px;
  max-width: 650px;
  width: 100%;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

body.dark-mode .job-detail-content {
  background-color: #363636c0;
  color: #fff;
}

body.light-mode .job-detail-content {
  background-color: #dededef1;
  color: #000;
}

/* Job Details Modal */
.job-detail-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

/* Job Detail Content */
.job-detail-content {
  background-color: var(--bg);
  color: var(--text);
  padding: 30px;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  max-height: 80vh;
  overflow-y: auto; /* Make content scrollable */
}

/* Fixed Close Button */
.close-btn {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  z-index: 1100;
}

/* Close Button Hover Effect */
.close-btn:hover {
  color: var(--accent);
}

/* Job Detail Inner Content */
#jobDetailInner {
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 10px; /* Prevent content from getting hidden behind scroll */
  font-size: 1rem;
  line-height: 1.6;
}
/* Apply Now Button */
.submit-btn {
  background-color: var(--primary); /* Primary color from your theme */
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

/* Hover Effect */
.submit-btn:hover {
  background-color: var(--accent); /* Accent color for hover effect */

}

/* Focus Effect (optional) */
.submit-btn:focus {
  outline: none;
  box-shadow: 0 0 5px var(--accent); /* Add a subtle glow when focused */
}

/* Disable state */
.submit-btn:disabled {
  background-color: #d3d3d3; /* Gray out the button when disabled */
  cursor: not-allowed;
}
.career-intro-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 20px;
}

.career-intro-text {
  flex: 1 1 500px;
  text-align: left;
}

.career-intro-text p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.7;
}

.career-intro-image {
  flex: 1 1 250px;
}

.career-intro-image img {
  width: 60%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
#applicationForm {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: var(--input-bg, #f9f9f9);
  color: var(--text);
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
}
