@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap');



.mse-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9em;
  text-align: left;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.mse-table th {
  background: #f2f2f2;
  color: #333;
  font-weight: bold;
  padding: 8px;
  border-bottom: 2px solid #ddd;
}

.mse-table td {
  padding: 6px;
  border-bottom: 1px solid #eee;
}

.mse-table tr:hover {
  background-color: #fafafa;
}



/* General Styles */
body {
  margin: 0;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  background-color: #ecf1f3;
  color: #000;
}

/*
    Theme Color #c4d0d4
*/

/* Navbar layout */
.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  background-color: #d8002e;
  padding: 0 20px;
  width: 100%;
  height: 125px;
  border-bottom: 1px solid black;
  z-index: 100;
}

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.logo {
  height: 120px;
  max-width: 400px;
  padding-left: 80px;
  background-color: w;
}

    .logo2 {
  height: 70px;
  max-width: 300px;
  padding-left: 50px;
  padding-bottom: 20px;
  background-color: w;
}



/* Center nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 50px;
  margin: 0;
  padding-right: 100px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background-color: #000;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
  background-color: #fff;
}

/* Dropdown styles (desktop) */
.dropdown {
  position: relative;
}

.dropdown .plus-icon {
  font-weight: bold;
  margin-left: 4px;
  font-size: 14px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #d8002e;
  list-style: none;
  top: 130%; /* directly below parent */
  left: 0;
  padding: 20px 0;
  border-radius: 5px;
  min-width: 205px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1000;
}

.dropdown-menu li {
  padding: 8px 20px;
  margin-top: 10px;
}

.dropdown-menu li a {
  color: white;
  text-decoration: none;
  display: block;
}

.dropdown-menu li a:hover {
  color: #fff;
}

/* Smooth show on hover */
.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Nav right icons */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 50px;
}

.menu-text, .burger-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 25px;
  color: white;
}

/* Burger button */
.burger-btn {
  display: none;
  cursor: pointer;
  
}

@media (max-width: 1024px) {
  .nav-center {
    display: none;
  }

  .burger-btn {
    display: inline-block;
  }
}

@media (max-width: 1024px) {
  .navbar {
    display: flex;
    justify-content: space-between; /* logo left, icons right */
    align-items: center;
    padding: 0 10px; /* reduce padding */
    height: 100px;   /* optional: reduce navbar height */
  }

  .nav-left {
    padding-left: 0; /* remove previous left padding */
  }

  .logo {
    height: 100px;    /* optional: scale down logo */
    max-width: 150px; /* fit small screen */
  }

  .nav-right {
    padding-right: 10; /* remove previous right padding */
  }
}

@media (max-width: 720px) {
  .navbar {
    display: flex;
    justify-content: space-between; /* logo left, icons right */
    align-items: center;
    padding: 0 10px; /* reduce padding */
    height: 100px;   /* optional: reduce navbar height */
  }

  .nav-left {
    padding-left: 0; /* remove previous left padding */
  }

  .logo {
    height: 100px;    /* optional: scale down logo */
    max-width: 150px; /* fit small screen */
  }

  .nav-right {
    padding-right: 10; /* remove previous right padding */
  }
}
/* Small screens: 480px and below */
@media (max-width: 480px) {
  .navbar {
    display: flex;
    justify-content: space-between; /* logo left, icons right */
    align-items: center;
    padding: 0 10px; /* reduce padding */
    height: 100px;   /* optional: reduce navbar height */
  }

  .nav-left {
    padding-left: 0; /* remove previous left padding */
  }

  .logo {
    height: 100px;    /* optional: scale down logo */
    max-width: 150px; /* fit small screen */
  }

  .nav-right {
    padding-right: 10; /* remove previous right padding */
  }
}

/* Extra small screens: 360px */
@media (max-width: 360px) {
  .logo {
    height: 70px;
    max-width: 130px;
  }
  
  .menu-text, .burger-btn {
    font-size: 22px; /* scale down icons slightly */
  }
}


/* Overlay */
.burger-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.4s ease;
  z-index: 250;
}

.burger-menu.active {
  width: 100%;
}

.burger-menu ul {
  background-color: #d8002e;
  list-style: none;
  margin: 0;
  padding: 80px 20px;
  height: 100%;
  width: 260px;
  transform: translateX(-260px);
  transition: transform 0.4s ease;
  overflow-y: auto;
}

.burger-menu.active ul {
  transform: translateX(0);
}

.burger-menu ul li {
  margin: 18px 0;
}

.burger-menu ul a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
}

/* Sub-items for burger menu */
.burger-menu ul li.sub-item a {
  font-size: 14px;      /* smaller font */
  padding-left: 15px;   /* indent to the right */
  text-transform: none; /* optional, keep original casing */
}


