* {
  margin: 0px;
  margin-bottom: 0px;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Base Styles & Variables */
:root {
  /* Primary Colors */
  --primary-color: #1d2c4d;
  /* Navy blue from screenshot */
  --secondary-color: #e74c3c;
  /* Red accent */
  --accent-color: #3498db;
  /* Blue accent */

  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f5f7fa;
  --medium-gray: #e4e8f0;
  --dark-gray: #4a5568;
  --black: #1a202c;

  /* Typography */
  /* --heading-font: 'Poppins', sans-serif; */
  /* --body-font: 'Roboto', sans-serif; */

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;

  /* Borders & Shadows */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 24px;

  --box-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --box-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Container widths */
  --container-width: 1200px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--black);
  /* margin-bottom: var(--spacing-md); */
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

/* p {
    margin-bottom: var(--spacing-md);
} */

a {
  color: white;
  text-decoration: none;
  transition: color var(--transition-fast);
}

/* a:hover {
    color: var(--secondary-color);
} */

ul,
ol {
  list-style-position: inside;
  margin-bottom: var(--spacing-md);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
.btn {
  cursor: pointer;
  font-family: var(--body-font);
  transition: all var(--transition-fast);
}

/* Container Layout */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

section {
  padding: var(--spacing-md) 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
}

.section-header h2 {
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  /* background-color: var(--secondary-color); */
  border-radius: 2px;
}

.section-header p {
  color: var(--dark-gray);
  font-size: 1.1rem;
}

/* Button Styles */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius-md);
  font-weight: 500;
  text-align: center;
  border: none;
  font-size: 1rem;
  transition: all var(--transition-normal);
}

.btn-primary {
  background-color: rgb(231, 76, 60);
  color: var(--white);
  box-shadow: var(--box-shadow-sm);
  border: 1px solid var(--primary-color);
  border-radius: 30px;
}

.btn-primary:hover {
  background-color: #162444;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-md);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-text {
  color: var(--primary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  transition: all var(--transition-fast);
}

.btn-text:hover {
  color: var(--secondary-color);
  gap: var(--spacing-sm);
}

.btn-text svg {
  width: 18px;
  height: 18px;
}

/* Header & Navigation */
header {
  background-color: var(--primary-color);
  padding: var(--spacing-md) 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: var(--box-shadow-md);
  transition: all var(--transition-normal);
}

header.scrolled {
  padding: var(--spacing-sm) 0;
  background-color: rgba(29, 44, 77, 0.95);
  backdrop-filter: blur(10px);
}



.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
}

/* Popup content box */
.popup-content {
  position: relative;
  background: white;
  border-radius: 8px;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

/* Image inside popup */
.popup-content img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}

/* Close button */
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
  background: transparent;
  border: none;
}

@media (max-width: 480px) {
  .popup-content {
    padding: 0.5rem;
  }

  .close {
    font-size: 24px;
    right: 10px;
    top: 8px;
  }
}

/* Navbar Styles */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .7rem 5%;
  background-color: #273246;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}



.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  /* Remove the filter that was making it white */
}

.logo h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
  /* color: rgb(10, 10, 10); */
  transition: transform 0.5s ease;
}


/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background-color: rgba(59, 130, 246, 0.05);
  color: var(--primary);
}

.container h2 {
  /* text-align: center; */
  margin-top: 16px;
}

/* res */
/* Default desktop styles */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Responsive styles */
@media (max-width: 1010px) {
  .hamburger {
    display: block;
    z-index: 1101;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    max-height: 80vh;
    /* Add this */
    overflow-y: auto;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    color: #273246;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background-color: white;
    padding-left: 1rem;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(29, 44, 77, 0.85), rgba(0, 0, 0, 0.9));
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visiblr;
  animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: 80px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
  padding: 2rem 0;
  animation: slideUp 1s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero-text {
  flex: 1;
  max-width: 600px;
  margin-left: 0;
  margin-top: 0;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInLeft 1s ease-out;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.hero-text h2 {
  font-size: 1.8rem;
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
  font-weight: 500;
  animation: fadeInLeft 1.2s ease-out;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--light-gray);
  margin-bottom: 2rem;
  animation: fadeInLeft 1.4s ease-out;
}

@keyframes fadeInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 1.6s ease-out;
}

