/* -------- RESET -------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
}

/* -------- HEADER -------- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #ffffff;
  color: #000000;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo img {
  max-width: 100%;
  height: auto;
  width: 200px; /* Adjust width to the desired size */
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .logo img {
    width: 170px;   /* Adjust the width for mobile devices */
  }
}
.navbar {
  position: relative;
}

.navbar .nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 30px;
}

.navbar .nav-list li { display: inline-flex; }

.navbar .nav-list a {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}

/* Active Link Style */
.navbar .nav-list a.active {
  color: #003366 !important; /* force the color */
  font-weight: bold !important;
  border-bottom: 3px solid #003366;
  background-color: rgba(0, 51, 102, 0.1); /* Background color */
}


.navbar .nav-list a:hover { color: #003366; transform: translateY(-2px); }
.navbar .nav-list a.active { color: #003366; border-bottom: 2px solid #003366; }

/* -------- HAMBURGER -------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  border: 0;
  background: transparent;
  margin-left: 16px;
}

.hamburger .line {
  height: 3px;
  background-color: #000000;
  width: 100%;
  border-radius: 5px;
}

/* -------- MOBILE -------- */
@media (max-width: 768px) {
  .header { padding: 12px 16px; }

 

  .hamburger { display: flex; }

  .navbar .nav-list {
    /* hidden by default on mobile */
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: min(82vw, 320px);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    padding: 12px 8px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    border-radius: 10px;
  }

  .navbar.active .nav-list { display: flex; }

  .navbar .nav-list li { margin: 0; }

  .navbar .nav-list a {
    padding: 12px 14px;
    width: 100%;
    display: block;
  }
}

/* -------- FOOTER -------- */
.footer {
  background: #2c3e50;
  color: #fff;
  padding: 50px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 960px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left { 
  flex: 1 1 280px; 
  line-height: 1.6; 
}

.footer-left h3 { 
  margin-bottom: 8px; 
  color: #fff; 
}

.footer-left a { 
  color: #fff; 
  text-decoration: underline; 
}

.footer-left p, 
.footer-left address { 
  margin: 4px 0 15px; 
}

.footer-right { 
  flex: 0 1 200px; 
  line-height: 1.8; 
  display: flex; 
  flex-direction: column; 
  align-items: center; /* Center the content */
}

.footer-right .copyright {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  margin-top: auto;
  white-space: nowrap;
}

.footer-right .developer {
  font-size: 12px; /* Lower font size */
  color: rgba(255, 255, 255, 0.6); /* Lower opacity for a less highlighted color */
  text-align: center; /* Center the text */
  margin-top: 10px; /* Space from the copyright */
}











/* ===== Hero Landing ===== */
/* Bulletproof hero with pseudo-element background */
/* ===== HERO (robust + high-contrast) ===== */
/* ===== HERO LANDING SECTION ===== */
.hero-landing {
  position: relative;
  color: #ffffff;
  padding: clamp(60px, 10vw, 120px) 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  min-height: clamp(320px, 48vw, 560px);
  overflow: hidden;

  /* Fallback + inline background support */
  background-color: #0f1b2b;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Optional CSS variable image support */
.hero-landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat var(--hero-bg-url, none);
  z-index: -2;
}

/* Overlay Layer */
.hero-landing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
  z-index: -1;
}

/* Overlay Strength Options */
.hero-landing.overlay-strong::after,
.hero-landing[data-overlay="strong"]::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.hero-landing.overlay-light::after,
.hero-landing[data-overlay="light"]::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.25));
}

/* Inner Container */
.hero-landing__inner {
  width: min(1100px, 92vw);
  position: relative;
  z-index: 1;
}

/* Title */
/* Title */
.hero-landing__title {
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
  color: #ffffff;
  text-shadow: 0 3px 25px rgba(0, 0, 0, 0.95); /* Much darker shadow */
}

/* Subtitle */
.hero-landing__subtitle {
  font-size: clamp(16px, 2.1vw, 20px);
  line-height: 1.6;
  max-width: 820px;
  margin-bottom: 26px;
  color: #ffffff;
  opacity: 0.95;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.85); /* Much darker shadow */
}