.burger-menu ul a:hover {
  color: #fff;
}

.close-burger {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #000;
  cursor: pointer;
}





/* SIDE Menu right */

/* === Overlay base === */
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 0; /* overlay width 0 initially */
  overflow: hidden;
  transition: 0.4s ease;
  z-index: 200;
  background-color: rgba(0, 0, 0, 0.5);
}


/* === Inner white panel === */
.side-menu-content {
  background-color: #d8002e;
  width: 320px;
  height: 100%;
  padding: 20px 20px 40px 20px; /* reduce top padding for spacing under links */
  position: absolute;
  right: -320px;
  transition: right 0.4s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  overflow-y: auto; /* enable scrolling if content is taller than panel */
  overflow-x: hidden;
}

.side-menu.active {
  width: 100%;
}

.side-menu.active .side-menu-content {
  right: 0;
}

.close-btn {
  font-size: 28px;
  cursor: pointer;
  float: right;
  color: #000;
}

/* === Shared form styling === */
.form-section {
  position: relative; /* relative to container */
  top: 20px; /* adjust distance from top */
  width: 100%;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s ease;
  pointer-events: none;
  box-sizing: border-box;
}

.form-section.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* === Labels & Inputs === */
.form-section label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: white;
}

.form-section input {
  width: 93%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s;
}

.form-section input:focus {
  border-color: #000;
}

/* === Buttons === */
button.signup-btn,
button.login-btn {
  width: 100%;
  background-color: #000;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s;
}

button.signup-btn:hover,
button.login-btn:hover {
  background-color: #333;
}

/* === Toggle text === */
.toggle-text {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}

.toggle-text a {
  color: white;
  text-decoration: none;
}

.toggle-text a:hover {
  text-decoration: underline;
}


.left-sidebar {
  position: relative;
  top: 0; /* below navbar */
  left: 0;
  width: 60px; /* fixed width */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  font-family: 'Roboto', sans-serif;
  padding-top: 150px;
  padding-left: 10px;
}

/* Vertical text */
.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 16px;
  color: #000;
  text-align: center;
  margin-bottom: 50px;
  
}

/* Social icons container */
.social-icons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 50px;
}

/* Social icons styling */
.social-icons a {
  /* background-color: #9bafbf; keeps circle colored */
  color: #000; /* icon inside black */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px; /* adjust size */
  transform: rotate(270deg);
}


.social-icons a:hover {
  background-color: #88a0b0;
  transform: translateY(-2px);
}


/* Time section (vertical) */
.work-time .vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 18px;
  color: #000;
  text-align: center;
}

/* ========================== Banner Section ========================== */ 
.banner-wrapper
 { 
    display: flex; 
    align-items: center; 
    position: relative;/* for rotating circle */ 
    gap: 80px; /* spacing between sidebar and banner */ 
    padding-bottom: 50px; 
    padding-top: 10px; 
  }
   
   .banner-center 
  { 
    flex: 1; /* take remaining width */ 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
  } 
  
  .video-modal 
  { 
    display: none; /* Hidden by default */ 
    position: fixed;
    z-index: 1000;
    left: 0; top: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.8); 
    justify-content: center; 
    align-items: center; 
  } 
  
  .video-modal-content
  { 
    position: relative; 
    width: 80%; 
    max-width: 800px; 
  }
  
  .video-modal iframe 
  { 
    width: 100%; 
    height: 450px; 
  } 
  
  .video-close 
  { 
    position: absolute; 
    top: -20px; 
    right: 0; 
    font-size: 30px; 
    font-weight: bold; 
    color: #fff; 
    cursor: pointer;
   } 
   
   /* Logos image */ 
   .extra-banner-image
    {
       position: absolute; 
       top: -15%; /* adjust to fit between title and slider */ 
       left: 50%; 
       transform: translateX(-50%); width: 600px; /* control size without affecting layout */ 
       z-index: -5; 
    } 
    
    .extra-banner-image img 
    { 
      width: 100%; 
      height: 150%; 
    } 
    
    /* Centered title */ 
    .center-title 
    { 
      font-size: 35px; 
      text-align: center; 
      margin-bottom: -10px; 
      font-weight: bold; /* normal weight */ 
      letter-spacing: 1px; 
      line-height: 1.2; 
      color: #000; 
    } 
    
    .center-paragraph 
    { 
      letter-spacing: 1px; 
      font-size: 25px; 
      font-weight: 300; 
    } 
    
    .slider-container 
    { 
      position: relative; 
      width: 85%; 
      max-width: 1000px; 
      height: 450px; /* slightly smaller so all large images fit naturally */ 
      overflow: hidden; 
      border-radius: 10px; 
      margin: 50px auto; 
      background: transparent; 
      display: flex; 
      justify-content: center; 
      align-items: center; 
    } 
    
    /* Slider wrapper */ 
    
    .slider 
    { 
      width: 100%; 
      height: 100%; 
      position: relative; 
    } 
    
    /* Individual slides */ 
    
    .slide 
    { 
      position: absolute; 
      top: 0; 
      left: 100%; 
      width: 100%; 
      height: 120%; 
      object-fit: contain; /* keep full image visible */ 
      object-position: center; /* center inside frame */ 
      transition: left 1s ease; /* smooth animation */ 
      background: transparent; 
      box-shadow: none; 
    } 
    
    /* Active slide */ 
    .slide.active 
    { 
      left: 0; 
    } 
    
    /* Optional: for sliding transitions */ 
    
    .slide.exit-left
    { 
      left: -100%; 
    } 
    
    .slide.exit-right
    {
       left: 100%; 
    } 
      
      /* Slider navigation arrows */ 
      .banner-right
       {
         position: absolute; 
         top: 85%; 
         right: 5%; 
         transform: translateY(-50%); 
         display: flex; 
         flex-direction: column; 
         gap: 15px; 
         z-index: 10; 
      } 
      
      .slider-arrows button 
      { 
        border: 1px solid black; 
        color: white; 
        font-size: 20px; 
        padding: 10px 15px; 
        cursor: pointer; 
        border-radius: 50% 50%; 
        background-color: #d8002e; 
        transition: background-color 0.3s ease, transform 0.2s ease; 
      }
      
      .slider-arrows button:hover 
      { 
        background-color: rgba(136, 160, 176, 0.9); 
        transform: translateY(-2px); 
      } 
      
      
     /* ========================== 1080px (desktop-like) ========================== */