@keyframes fadeInUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero-image {
  flex: 1;
  position: relative;
  animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.hero-services {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hero-services:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: left;
    gap: 2rem;
  }

  .hero-text {
    margin: 0 auto;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text h2 {
    font-size: 1.4rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
  }
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .hero-section {
    padding-top: 90px; /* Make sure there's enough space for navbar */
  }
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .hero-image {
    max-width: 550px; /* Limit image width */
    margin: 0 auto;
  }
}

/* Default desktop styles */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Responsive styles */
@media (max-width: 1010px) {
  .hamburger {
    display: block;
    z-index: 1101;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    max-height: 80vh;
    /* Add this */
    overflow-y: auto;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    color: #273246;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background-color: white;
    padding-left: 1rem;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}

/* Hero Section */

.hero-section {
  position: relative;
  color: var(--white);
  padding: 12rem 0 4rem;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-attachment: fixed;
  z-index: 1;
}

/* Blurred background using ::before */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: 
    linear-gradient(
      to bottom, 
      rgba(18, 31, 68, 0) 50%, 
      rgba(255, 255, 255, 0.86) 100%
    ),
    url('../images/emp3.webp') center center/cover no-repeat;
  filter: blur(6px); /* Adjust blur strength */
  z-index: -1; /* Keep background behind content */
  background-attachment: fixed;
}


.hero-content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: -100px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
  /* margin-bottom: 509px; */
  margin-top: -100px;
  margin-left: -30px;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.hero-text h2 {
  color: var(--medium-gray);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  margin-top: revert-layer;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
  color: var(--light-gray);
}

.hero-btns {
  display: flex;
  gap: var(--spacing-md);
}

.hero-image {
  flex: 1;
  margin-top: -10px;
  padding-left: var(--spacing-lg);
  /* padding-bottom: 50px; */
}

.hero-services {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(5px);
  padding: var(--spacing-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  gap: var(--spacing-lg);
  margin-top: -3.3rem;
}

.service-list {
  flex: 1;
}

.service-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.9;
}

.service-list li svg {
  width: 18px;
  height: 18px;
  color: var(--secondary-color);
}

/*award section*/

.awards-section {
  padding: 30px 20px;
  text-align: center;
}

.awards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  padding-top: 40px;
}

.award-card {
  flex: 0 1 calc(25% - 15px);
  /* min-width: 150px; */
  color: white;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* background: rgba(255, 255, 255, 0.1); */
  border-radius: 8px;
  /* padding: 20px; */
  transition: transform 0.3s ease;
}

.award-card:hover {
  transform: scale(1.05);
}

.award-card img {
  width: 100px;
  height: 85px;
  margin-bottom: 15px;
  filter: brightness(1.1) contrast(1.1);
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .award-card {
    flex: 0 1 calc(33.33% - 13.33px);
  }
}

@media (max-width: 768px) {
  .award-card {
    flex: 0 1 calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .award-card {
    flex: 0 1 100%;
  }
}

.brand-card img {
  width: 100%;
  /* height: 70%; */
  max-height: 120px;
  object-fit: cover;
  margin-bottom: var(--spacing-sm);
  filter: brightness(1.1) contrast(1.1);
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.brand-card img:hover {
  transform: scale(1.05);
}
/* Brands Section */
.brands-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 2rem 0;
  margin-top: -150px;
  position: relative;
  z-index: 3;
}

.brands-section h2 {
  color: var(--white);
  text-align: left;
  margin-bottom: var(--spacing-xl);
}

.brands-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xl);
  /* flex-wrap: wrap; */
}

.brand-card {
  /* background: rgba(255, 255, 255, 0.1); */
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  text-align: center;
  transition: all var(--transition-normal);
  max-width: 200px;
}

.brand-card:hover {
  transform: translateY(-5px);
  /* background: rgba(255, 255, 255, 0.15); */
}

.brand-card img {
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  margin-bottom: var(--spacing-sm);
}

.brand-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--light-gray);
}

/* Awards Preview Section */
.awards-preview-section {
  background-color: var(--light-gray);
  padding: var(--spacing-xl) 0;
}

.awards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* gap: var(--spacing-lg); */
}

.award-item {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-sm);
  padding: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  max-width: 400px;
  transition: all var(--transition-normal);
}

.award-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-md);
  
}

.award-logo {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.award-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.award-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

/*product offering*/

.products-section {
  padding: 60px 20px;
  /* background-color: #f4f8fb; */
  text-align: center;
}

.products-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1100px;
  margin: auto;
}