/* ===== Inner Card Box ===== */
.hero-landing__inner.inner-card {
  background: rgba(0, 0, 0, 0.55); /* dark translucent background */
  color: #ffffff;
  padding: 28px 32px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px) saturate(120%);
  max-width: 720px;
}

.inner-card .hero-landing__title,
.inner-card .hero-landing__subtitle {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: #003366;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 51, 102, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #0a417e;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 51, 102, 0.33);
  outline: none;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero-landing {
    text-align: left;
  }

  .hero-landing__inner.inner-card {
    padding: 20px;
    border-radius: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}


















/* ========== About Page ========== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Hero */
.about-hero {
  --bg: #0f1b2b;
  --accent: #003366;
  background: radial-gradient(1000px 400px at 20% -10%, rgba(0,51,102,0.35), transparent),
              radial-gradient(800px 300px at 90% 10%, rgba(0,51,102,0.20), transparent),
              var(--bg);
  color: #fff;
  padding: clamp(64px, 12vw, 120px) 0;
  text-align: left;
}
.about-hero h1 {
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}
.about-hero .lead {
  font-size: clamp(16px, 2.1vw, 20px);
  opacity: 0.92;
  max-width: 820px;
}





/* --- Only affects the About MyUniform section --- */
.about-myuniform {
  text-align: center;
  padding: 150px 20px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.4), rgba(30, 41, 59, 0.4)), url('/imagesss/Myuni 1.png');
  background-size: contain; /* Ensures the image is fully contained */
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  min-height: 700px; /* Increased height */
}

.about-myuniform h1 {
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.about-myuniform p {
  font-size: 30px;
  color: #f0e0f0;
  opacity: 0.9;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-myuniform {
    min-height: 500px;
    padding: 100px 20px;
  }

  .about-myuniform h1 {
    font-size: 36px;
  }

  .about-myuniform p {
    font-size: 18px;
  }
}













/* --- Who We Are Section --- */
.who-we-are {
  background: #f8fafc;           /* light background for contrast */
  color: #1e293b;                /* dark text */
  padding: 80px 20px;
}

.who-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.who-we-are h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f172a;
  position: relative;
  display: inline-block;
}

.who-we-are h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #1E4D91; /* green underline accent */
  border-radius: 2px;
}

.who-we-are p {
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
  margin-top: 25px;
}










/* --- Our Mission & Vision Section --- */
.mission-vision {
  background: #0f172a;         /* dark section for contrast */
  color: #f1f5f9;
  padding: 80px 20px;
}

.mv-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.mission-vision h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ffffff;
  position: relative;
  display: inline-block;
}

.mission-vision h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background-color: #1E4D91;
  border-radius: 2px;
}

.mv-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.mv-card {
  background: #1e293b;
  border-radius: 10px;
  padding: 30px 25px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.mv-card h3 {
  color: #1E4D91;
  font-size: 24px;
  margin-bottom: 15px;
}

.mv-card p {
  font-size: 17px;
  line-height: 1.7;
  color: #cbd5e1;
}


















/* --- Our Values Section --- */
.our-values {
  background: #f8fafc;           /* light background for contrast */
  color: #1e293b;
  padding: 80px 20px;
}

.values-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.our-values h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0f172a;
  position: relative;
  display: inline-block;
}

.our-values h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background-color: #1E4D91; /* green underline accent */
  border-radius: 2px;
}

/* Grid layout for value cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.value-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
  color: #1E4D91;
  font-size: 22px;
  margin-bottom: 10px;
}

.value-card p {
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}





















/* ===== Services Page ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Hero */
/* --- Our Services & Industries Header --- */
.services-header {
  text-align: center;
  padding: 150px 20px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.4), rgba(30, 41, 59, 0.4)), url('/imagesss/myuni3.jpg'); /* Add your image path */
  background-size: contain; /* Ensures the image is fully contained */
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  min-height: 700px; /* Increased height */
}

.services-container {
  max-width: 1000px;
  margin: 0 auto;
}