@media (max-width: 1080px) {
  .slider-container {
    width: 85%;
    height: 350px;
    margin-top: 80px;
    margin-right: 50px;
  }

  .center-title {
    font-size: 36px;
  }

  .slider-arrows button {
    font-size: 24px;
    padding: 8px 12px;
  }

  .rotating-circle-svg {
    top: 40%;
    left: 50px;
    width: 260px;
    height: 260px;
  }
}

/* ========================== Unified Mobile (≤720px, 480px, 360px) ========================== */
@media (max-width: 720px) {

  /* Hide side elements */
  .left-sidebar,
  .vertical-text,
  .work-time,
  .social-icons,
  .follow {
    display: none !important;
  }

  /* Stack layout */
  .banner-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 auto;
    gap: 15px;
    text-align: center;
  }

  /* Logos centered */
  .extra-banner-image {
    position: static;
    width: 60%;
    max-width: 250px;
    height: auto;
    transform: none;
    margin-top: 20px;
    margin-bottom: 10px;
    z-index: 1;
  }

  /* Title centered */
  .center-title {
    font-size: 20px;
    line-height: 1.3;
    margin: 10px 0;
    padding: 0 15px;
    transform: none;
  }

  /* Slider below title */
  .slider-container {
    width: 90%;
    height: 220px;
    margin: 0px;
  }

  /* Arrows centered under slider */
  .banner-right {
    position: static;
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .slider-arrows button {
    font-size: 18px;
    padding: 8px 10px;
    display: none;
  }

  /* Circle centered under everything */
  .rotating-circle-svg {
    position: static;
    width: 200px;
    height: 200px;
    margin-top: 0;
    transform: none;
  }

  .rotating-circle-svg svg {
    animation: rotate 12s linear infinite;
  }

  .circle-center i {
    font-size: 24px;
  }


}

/* ========================== Rotating Circle (Default/Desktop) ========================== */
.rotating-circle-svg {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  z-index: 2;
}

.rotating-circle-svg svg {
  width: 100%;
  height: 100%;
  animation: rotate 10s linear infinite;
}

/* Play button in the center */
.circle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #000;
  cursor: pointer;
  z-index: 3;
}

/* ========================== 1080px ========================== */
@media (max-width: 1080px) {
  .rotating-circle-svg {
    top: 45%;
    left: 80px;
    width: 250px;
    height: 250px;
  }

  .circle-center {
    font-size: 22px;
  }
}

/* ========================== Unified Mobile (≤720px) ========================== */
@media (max-width: 720px) {
  .rotating-circle-svg {
    position: relative; /* keeps it centered in flow */
    width: 200px;
    height: 200px;
    margin: 15px auto 0 auto; /* center horizontally */
    padding-bottom: 120px;
    transform: none;
    top: auto;
    left: auto;
  }

  .circle-center {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #000;
  }

  .rotating-circle-svg svg {
    animation: rotate 12s linear infinite;
  }
}