.card {
  position: relative;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease-in-out;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #273246, #051720);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 1;
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #273246, #00aaff);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: 1;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover::after {
  transform: scaleY(1);
}

.card-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  color: white;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.card-content h2 {
  margin: 0 0 10px;
  font-size: 22px;
  color: white;
}

.card-content p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.info span {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
}

.button {
  width: 100%;
  padding: 12px;
  background: white;
  color: black;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.button:hover {
  background: #f1f1f1;
}

@media (max-width: 768px) {
  .products-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .card-container {
    gap: 1.5rem;
  }

  .card {
    height: 400px;
  }

  .card-content {
    padding: 15px;
  }

  .card-content h2 {
    font-size: 20px;
  }

  .card-content p {
    font-size: 13px;
  }

  .button {
    padding: 10px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .products-section {
    padding: 40px 15px;
  }

  .products-title {
    font-size: 22px;
  }

  .card {
    height: 380px;
  }

  .card-content {
    padding: 12px;
  }

  .card-content h2 {
    font-size: 18px;
  }

  .card-content p {
    font-size: 12px;
  }

  .info span {
    font-size: 11px;
    padding: 4px 8px;
  }

  .button {
    padding: 10px;
    font-size: 13px;
  }
}

/* Director Section */
.director-section {
  /* background-color: var(--light-gray); */
}

.director-message {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-md);
}

.director-image {
  flex: 1;
  max-width: 400px;
  height: 400px;
}

.director-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.director-content {
  flex: 1.5;
  padding: var(--spacing-xl);
}

.director-content h2 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.director-content blockquote {
  border-left: 3px solid var(--accent-color);
  padding-left: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  font-style: italic;
}

.director-content cite {
  display: block;
  font-weight: 600;
  margin-top: var(--spacing-sm);
  color: var(--primary-color);
}

/* Courses Section */
.filter-btn {
  padding: 10px 20px;
  margin: 5px;
  background-color: #eee;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.filter-btn.active {
  background-color: rgb(241, 93, 77);
  color: white;
}

.course-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.course-card {
  background-color: #112645;
  border-radius: 15px;
  overflow: hidden;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.course-card:hover {
  transform: scale(1.02);
}

.course-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.course-content {
  padding: 20px;
}

.stars {
  color: gold;
  font-size: 18px;
}

.course-title {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
  color: white;
}

.course-desc {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 15px;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.course-meta span {
  background: #fff;
  color: #000;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 12px;
}

.course-buttons {
  display: flex;
  justify-content: space-between;
}

.course-buttons a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.btn-know {
  background: white;
  color: black;
}

.btn-enroll {
  background: #e74c3c;
  color: white;
}

/*explore*/
.explore-btn-container {
  text-align: center;
  margin: 2rem;
  /* background-color: #f5f7fA; */
}

.explore-btn {
  background: #273246;
  /* Green gradient */
  color: white;
  padding: 14px 32px;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: #4a5979;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Projects Section */
.projects-section {
  /* background-color: var(--light-gray); */
}

.projects-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.project-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-sm);
  transition: all var(--transition-normal);
}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-md);
}

.project-item.reverse {
  flex-direction: row-reverse;
}

.project-content {
  flex: 1;
  padding: var(--spacing-xl);
}

.project-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.project-features {
  list-style: none;
  margin: var(--spacing-md) 0;
}

.project-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.project-features li svg {
  width: 18px;
  height: 18px;
  color: var(--secondary-color);
}

.project-image {
  flex: 1;
  height: 350px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-right:1px solid black;
}

