@font-face {
  font-family: 'Gotham-Bold'; 
  src: url('fonts/Gotham-Bold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gotham-black", Arial, sans-serif;
}

html,body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
}







    /* Hero */
    .hero {
      
      text-align: center;
   

      padding: 100px 20px;
    }
/* Hero base */
.hero { 
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  background: url('images/banner.jpeg') no-repeat center center ;
  background-size: cover; /* Makes image cover entire area */
}



/* Gradient heading */
.hero-title {
  display: flex;
  margin-top: 50px;
  justify-content: flex-start;
  font-size: 42px;
   min-height: 60px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #cc0000;
}



/* Cursor blink */
.cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #0E6799;
  margin-left: 4px;
  animation: blink 0.8s steps(1) infinite;
  vertical-align: -2px;
}

/* Subheading */
.hero p {
  font-size: 18px;
  color: #858080;
  max-width: 600px;
  margin-bottom: 2rem;
}

/* Button */
.hero-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #cc0000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #02a4f5;
}

/* Animations */
@keyframes flowGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes blink {
  50% { opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
  .hero{
    height: 30vh;
  }
  .hero-title { font-size: 28px; }
  .hero p { font-size: 1rem; }
}
/* Mobile Hero Section Fix */
@media (max-width: 768px) {
  .hero {
    height: auto !important; /* let content determine height */
    min-height: 100vh !important; /* reduce height but keep enough space */
    padding: 4rem 1rem !important; /* reduce padding for mobile */
    text-align: center !important;
    background-size: cover !important;
    background-position: center center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .hero-title {
    font-size: 28px !important; /* smaller, readable title */
    line-height: 1.2 !important;
    margin: 1rem 0 !important;
    justify-content: center !important; /* center the flex title */
  }

  .hero p {
    font-size: 1rem !important; /* adjust paragraph */
    max-width: 90% !important; /* narrower text */
    margin: 1rem auto 1.5rem auto !important;
    color: #908a8a !important; /* keep your color */
  }

  .hero-btn {
    font-size: 1rem !important;
    padding: 0.6rem 1.2rem !important;
    margin-top: 1rem !important;
  }

  .cursor {
    height: 1em !important; /* scale cursor with text */
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero-title {
    font-size: 22px !important;
  }

  .hero p {
    font-size: 0.95rem !important;
  }

  .hero-btn {
    font-size: 0.9rem !important;
    padding: 0.5rem 1rem !important;
  }
}

  .section {
  min-height: 100vh;              
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 6rem 2rem;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.section-text {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 30px;   /* ✅ Added padding inside */
}

.section-text h2 {
  font-size: 3em;
  margin-bottom: 1rem;
}

.section-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.gotomarket-section {
  background-image: url("images/banner5.jpeg");
  color: #000;   /* black text */
}
.about-section {
  background-image: url("images/employability.webp");
  color: #fff;   /* white text */
}

.growth-section {
  background-image: url("images/growth.webp");
  color: #fff;   /* white text */
}

.innovative-section {
  background-image: url("images/banner2.webp");
  color: #000;
}

.adoption-section {
  background-image: url("images/banner10.webp");
  color: #fff;
}


/* Section */
.bif-section {
  padding: 1rem 1rem;
  text-align: center;
  background: #FFF;
}

.bif-heading {
  font-size: 2.5rem;
  font-weight: 600;
  color: #cc0000;   
  margin-bottom: 2rem;
}

/* Wrapper */
.bif-image-wrapper {
  display: block;
  border-radius: 16px;
  width: 100%;
}

.bif-image-wrapper img {
  width: 100%;
  height: auto;        
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: block;
  object-fit: cover;  
}

/* Responsive fixes */
@media (max-width: 768px) {
  .bif-heading {
    font-size: 1.8rem;
  }

  .bif-image-wrapper {
    border-radius: 12px;
  }

  .bif-image-wrapper img {
    width: 100%;       
    height: auto;     
    max-width: 100%;   
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    object-fit: contain;  
  }
}
.clients-section {
  text-align: center;
  padding: 3rem 1rem;
  background: #f9fafb;
}

.clients-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #cc0000 !important;
}

.clients-section p {
  color: #555;
  margin-bottom: 2rem;
}

/* Slider Container */
.clients-slider {
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Track */
.clients-track {
  display: grid;
  grid-template-columns: repeat(8, 1fr); 
  gap: 2rem;
  animation: scroll 20s linear infinite;
}

.clients-track img {
  max-width: 100%;
  height: 80px;
  object-fit: contain;
 opacity: 1 !important;
 filter: none !important;
  transition: all 0.3s ease;
}

.clients-track img:hover {
  
  
  transform: scale(1.05);
}

/* Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .clients-track {
    grid-template-columns: repeat(8, 100%);
    gap: 1.5rem;
    animation: scroll-mobile 20s linear infinite;
  }

  @keyframes scroll-mobile {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
  }

  .clients-track img {
    height: 60px;
  }
}

.clients-section {
  text-align: center;
  padding: 3rem 1rem;
  background: #f9fafb;
}

.clients-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #cc0000 !important;
}

.clients-section p {
  color: #555;
  margin-bottom: 2rem;
}

/* Slider Container */
.clients-slider {
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Track */
.clients-track {
  display: flex;
  gap: 2rem;
  animation: scroll 20s linear infinite;
}

.clients-track img {
  height: 80px;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.clients-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .clients-track img {
    height: 60px;
    max-width: 120px;
  }
}
.outcomes-section {
  text-align: center;
  padding: 3rem 1rem;
  
}

.outcomes-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #cc0000;
}

/* Slider */
.testimonial-slider {
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin: 10px auto;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  animation: scrollTestimonials 25s linear infinite;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: #fff;
  border-radius: 12px;
 border: 1px solid black;
  padding: 1.5rem;
  text-align: center;
  min-height: 220px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
 background: #cc0000;
 
}
.testimonial-card:hover p{
    color: #fff;
}

.testimonial-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin: 1rem 0;
}

.testimonial-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

/* Circular image */
.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-bottom: 0.5rem;
}

/* Animation */
@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
    min-height: auto;
  }
  .testimonial-img {
    width: 50px;
    height: 50px;
  }
}
/* Footer base */
.footer {
  background: #f8f8f8; /* lighter background for contrast */
  color: #000;
  padding: 3rem 1rem 1.5rem;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-col {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
}

.footer-col h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.footer-col p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #000;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #cc0000;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.footer-social a {
  color: #000;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #cc0000;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-size: 0.95rem;
}