/* ========================== Animation ========================== */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

  



/* ==========================
   Sponsor Marquee 9bafbf
   ========================== */
.marquee {
  width: 100%;
  overflow: hidden;
  background-color: beige;
  padding: 20px 0;
  position: relative;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

/* Track (holds the animation) */
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

/* Lists of logos */
.marquee-list {
  display: flex;
  align-items: center;
  gap: 80px; /* space between logos */
  list-style: none;
  margin: 0;
  padding: 0 40px;
}

/* Logo images */
.marquee-list img {
  width: 120px;  /* consistent logo size */
  height: 120px;
  object-fit: contain; /* keeps logo proportion */
  filter: brightness(0.95);
  transition: filter 0.3s ease;
}

.marquee-list img:hover {
  filter: brightness(1.2);
}

/* Infinite scroll animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .marquee-list img {
    width: 80px;
    height: 80px;
  }
  .marquee-track {
    animation-duration: 35s;
  }
}

@media (max-width: 480px) {
  .marquee-list img {
    width: 60px;
    height: 60px;
  }
  .marquee-track {
    animation-duration: 40s;
  }
}



.about-section {
  width: 100%;
  background-color: white;
  font-family: 'Poppins', sans-serif;
  
  padding: 100px 0;
  display: flex;
  justify-content: center;
}

.about-container {
  width: 60%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align:justify;
}

.about-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  width: 100%;
  margin-bottom: 60px;
}

.about-left {
  flex: 1;
  
}

.about-subtitle {
  color: #999;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-title {
  font-size: 45px;
  color: #000;
  margin: 0;
}

.about-right {
  flex: 2;
  color: #333;
  line-height: 1.8;
  font-size: 16px;
}

.about-image {
  text-align: center;
  width: 100%;        /* full width of container */
  max-width: 100%;    /* never exceeds container width */
  overflow: hidden;   /* prevent overflow */
}

.about-image img {
  width: 100%;        /* scale image to container */
  height: auto;       /* maintain aspect ratio */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  display: block;     /* remove inline spacing */
  margin: 0 auto;     /* center image */
}

/*
    RESPONSIVENESS FOR ABOUT SECTION
*/