/* Why Choose Us Section */
/* Parallax Background Section */
.parallax-section {
  position: relative;
  min-height: 300px;
  background-image: url("../images/why.jpeg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* Dark Overlay */
.parallax-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

/* Inner Content Wrapper */
.parallax-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  padding: 1rem 0;
}

/* Why Us Section */
.why-us-section {
  background-color: transparent;
}

.section-header-p {
  margin-bottom: 2.5rem;
}

.section-header-p h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.section-header-p p {
  color: #ddd;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.why-us-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

/* Card Items */
.why-us-item {
  flex: 1 1 250px;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 1.5rem 1rem;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
}

.why-us-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.why-us-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us-icon svg {
  width: 36px;
  height: 36px;
  color: white;
}

.why-us-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.why-us-item p {
  font-size: 0.95rem;
  color: #e0e0e0;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .parallax-section {
    padding: 1.5rem 1rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .why-us-item {
    max-width: 100%;
  }
}



/* counter section */

.status-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/why.jpeg') no-repeat center center/cover;
  background-attachment: fixed;
  padding: 7.5px 82.5px;
  color: white;
  text-align: center;
  position: relative;
}

.status-overlay {
  /* background-color: rgba(0, 0, 0, 0.6); */
  padding: 60px 20px;
}

.status-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

.status-grid {
  display: flex;
  justify-content: space-between;
  /* Or use gap */
  gap: 15px; 
  /* spacing between cards */
  flex-wrap: wrap;
  /* Optional: wrap on small screens */
  padding: 70px;
}

.status-box {
  flex: 1 1 150px;
  /* less width per your request */
  max-width: 200px;
  /* restricts how wide each can grow */
  border: 2px solid #92919163;
  background: rgba(255, 255, 255, 0.2);
  /* light transparent background */
  backdrop-filter: blur(3px);
  /* correct blur usage */
  border-radius: 15px;
  padding: 10px;
  color: #fff;
}

.status-number {
  font-size: 40px;
  font-weight: bold;
  color: white;
}

.status-label {
  font-size: 16px;
  margin-top: 8px;
}

.updated-date {
  margin-top: 30px;
  font-size: 14px;
  color: white;
}

@media (max-width: 768px) {
  .status-number {
    font-size: 28px;
  }
}


/* Awards Section */

.awards-sections {
  text-align: center;
  padding: 60px 20px;
  /* background-color: #f9f9f9; */
}

.awards-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

.awards-containers {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.awards-cards {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.awards-cards:hover {
  transform: translateY(-5px);
}

.awards-cards img {
  display: block;
  margin: 0 auto;
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.awards-cards p {
  font-style: italic;
  font-size: 16px;
  color: #007b8a;
  line-height: 1.5;
}

.cards-img-top {
  height: 180px;
  object-fit: cover;
}

/* Testimonials Section */
/* Testimonial Header */
.testimonial-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.testimonial-header h2 {
  font-size: 35px;
  font-weight: 700;
  color: #222;
}

/* Container */
.testimonial-container {
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  padding: 0 30px;
}

/* Auto-scroll animation */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.testimonial-track.reverse {
  animation: scrollRight 40s linear infinite;
}
.testimonial-track.reverse:hover {
  animation-play-state: paused;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollLeft 40s linear infinite;
  padding-bottom: 30px;
  will-change: transform;
  transition: transform 0.3s ease;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

/* Testimonial Card */
.testimonial-card {
  min-width: 320px;
  height: 370px;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 30px 25px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Hover with gradient accent */
.testimonial-card:hover {
  transform: scale(1.05);
  border: 2px solid transparent;
  background: linear-gradient(135deg, white, white) padding-box,
    linear-gradient(135deg, white, rgba(108, 99, 255, 0.25)) border-box;
  box-shadow: 0 16px 32px rgba(108, 99, 255, 0.25);
}

/* Star Rating */
.stars {
  margin-bottom: 18px;
  color: #ffc107;
}

.star {
  font-size: 22px;
  margin: 0 2px;
}

.star:not(.rated) {
  color: #ddd;
}

/* Card Text */
.cards-content .text {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
  font-weight: 500;
}

.bold-statement {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6C63FF;
  margin-bottom: 20px;
}

/* Author Info */
.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.author-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .testimonial-track {
    gap: 20px;
  }

  .testimonial-card {
    min-width: 320px;
    max-width: 150px;
  }

  .testimonial-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .testimonial-container {
    padding: 0 15px;
    overflow-x: auto;
  }

  .testimonial-track {
    width: 100%;
    animation-duration: 45s;
  }
   .testimonial-track.reverse {
    animation-duration: 5s;
  }

  .testimonial-card {
    min-width: 130px;
    max-width: 130px;
    width: 100%;
    transition: none;
  }

  .testimonial-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 20px;
    min-width: 140px;
    max-width: 90%;
    width: 100%;
  }

  .testimonial-header h2 {
    font-size: 22px;
  }
  .testimonial-track {
    animation-duration: 5s;
  }
  .testimonial-track.reverse {
    animation-duration: 5s;
  }

  .cards-content .text {
    font-size: 14px;
  }

  .bold-statement {
    font-size: 12px;
  }
}
/* Video Testimonials Section */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--dark-gray);
}

.video-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;

}

.video-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.video-frame {
  position: relative;
  height: 250px;
  cursor: pointer;
}

.video-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: opacity 0.3s;
}