.services-header h1 {
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.services-header p {
  font-size: 30px;
  color: #e2e8f0;
  opacity: 0.9;
  line-height: 1.6;
}

/* Optional: Responsive adjustments */
@media (max-width: 768px) {
  .services-header {
    min-height: 500px;
    padding: 100px 20px;
  }

  .services-header h1 {
    font-size: 36px;
  }

  .services-header p {
    font-size: 18px;
  }
}





/* --- Our Services Section (isolated) --- */
.our-services{
  background:#f8fafc;
  color:#0f172a;
  padding:80px 20px;
}

.srv-container{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

.our-services h2{
  font-size:40px;
  font-weight:700;
  margin-bottom:40px;
  position:relative;
  display:inline-block;
}

.our-services h2::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-8px;
  transform:translateX(-50%);
  width:100px;height:4px;
  background:#1E4D91; /* accent */
  border-radius:2px;
}

/* grid */
.srv-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:24px;
  margin-top:34px;
}

/* card */
.srv-card{
  background:#ffffff;
  border:1px solid #e2e8f0;
  border-radius:12px;
  text-align:left;
  padding:22px 20px;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.srv-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 24px rgba(2,6,23,.08);
  border-color:#cbd5e1;
}

.srv-card h3{
  font-size:20px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:8px;
}

.srv-card p{
  font-size:16px;
  line-height:1.65;
  color:#475569;
}














/* --- Industries We Serve Section --- */
.industries-serve {
  background-image: url("/imagesss/myuni 5.png"); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f1f5f9;
  padding: 80px 20px;
  position: relative;
}

.industries-serve::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for better text readability */
  z-index: 1;
}

.industries-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.industries-serve h2 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  color: #ffffff;
}

.industries-serve h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background-color: #1E4D91;
  border-radius: 2px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  position: relative;
  z-index: 2;
}

.industry-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.industry-card h3 {
  color: #1E4D91;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
}

.industry-card p {
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .industries-serve h2 {
    font-size: 30px;
  }

  .industry-card {
    padding: 20px;
  }

  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
}









/* --- Our Product Range Section --- */
.product-range {
  background: #f8fafc;
  color: #0f172a;
  padding: 80px 20px;
  text-align: center;
}

.product-container {
  max-width: 900px;
  margin: 0 auto;
}

.product-range h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.product-range h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background-color: #1E4D91;
  border-radius: 2px;
}

/* list */
.product-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.product-list li {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 18px 15px;
  font-size: 17px;
  font-weight: 500;
  color: #1e293b;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* note */
.note {
  color: #475569;
  font-size: 16px;
  margin-top: 25px;
}





/* --- Final CTA Section --- */
.final-cta {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.final-cta p {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #f1f5f9;
}

/* Button */
.cta-btn {
  display: inline-block;
  background-color: #1E4D91;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
  background-color: #16a34a;
  transform: translateY(-3px);
}






















/* ===== Contact Hero ===== */
.contact-hero {
  background: radial-gradient(800px 300px at 20% 0, rgba(0,51,102,0.3), transparent),
              #0f1b2b;
  color: #fff;
  text-align: left;
  padding: clamp(60px, 10vw, 110px) 20px;
}

.contact-hero h1 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-hero .lead {
  font-size: clamp(16px, 2vw, 20px);
  opacity: 0.95;
  max-width: 800px;
  line-height: 1.6;
}






























/* ===== Intro Section ===== */
/* --- Intro Section with Image --- */
.intro-section {
  background-color: #f8fafc;
  padding: clamp(60px, 10vw, 120px) 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  gap: 50px;
  flex-wrap: wrap; /* ensures mobile stacking */
  color: #0f1b2b;
  animation: fadeInUp 0.8s ease-in-out;
}

/* Left image side */
.intro-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.intro-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Right text side */
.intro-content {
  flex: 1 1 400px;
  text-align: left;
}

.intro-heading {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #003366;
  margin-bottom: 10px;
}

.intro-divider {
  width: 80px;
  height: 4px;
  background-color: #003366;
  margin-bottom: 25px;
  border-radius: 2px;
}

.intro-text {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
  color: #333;
  max-width: 600px;
  font-weight: 400;
  white-space: normal;
  overflow-wrap: anywhere;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .intro-container {
    flex-direction: column;
    text-align: center;
  }
  .intro-content {
    text-align: center;
  }
  .intro-image img {
    max-width: 100%;
  }
}

























/* ===== Key Highlights Section ===== */
.highlights {
  background-color: #f3f7fb;
  padding: clamp(60px, 10vw, 120px) 20px;
  text-align: center;
}

.highlights-container {
  max-width: 1100px;
  margin: 0 auto;
}

.highlights-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #003366;
  margin-bottom: 12px;
}

.highlights-divider {
  width: 80px;
  height: 4px;
  background-color: #003366;
  margin: 0 auto 40px auto;
  border-radius: 2px;
}

/* Grid layout for cards */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}