/* Responsive adjustments */
@media (max-width: 1024px) {
  .about-container {
    width: 80%; /* smaller container for tablets */
  }
  .about-top {
    flex-direction: column;
    gap: 40px;
  }
  .about-left, .about-right {
    flex: unset; /* remove flex ratios */
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-container {
    width: 90%; /* full width on mobile */
    padding: 50px 0;
  }
  .about-title {
    font-size: 28px; /* smaller title */
  }
  .about-subtitle {
    font-size: 14px;
  }
  .about-right {
    font-size: 15px; /* slightly smaller text */
  }
  .about-image {
    width: 100%; /* full width */
  }
  .about-image img {
    width: 100%; /* scale image */
    height: auto;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 24px; /* even smaller on very small screens */
  }
  .about-subtitle {
    font-size: 12px;
  }
  .about-right {
    font-size: 14px;
  }
}




/*OUR TASKS CSS*/

.focus-section {
  width: 100%;
  background-color: #ecf1f3;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
}

.focus-container {
  width: 80%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 200px;
}

.focus-left {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.focus-subtitle {
  color: #999;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.focus-title {
  font-size: 36px;
  color: #000;
  margin-bottom: 20px;
}

.focus-left p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

.focus-right {
  flex: 1;
  min-width: 280px;
  position: relative;
  height: 400px; /* Adjust for cards */
}

.focus-button{
  background-color:#d8002e;
  color: white;
  font-weight: bold;
  border: 5 px solid black;
  border-radius: 50px;
  margin-left: 110px;
  padding-bottom: 20px;
  transform: rotate(-50deg); 
  padding: 5% 10%;
}

.focus-button:hover
{
  background-color: black;
  opacity: 0.7;
  transform: rotate(0deg);
  transition: transform 0.5s;
}

/* Cards styling */
.focus-card {
  position: absolute;
  width: 200px;
  height: 200px;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  color: white;

}

.focus-card:hover {
  transform: translateY(50px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  background-color: #ddd;
  opacity: 0.9;
  
}


/* Hide paragraphs inside cards by default */
.focus-card p {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease;
}

/* Show paragraph only on hover */
.focus-card:hover p {
  opacity: 1;
  max-height: 200px; /* enough space for your text */
  color: white;

}





.card-1 { 
  background-image: url('images/tasks/lab_task1.JPG');
  background-size: cover;       /* makes the image cover the entire card */
  background-position: center;  /* centers the image */
  background-repeat: no-repeat; /* prevents tiling */
  filter: brightness(80%) contrast(120%);
   font-weight: bolder;

}

.card-2 {
 top: 80%;
  background-image: url('images/tasks/tasks3.JPG');
  background-size: cover;       /* makes the image cover the entire card */
  background-position: center;  /* centers the image */
  background-repeat: no-repeat; /* prevents tiling */
  filter: brightness(80%) contrast(120%);
   font-weight: bolder;
}

.card-3 { 
  top: 20%;
  right: 10%; 
  background-image: url('images/tasks/tasks.JPG');
  background-size: cover;       /* makes the image cover the entire card */
  background-position: center;  /* centers the image */
  background-repeat: no-repeat; /* prevents tiling */
  filter: brightness(80%) contrast(120%);
   font-weight: bolder;
}
.card-4 { 
  top: 100%;
  right: 10%; 
  background-image: url('images/tasks/tasks2.JPG');
  background-size: cover;       /* makes the image cover the entire card */
  background-position: center;  /* centers the image */
  background-repeat: no-repeat; /* prevents tiling */
  filter: brightness(80%) contrast(120%);
  font-weight: bolder;
}
@media (max-width: 1024px) {
  .focus-container {
    flex-direction: column;
    align-items: center;
  }

  .focus-right {
    height: auto;
    margin-top: 40px;
    /*2x2 Grid*/
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    justify-items: center;
  }

  /* Reset all absolute positioning for responsive grid */
  .focus-card {
    position: static;
    width: 180px;
    height: 180px;
    margin-bottom: 0;
    transform: none;
  }

  .focus-button {
    transform: rotate(0deg);
    margin: 40px auto 0;
    display: block;
  }
}
@media (max-width: 480px) {
  .focus-section {
    padding: 60px 0;
  }

  .focus-container {
    width: 90%;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-bottom: 100px;
  }

  .focus-left {
    text-align: center;
  }

  .focus-title {
    font-size: 28px;
  }

  .focus-left p {
    font-size: 14px;
    line-height: 1.6;
  }

  .focus-button {
    transform: rotate(0deg);
    margin: 20px auto 0;
    padding: 12px 25px;
    font-size: 14px;
  }

  /* Focus Right Grid (Stack cards nicely) */
  .focus-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    height: auto;
    width: 100%;
    justify-items: center;
  }

  .focus-card {
    position: static;
    width: 90%;
    max-width: 260px;
    height: 180px;
    padding: 15px;
    text-align: center;
  }

  .focus-card h3 {
    font-size: 16px;
  }

  .focus-card p {
    font-size: 13px;
    line-height: 1.4;
  }

  .fa-turn-up {
    font-size: 80px !important;
    height: auto !important;
  }
}

@media (max-width: 360px) {
  .focus-title {
    font-size: 24px;
  }

  .focus-card {
    max-width: 230px;
    height: 160px;
  }

  .focus-card h3 {
    font-size: 14px;
  }

  .focus-card p {
    font-size: 12px;
  }
}



/* Importance section */

.importance {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  background-color: #d8002e;
  color: white;
}

.importance-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60%;
  gap: 40px;
}

.importance-left {
  flex: 1;
  display: flex;
  justify-content: left;
}

.importance-right {
  flex: 1;
  text-align: left;
}

.importance-right h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.importance-right p {
  line-height: 1.6;
  font-size: 16px;
  color: white;
  text-align: justify;
}

/* Curved button style */
.curved-btn {
  background-color:#d8002e;
  color: white;
  border: 2px solid white;
  padding: 18px 40px;
  border-radius: 40px;
  font-size: 24px;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.curved-btn:hover {
  background-color: #333;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
  .importance-content {
    flex-direction: column;
    width: 80%;
    text-align: center;
  }

  .importance-left {
    margin-bottom: 20px;
  }
}


  .bg-image{
  background: url('images/slider/slider2.JPG') center/cover no-repeat fixed;
  height: 50vh;
  width: 100%;
}



/*
    Data Center CSS
*/


.data_center-section {
  padding: 100px 15%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  background-color: white;
}

.data_center-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.data_center-left {
  flex: 1;
  text-align: left;
}

.data_center-right {
  flex: 1;
  text-align: left;
}

.data_center-cards {
  display: grid;
  grid-template-columns: repeat(3, 5fr); /* 2 columns */
  gap: 40px;
  justify-content: center;
  align-items: start;
  margin: 50px 10%;
}

.data_center-card {
  text-align: center;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.data_center-card img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.data_center-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.9);
}

.data_center-card h3 {
  margin-top: 12px;
  font-size: 1.2rem;
}

.data_center-card h3 a {
  color: #000;
  text-decoration: none;
}

.data_center-card h3 a:hover {
  text-decoration: underline;
}

.data_center-card p {
  font-size: 0.95rem;
  color: #555;
}

/* ✅ Responsive Design */
@media (max-width: 1024px) {
  .data_center-cards {
    grid-template-columns: 1fr; /* 1 column only */
    gap: 40px; /* slightly smaller gap */
    margin: 0 auto; /* center the grid */
    width: 90%;
  }

  .data_center-card {
    max-width: 500px;
    margin: 0 auto; /* center each card */
  }

  .data_center-section {
    padding: 40px 5%;
  }

  .data_center-left h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .data_center-right {
    text-align: center;
  }
}

/*   Events CSS*/

.events-section {
  background-color: #ecf1f3;
  padding: 60px 10%; /* section margin */
  font-family: 'Poppins', sans-serif;
}

/* Header */
.events-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.events-left h4 {
  font-size: 16px;
  color: #888;
  margin: 0;
}

.events-left h2 {
  font-size: 36px;
  margin: 5px 0 0 0;
}

.events-right a {
  font-size: 16px;
  color: #007bff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.events-right a:hover {
  text-decoration: underline;
}

/* Cards - span from start of title to end of View All */
.events-cards {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  
}

/* Each card takes equal space */
.event-card {
  flex: 1;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease;
  min-height: 250px;
}

.event-card img {
  width: 90%;
  border-radius:12px;
  margin-top: 5%;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.event-card img:hover {
  transform: scale(1.05);
}

.event-card h3 {
  margin: 10px 0 5px 0;
  font-size: 20px;
}

.event-card h3 a {
  text-decoration: none;
  color: #000;
}

.event-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .events-cards {
    flex-wrap: wrap;
  }
  .event-card {
    flex: 1 1 48%; /* 2 per row */
  }
}

@media (max-width: 768px) {
  .events-cards {
    flex-direction: column;
    align-items: stretch;
  }
  .event-card {
    flex: 1 1 100%; /* 1 per row */
    margin-bottom: 20px;
  }
}

/* ==== FOOTER CSS ===== */
.site-footer {
  background-color: #d8002e;
  color: #fff;
  padding: 2.5rem 5%;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.footer-container {
  display: flex;
  justify-content: center; /* Centers both sections */
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem; /* Balanced space between left and right sections */
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* Left and right sections */
.footer-left,
.footer-right {
  flex: 1 1 300px;
  text-align: center; /* Centers text within each block */
}

/* Logo */
.footer-logo {
  width: 200px;
  height: auto;
  margin-bottom: 1rem;
}

/* Text info */
.footer-description,
.footer-address,
.footer-phone {
  margin: 0.5rem 0;
  line-height: 1.6;
}

/* Quick links */
.footer-right h2 {
  margin-bottom: 1rem;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 0.3rem;
  padding-top: 20px;
}

.footer-right ul {
  padding: 0;
  margin: 0;
}

.footer-right li {
  list-style: none;
  margin: 0.4rem 0;
}

.footer-right a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #3b4f63;
  text-decoration: underline;
}

/* Divider and credit */
.site-footer hr {
  border: 0;
  border-top: 1px solid #fff;
  margin: 2rem 0 1rem;
}

.site-footer p {
  text-align: center;
  font-size: 0.9rem;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* =============================
   Responsive Breakpoints
   ============================= */

/* 1024px - tablet large */
@media (max-width: 1024px) {
  .footer-container {
    gap: 2rem;
  }

  .footer-logo {
    width: 180px;
  }
}

/* 720px - tablet small */
@media (max-width: 720px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-logo {
    width: 160px;
  }

  .footer-right h2 {
    border: none;
    margin-bottom: 0.8rem;
  }
}

/* 480px - mobile */
@media (max-width: 480px) {
  .site-footer {
    padding: 2rem 5%;
  }

  .footer-logo {
    width: 130px;
  }

  .footer-description,
  .footer-address,
  .footer-phone {
    font-size: 0.9rem;
  }

  .footer-right h2 {
    font-size: 1rem;
  }

  .footer-right a {
    font-size: 0.9rem;
  }
}

/* 360px - small mobile */
@media (max-width: 360px) {
  .footer-logo {
    width: 110px;
  }

  .footer-description,
  .footer-address,
  .footer-phone {
    font-size: 0.8rem;
  }

  .footer-right a {
    font-size: 0.8rem;
  }

  .site-footer p {
    font-size: 0.75rem;
  }
}



/*
Scroll Button CSS
*/

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #d8002e;
  color: #fff;
  border:0.5px solid white;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  font-size: 18px;
  cursor: pointer;
  display: none; /* hidden initially */
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
  z-index: 300;
}

.back-to-top:hover {
  background-color: #333;
  transform: scale(1.1);
}



/* Prevent horizontal overflow globally */
html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}


/* contact.html CSS */

.contact-info {
  text-align: center;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.contact-info h1 {
  font-size: 36px;
  color: #000;
  margin-bottom: 50px;
}

/* Cards horizontally centered */
.contact-cards {
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;
  gap: 30px; /* spacing between cards */
  flex-wrap: wrap; /* allows wrapping on smaller screens */
}

.contact-card {
  background-color: #ecf1f3;
  width: 300px;
  height: 200px;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: #000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.contact-card i {
  font-size: 50px;
  color: #000;
  margin-top: 50px
}

.contact-card p {
  font-size: 18px;
  margin: 0;
  margin-top: 50px;
}

/* MAP SECTION */
.map-container {
  width: 80%;
  max-width: 1000px;
  margin: 60px auto 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 50px;
}

/* ===========================
   CONTACT FORM SECTION
   =========================== */
.contact-section {
  text-align: center;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}

.contact-title {
  font-size: 36px;
  margin-bottom: 30px;
  color: #000;
}

.contact-form {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #ecf1f3;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-group {
  text-align: left;
  margin-bottom: 20px;
}

.contact-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  box-sizing: border-box;
}

.contact-textarea {
  height: 120px;
  resize: vertical;
}

.contact-button {
  width: 100%;
  padding: 15px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-button:hover {
  background-color: #333;
}

/* ===========================
   TOAST POPUP (bottom right)
   =========================== */
.contact-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #000;
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 16px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.4s ease;
  z-index: 9999;
  pointer-events: none;
}

.contact-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
  .contact-form {
    width: 95%;
    padding: 30px 20px;
  }

  .contact-toast {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%) translateY(50px);
    text-align: center;
    width: 90%;
    font-size: 15px;
  }

  .contact-toast.show {
    transform: translateX(50%) translateY(0);
  }
}