.play-icon {
  color: white;
  width: 64px;
  height: 64px;
  cursor: pointer;
}

.video-placeholder.playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

.video-info {
  padding: 1rem;
}

.video-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.video-info p {
  font-size: 0.95rem;
  color: var(--dark-gray);
}

/* Contact Section */
.contact-section {
  background-color: var(--white);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--spacing-xl);
  background-color: var(--light-gray);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-md);
}

.contact-info {
  padding: var(--spacing-xl);
  background-color: var(--primary-color);
  color: var(--white);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.info-item svg {
  width: 24px;
  height: 24px;
  color: var(--secondary-color);
}

.info-item h3 {
  color: var(--white);
  margin-bottom: var(--spacing-xs);
  font-size: 1.1rem;
}

.info-item p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all var(--transition-normal);
}

.social-links a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.contact-form {
  padding: var(--spacing-xl);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius-md);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

/* Footer Section */

.footer {
  background: #273246;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 0 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 0 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  min-width: 160px;
  max-width: 280px;
  flex: 1;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #fff;
}


.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: orangered;
}

.footer-logo {
  width: 60px;
  margin-bottom: 10px;
}

.footer-col:first-child {
  padding-right: 30px;
}

.footer-col p {
  word-wrap: break-word;
  white-space: pre-line;
  line-height: 1.6;
  font-size: 14px;
}

.footer-socials {
  margin-top: 10px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  /* border: 1px solid #555;
  border-radius: 50%; */
  padding: 8px;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-color: transparent;
}

/* Newsletter */
.newsletter-col {
  max-width: 280px;
}

.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 280px;
  margin-top: 10px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 3px 0 0 3px;
  outline: none;
  font-size: 14px;
}

.newsletter-form button {
  padding: 10px 15px;
  background: #e74c3c;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 0 3px 3px 0;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-top: 30px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .footer-col {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    border-radius: 3px;
    margin-bottom: 10px;
  }

  .newsletter-form button {
    border-radius: 3px;
  }
}

@media screen and (max-width: 1165px) {
  .footer-container {
    padding: 0 20px;
  }

  .footer-col {
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-socials {
    justify-content: center;
    margin-top: 10px;
  }

  .newsletter-form {
    flex-direction: column;
    max-width: none;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    margin-bottom: 10px;
  }
}


/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Glassmorphism Elements */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-section{
    height: auto;;
  }
  .hero-content {
    padding: 0 var(--spacing-lg);
  }
  .awards-section {
    padding-top: 40px;
  }
  /* .award-card {
    max-width: 100%;
  } */
  .hero-services{
    margin-top: -45px;
  }
  .brand-card img{
    width:85px;
    height: 85px;
  }
  .hero-brands h2{
    margin-bottom: 1.7rem;
  }

  .hero-text {
    margin-left: 0;
    margin-top: -60px;
  }
}