/* Individual cards */
.highlight-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.highlight-card h3 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 10px;
  font-weight: 700;
}

.highlight-card p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .highlights {
    padding: 60px 15px;
  }

  .highlight-card {
    text-align: center;
  }
}




















/* ===== Preview Section ===== */
.preview-section {
  background: #ffffff;
  padding: clamp(60px, 10vw, 120px) 20px;
}

.preview-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(20px, 4vw, 40px);
}

.preview-box {
  background: #f3f7fb;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.preview-box h2 {
  font-size: clamp(22px, 3vw, 30px);
  color: #003366;
  font-weight: 800;
  margin-bottom: 14px;
}

.preview-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
}

/* Buttons - use same style as hero buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: #003366;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 51, 102, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #0a417e;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 51, 102, 0.33);
  outline: none;
}

/* Responsive */
@media (max-width: 768px) {
  .preview-box {
    text-align: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}





















/* ===== Final CTA Section ===== */
/* --- Final CTA Section with Background Image --- */
/* --- Final CTA Section with Background Image --- */
.final-cta {
  background-color: #003366; /* Brand blue */
  background-image: url("/imagesss/myuni 6.png"); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay; /* Make image brighter */
  color: #ffffff;
  text-align: center;
  padding: clamp(60px, 10vw, 120px) 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5); /* Darkens image for better text visibility */
  border-radius: 15px; /* Rounded corners for a modern look */
}

.final-cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.3;
  color: #ffffff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4); /* Adds a soft glow effect */
}

.btn-light {
  display: inline-block;
  text-decoration: none;
  background: #ffffff;
  color: #003366;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}

.btn-light:hover,
.btn-light:focus {
  background: #f1f5f9;
  color: #002244;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
  outline: none;
}

@media (max-width: 768px) {
  .final-cta h2 {
    font-size: 22px;
  }

  .btn-light {
    width: 100%;
    text-align: center;
  }
}






























.clients-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
    font-family: 'Roboto', sans-serif;
}

.clients-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.client-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
    gap: 30px;
    justify-items: center;
    align-items: stretch; /* Ensure all cards are of equal height */
}

.client {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 300px;  /* Fixed height */
    width: 100%;
    max-width: 280px; /* Keep cards proportionate */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.client:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.client img {
    width: 120px;   /* Fixed width */
    height: 120px;  /* Fixed height */
    object-fit: cover; /* Ensure the image fills the container */
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 3px solid transparent; /* Transparent border for now */
    border-radius: 8px; /* Rounded corners */
}

/* Add hover effect to highlight image */
.client img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Soft shadow for emphasis */
    border-color: #009688; /* Highlight the image border on hover */
}


/* Additional effect for the card */




.client p {
    font-size: 1.1em;
    font-weight: bold;
    color: #555;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.client p:hover {
    color: #009688; /* Color on hover */
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .client-list {
        grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    }
}

@media (max-width: 768px) {
    .client-list {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    }
}

@media (max-width: 480px) {
    .clients-section h2 {
        font-size: 2em;
    }

    .client-list {
        grid-template-columns: 1fr; /* 1 card per row */
    }

    .client {
        padding: 20px;
        height: 250px;
    }

    .client img {
        width: 100px;
        height: 100px;
    }
}