/* ===========================
   ABOUT.HTML CSS
   =========================== */

   .aboutpage-section {
  width: 100%;
  padding: 100px 0 50px;
  background-color: #fff;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.aboutpage-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* ensures children match height */
  gap: 40px;
  position: relative;
  text-align: justify;
}


.aboutpage-left {
  flex: 1;
  min-width: 250px;
  
}

.aboutpage-left h2 {
  font-size: 36px;
  color: #000;
  margin-bottom: 10px;
}

.aboutpage-right {
  flex: 2;
  min-width: 300px;
}

.aboutpage-right p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

/* Vertical divider line */
.aboutpage-vertical-line {
  width: 1px;
  background-color: #7d7d7d; 
  align-self: stretch; 
  opacity: 0.6;
}

/* Divider line under section */
.aboutpage-divider {
  width: 80%;
  margin: 50px auto 0;
  border: 0;
  border-bottom: 1px solid #7d7d7d;
}



/* Responsive layout */
@media (max-width: 900px) {
  .aboutpage-container {
    flex-direction: column;
    text-align: center;
  }

  .aboutpage-left h2 {
    font-size: 28px;
  }

  .aboutpage-right p {
    font-size: 15px;
  }
}

.aboutpage-history {
  width: 100%;
  background-color: #f3f6f8;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
}