.newsletter-form button {
  padding: 0.6rem 1.2rem;
  border: none;
  background: #cc0000;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 0.95rem;
}

.newsletter-form button:hover {
  background: #900000;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #ccc;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #555;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* CENTER SOCIAL ICONS ONLY ON MOBILE */
  .footer-social {
    justify-content: center;
    width: 100%;
  }

  .footer-logo {
    width: 120px;
    margin-bottom: 0.8rem;
  }
}






/* General Section */
.contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: Arial, sans-serif;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.contact-header p {
  color: #666;
  font-size: 1rem;
}

/* Layout Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

/* Map */
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  min-height: 350px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Info Cards */
.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

@media (min-width: 576px) {
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-card {
  display: flex;
  gap: 15px;
  padding: 18px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-card .material-icons {
  font-size: 28px;
  color: #0077ff;
}

.info-card h4 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.info-card p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-form h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #222;
}

.contact-form p {
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form .form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  background: #cc0000;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #7a2503;
}

/* Social Links */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.form-social {
  display: flex;
  gap: 10px;
}

.form-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 34px;
  height: 34px;
  background: #f1f1f1;
  border-radius: 50%;
  color: #333;
}

.form-social a:hover {
  background: #cc0000;
  color: #fff;
}
/* Page Title Section */
.page-title {
  position: relative;
  height: 30vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.page-title .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); 
}

.page-title-content {
  position: relative;
  z-index: 2;
}

.page-title h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}
/* Section Styling */
.content-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  line-height: 1.7;
}

/* Each content block */
.content-block {
  margin-bottom: 3rem;
  padding: 2rem;
  border-left: 5px solid #333;  /* simple accent */
  background: #f9f9f9;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* Headings */
.content-block h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #222;
}

/* Paragraphs */
.content-block p {
  font-size: 1rem;
  color: #555;
}
/* =========================
   Cookie Consent (SEO-safe)
========================= */

#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 80px;
  background: #1f2937;
  color: #ffffff;
  font-size: 14px;
  padding: 10px 14px;
  display: none; /* shown via JS */
  z-index: 999;
}

#cookie-consent p {
  margin: 0;
  line-height: 1.4;
}

#cookie-consent a {
  color: #93c5fd;
  text-decoration: underline;
}

#cookie-consent .buttons {
  display: flex;
  gap: 8px;
}

#cookie-consent button {
  padding: 6px 10px;
  font-size: 13px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#acceptCookies {
  background: #3b82f6;
  color: #fff;
}

#declineCookies {
  background: #6b7280;
  color: #fff;
}