@media (max-width: 1024px) {
  .hero-section {
    padding: 10rem 0 3rem;
    height: auto;
  }

  .hero-content {
    gap: 2rem;
  }

  .hero-text {
    margin: 0;
    padding: 0 var(--spacing-md);
    text-align: left;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-image {
    margin-top: 0;
    padding-left: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 8rem 0 2rem;
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    flex-direction: column;
    padding: 0 var(--spacing-md);
  }

  .hero-text {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text h2 {
    font-size: 1.3rem;
  }

  .hero-image {
    padding: 0;
    margin: var(--spacing-lg) 0;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 6rem 0 2rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text h2 {
    font-size: 1.1rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}


/* Fix for touch devices */
@media (hover: none) {

  .card:hover,
  .project-item:hover,
  .video-item:hover,
  .why-us-item:hover {
    transform: none;
  }

  .nav-link:hover,
  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none;
  }
}

/*contact us button footer*/
.btn {
  padding: 10px 20px;
  background-color: rgb(231, 76, 60);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
}

.btn:hover {
  background-color: rgb(241, 93, 77);
}

@media (min-width: 2560px) {
  .hero-section {
    height: 60vh;
  }

}

.contact-btn:hover {
  background-color: rgb(241, 93, 77);
}


/* Small screen responsive adjustments (below 768px) */
@media (max-width: 768px) {
  /* Base adjustments */
  :root {
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 2.5rem;
  }

  section {
    padding: var(--spacing-xl) 0;
  }

  /* Hero section */
  .hero-section {
    padding-top: 70px;
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    flex-direction: column;
    margin-top: 0;
  }

  .hero-text {
    margin: 0;
    padding: 0 var(--spacing-md);
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-text h2 {
    font-size: 1.3rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
  }

  .hero-image {
    padding: 0;
    margin-top: var(--spacing-lg);
  }

  /* Brands section */
  .brands-section {
    margin-top: 0;
    padding: var(--spacing-lg) 0;
  }

  .brands-container {
    flex-wrap: wrap;
    gap: var(--spacing-md);
  }

  .brand-card {
    max-width: 120px;
    padding: var(--spacing-sm);
  }

  /* Products section */
  .card-container {
    grid-template-columns: 1fr;
  }

  .card {
    height: 400px;
  }

  /* Director section */
  .director-message {
    flex-direction: column;
  }

  .director-image {
    max-width: 100%;
    height: 300px;
  }

  .director-content {
    padding: var(--spacing-lg);
  }

  /* Courses section */
  .course-card {
    width: 100%;
  }

  /* Status/Stats section */
  .status-grid {
    grid-template-columns: 1fr 1fr;
    padding: var(--spacing-md);
  }

  .status-box {
    margin-bottom: var(--spacing-md);
  }

  /* Testimonials */
  .testimonial-card {
    min-width: 280px;
    height: auto;
  }

  /* Contact section */
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info, .contact-form {
    padding: var(--spacing-lg);
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    gap: var(--spacing-lg);
    padding: 0 var(--spacing-md);
  }

  .footer-col {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    border-radius: var(--border-radius-md);
  }

  .newsletter-form button {
    margin-top: var(--spacing-xs);
  }
}

/* Extra small screens (below 480px) */
@media (max-width: 480px) {
  /* Hero section */
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text h2 {
    font-size: 1.1rem;
  }


    .service-list, .right-services {
    display: block;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
  }

  .hero-services {
    flex-direction: column;
    padding: 15px;
  }

  .service-list ul {
    padding-left: 0;
  }

  .service-list li {
    margin-bottom: 10px;
    font-size: 14px;
    /* text-align: center; */
  }


  /* Status/Stats section */
  .status-grid {
    grid-template-columns: 1fr;
  }

  /* Awards section */
  .award-card {
    flex: 0 1 100%;
  }

  /* Testimonials */
  .testimonial-card {
    min-width: 260px;
    height: auto;
    padding: 1.5rem;
  }

  /* Video section */
  .video-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .project-item, 
  .project-item.reverse {
    flex-direction: column; /* Stack vertically */
    gap: 20px;
  }

  .project-image {
    width: 100%; /* Full width image */
    height: auto; /* Auto height */
    order: 1; /* Force image to top */
  }

  .project-content {
    order: 2; /* Force content to bottom */
    padding: 0 15px; /* Add side padding */
  }
}
@media (max-width: 1200px) and (min-width:1024px){
  .awards-section{
    padding-top: 45px;
  }
  
}
@media screen and (max-width: 2560px) and (min-width: 1440px) {
  .hero-section {
    margin-top: 60px;
  }
}

.project-features li i{
  height: 10px;
  width: 10px;
}

/* Certificate Section */
    .certificate-carousel-section {
      text-align: center;
      background: #f9f9f9;
      padding: 60px 20px;
      overflow: hidden;
    }

    .certificate-carousel-section h2 {
      font-size: 2rem;
      font-weight: bold;
    }

    .certificate-carousel-section p {
      font-size: 1.2rem;
      color: #444;
      max-width: 800px;
      margin: 20px auto 40px;
    }

    .certificate-carousel-section a {
      color: #1a73e8;
      text-decoration: none;
    }

    .carousel-container {
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .certificate-carousel {
      overflow: hidden;
      position: relative;
      width: 100%;
      padding: 50px 0;
    }

    .track {
      display: flex;
      gap: 30px;
      align-items: center;
      animation: scroll 110s linear infinite;
      height: 200px;
      width: max-content;
    }

    .certificate-img {
      height: 160px;
      transition: height 0.3s ease, filter 0.3s ease, transform 0.3s ease;
      opacity: 0.7;
    }

    .certificate-img:hover {
      height: 200px;
      filter: blur(0) brightness(1.1);
      opacity: 1;
    }

    .certificate-img.active {
      height: 160px;
      filter: blur(0) brightness(1);
      opacity: 1;
    }

    .certificate-img.active:hover {
      height: 200px;
      filter: blur(0) brightness(1.1);
    }

    .carousel-container:hover .track {
      animation-play-state: paused;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Mobile Responsive 
    @media (max-width: 480px) {
  /* .carousel-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; 
  }

  .track {
    display: flex;
    gap: 20px;
    animation: none;
    width: auto;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    padding-bottom: 15px;
  }

  .certificate-img {
    height: 140px;
    scroll-snap-align: center;
    flex-shrink: 0;
    min-width: 80%;
    margin: 0 auto;
    opacity: 0.7;
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
  }

  .certificate-img:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
    opacity: 1;
  }
}*/


/* Partners Section */
.partners-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.sub-heading {
  color: #222;
  font-weight: 700;
  font-size: 2.3rem;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

/* Slider Container */
.slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 20px 0;
}

/* Track for perfect infinite loop */
.slider-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 16s linear infinite;
  will-change: transform;
}

/* Keyframes adjusted for perfect loop */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.slider-container:hover .slider-track {
  animation-play-state: paused;
}

/* Each Slide */
.slide {
  flex: 0 0 auto;
  width: 180px;
  height: 120px;
  margin: 0 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background-color: white;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

/* Slide Images */
.slide img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* Hover effects */
.slide:hover {
  transform: translateY(-5px);
}
.slide:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Gradient fade edges */
.slider-container::before,
.slider-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.slider-container::before {
  left: 0;
  background: linear-gradient(90deg, #f9f9f9 0%, rgba(249,249,249,0) 100%);
}
.slider-container::after {
  right: 0;
  background: linear-gradient(270deg, #f9f9f9 0%, rgba(249,249,249,0) 100%);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .slide {
    width: 150px;
    margin: 0 15px;
  }
}

@media (max-width: 768px) {
  .sub-heading {
    font-size: 1.8rem;
  }
  .slide {
    width: 130px;
    height: 100px;
    margin: 0 12px;
  }
}

@media (max-width: 480px) {
  .slider-containers {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
    cursor: grab;
  }
  
  .slider-tracks {
    animation: none;
    display: flex;
    width: max-content;
  }
  
  .slide {
    scroll-snap-align: center;
    flex: 0 0 auto;
    width: 110px;
    height: 80px;
    margin: 0 10px;
  }
  
  .slider-containers::before,
  .slider-containers::after {
    display: none;
  }
  
  /* Better touch feedback */
  .slider-containers:active {
    cursor: grabbing;
  }
  
  /* Prevent image selection while dragging */
  .slide img {
    user-select: none;
    -webkit-user-drag: none;
  }
}

/* Partners & Recruiters Section */
.partners-section.recruiters-partners {
  text-align: center;
  padding: 60px 20px;
  background-color: #f9f9f9;
  position: relative;
}

.partners-section.recruiters-partners .title {
  color: #222;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

/* Slider Container */
.slider-containers {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 20px 0;
}

/* Track for perfect infinite loop - LEFT SCROLL (right-to-left) */
.slider-tracks {
  display: flex;
  width: max-content;
  animation: scrollRight 100s linear infinite;
  will-change: transform;
}

/* Keyframes for LEFT scrolling (right-to-left) */
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* Pause on hover */
.slider-containers:hover .slider-tracks {
  animation-play-state: paused;
}

/* Each Slide */
.slide {
  flex: 0 0 auto;
  width: 160px;
  height: 100px;
  margin: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: transform 0.3s ease;
}

.slide img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.slide:hover img {
  transform: scale(1.1);
}

/* Gradient fade edges */
.slider-containers::before,
.slider-containers::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.slider-containers::before {
  left: 0;
  background: linear-gradient(90deg, #f9f9f9 0%, rgba(249,249,249,0) 100%);
}

.slider-containers::after {
  right: 0;
  background: linear-gradient(270deg, #f9f9f9 0%, rgba(249,249,249,0) 100%);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .slide {
    width: 120px;
    height: 80px;
    margin: 0 15px;
  }
  
  .slider-tracks {
    animation-duration: 80s;
  }
}