.aboutpage-history-container {
  width: 80%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Image styling */
.aboutpage-history-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutpage-history-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

/* Text styling */
.aboutpage-history-text {
  flex: 1;
  color: #333;
  text-align: justify;
}

.aboutpage-history-text h2 {
  font-size: 32px;
  color: #000;
  margin-bottom: 20px;
}

.aboutpage-history-text p {
  font-size: 16px;
  line-height: 1.8;
}

/* Responsive layout */
@media (max-width: 1024px) {
  .aboutpage-history-container {
    flex-direction: column;
    text-align: center;
  }

  .aboutpage-history-image img {
    width: 90%;
    max-height: 400px;
  }

  .aboutpage-history-text {
    width: 90%;
  }
}

.aboutpage-mission-vision {
  background-color: #fff;
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
}

.aboutpage-mission-vision-container {
  width: 80%;
  max-width: 1300px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  grid-template-rows: auto auto;
  column-gap: 60px;
  row-gap: 80px;
  position: relative;
}

/* Vertical divider line */
.aboutpage-mission-vision-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: #ccc;
}

/* Each section block */
.aboutpage-mission,
.aboutpage-vision,
.aboutpage-objectives,
.aboutpage-why {
  padding: 30px;
  background-color: #fff;
  text-align: justify;
}

.aboutpage-mission h3,
.aboutpage-vision h3,
.aboutpage-objectives h3,
.aboutpage-why h3 {
  font-size: 22px;
  color: #0b2c45;
  margin-bottom: 20px;
}

.aboutpage-why h4 {
  margin-top: 15px;
  font-size: 18px;
  color: #0b2c45;
}

.aboutpage-mission p,
.aboutpage-vision p,
.aboutpage-objectives p,
.aboutpage-why p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 12px;
}

.aboutpage-objectives ul,
.aboutpage-vision ul,
.aboutpage-why ul {
  padding-left: 20px;
  color: #444;
  line-height: 1.7;
}

.aboutpage-why li strong {
  color: #000;
}

/* Grid placement */
.aboutpage-mission { grid-column: 1; grid-row: 1; }
.aboutpage-vision { grid-column: 3; grid-row: 1; }
.aboutpage-objectives { grid-column: 1; grid-row: 2; }
.aboutpage-why { grid-column: 3; grid-row: 2; }

/* Responsive design */
@media (max-width: 1024px) {
  .aboutpage-mission-vision-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .aboutpage-mission-vision-container::before {
    display: none;
  }

  .aboutpage-mission,
  .aboutpage-vision,
  .aboutpage-objectives,
  .aboutpage-why {
    text-align: left;
  }
}

/* ==================== Responsive (≤900px) ==================== */
@media (max-width: 900px) {
  /* Main about sections */
  .aboutpage-section,
  .aboutpage-history,
  .aboutpage-mission-vision {
    padding: 80px 0;
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }

  .aboutpage-section p,
  .aboutpage-history p {
    width: 100%;
    font-size: 16px;
    line-height: 1.8;
  }

  /* Mission/Vision grid changes */
  .aboutpage-mission-vision-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    row-gap: 50px;
    width: 90%;
    margin: 0 auto;
  }

  .aboutpage-mission-vision-container::before {
    display: none;
  }

  .aboutpage-mission,
  .aboutpage-vision,
  .aboutpage-objectives,
  .aboutpage-why {
    grid-column: 1 !important;
    grid-row: auto !important;
    padding: 25px;
    text-align: left;
  }

  .aboutpage-mission h3,
  .aboutpage-vision h3,
  .aboutpage-objectives h3,
  .aboutpage-why h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .aboutpage-mission p,
  .aboutpage-vision p,
  .aboutpage-objectives p,
  .aboutpage-why p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ==================== Small Screens (≤480px) ==================== */
@media (max-width: 480px) {
  .aboutpage-section,
  .aboutpage-history,
  .aboutpage-mission-vision {
    padding: 60px 0;
  }

  .aboutpage-section h2,
  .aboutpage-history h2 {
    font-size: 24px;
  }

  .aboutpage-section p,
  .aboutpage-history p {
    font-size: 14px;
    line-height: 1.7;
    padding: 0 10px;
  }

  .aboutpage-mission-vision-container {
    width: 90%;
    row-gap: 40px;
  }

  .aboutpage-mission,
  .aboutpage-vision,
  .aboutpage-objectives,
  .aboutpage-why {
    padding: 15px;
  }

  .aboutpage-mission h3,
  .aboutpage-vision h3,
  .aboutpage-objectives h3,
  .aboutpage-why h3 {
    font-size: 18px;
  }

  .aboutpage-mission p,
  .aboutpage-vision p,
  .aboutpage-objectives p,
  .aboutpage-why p {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* ==================== Very Small Screens (≤360px) ==================== */
@media (max-width: 360px) {
  .aboutpage-section,
  .aboutpage-history,
  .aboutpage-mission-vision {
    padding: 50px 0;
    width: 95%;
  }

  .aboutpage-section h2,
  .aboutpage-history h2 {
    font-size: 22px;
  }

  .aboutpage-section p,
  .aboutpage-history p {
    font-size: 13px;
    line-height: 1.6;
  }

  .aboutpage-mission-vision-container {
    width: 95%;
    row-gap: 35px;
  }

  .aboutpage-mission,
  .aboutpage-vision,
  .aboutpage-objectives,
  .aboutpage-why {
    padding: 10px;
  }

  .aboutpage-mission h3,
  .aboutpage-vision h3,
  .aboutpage-objectives h3,
  .aboutpage-why h3 {
    font-size: 17px;
  }

  .aboutpage-mission p,
  .aboutpage-vision p,
  .aboutpage-objectives p,
  .aboutpage-why p {
    font-size: 12px;
    line-height: 1.5;
  }
}



/* ==========================
   Partnership CSS
   ========================== */

   /* === Partners Section === */
.partners-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.partners-cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.partner-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
  max-width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
}

.partner-card h3 {
  font-size: 16px;
  color: #222;
  margin: 0;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
  .partners-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .partners-cards {
    grid-template-columns: 1fr;
  }
}
