@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;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

/* Topbar */
.topbar {
  background: #071144;
  color: #e5e7eb;
  font-size: 14px;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar .left {
  display: flex;
  gap: 20px;
}
.topbar .right a {
  margin-left: 15px;
  text-decoration: none;
  color: #fff;
}
.topbar .right a:hover {
  color: white;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 9999; /* increase above sections */
}
.navbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  width: 70px; 
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  gap: 25px;
}
.nav-links a {
  text-decoration: none;
  color: #374151;
  font-weight: 700;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #A54B27;
}

/* Dropdown (desktop) */
.dropdown {
  position: relative;
}
.dropdown > a {
  display: flex;
  align-items: center;
}
.dropdown-icon {
  margin-left: 6px;
  font-size: 0.7em;
  transition: transform 0.3s ease;
}
.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 240px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 10;
  flex-direction: column;
}
.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}
.dropdown-content a:hover {
  background-color: #f5f5f5;
}
.dropdown:hover .dropdown-content {
  display: flex;
}
.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  font-size: 26px;
  cursor: pointer;
  background: none;
  border: none;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 10px 20px;
}
.mobile-menu a,
.mobile-dropdown button {
  display: block;
  padding: 12px;
  text-align: left;
  border: none;
  text-decoration: none;
  background: none;
  font-size: 1rem;
  width: 100%;
  cursor: pointer;
  color: #333;
}
.mobile-dropdown button i {
  float: right;
  transition: transform 0.3s ease;
}
.mobile-submenu {
  display: none;
  padding-left: 15px;
  border-left: 2px solid #eee;
  flex-direction: column;
}
.mobile-submenu a {
  padding: 8px 12px;
  font-size: 0.95rem;
  color: #444;
}
.mobile-submenu a:hover {
  color: #2563eb;
}

/* Mobile Active States */
.mobile-menu.show {
  display: flex;
}
.mobile-dropdown.open button i {
  transform: rotate(180deg);
}
.mobile-dropdown.open .mobile-submenu {
  display: flex;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: block;
  }
}



  /* ===============================
   HERO SECTION
================================= */
/* HERO BASE (desktop/larger screens) */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: left;
   
  padding: 3rem 2rem;
   background-image: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
    url('images/banner13.jpeg');
  background-size: cover;
  text-align: center;  
}

.hero-title {
  text-align: left;
  font-size: 80px;
  font-weight: 900;
  line-height: 1.2;
  margin: 30px 0 1rem;  
  color: #ce4617;
  margin-left: 15px;
}

.hero p {
  text-align: left;
  font-size: 25px;
  color: #fff;
  max-width: 600px;
  margin-bottom: 2rem;
  margin-left: 15px;
}
/* CE4617
R-206
G-70
B-23 */


/* ===============================
   BUTTONS (Unified Style)
================================= */
.btn, 
.hero-btn, 
.collective-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #FFF;
  color: #A54B27;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover,
.hero-btn:hover,
.collective-btn:hover {
  background: #8c3f20; 
  color: #fff; 
}

/* ===============================
   MOBILE RESPONSIVE FIX
================================= */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    background-position: center;
  }

  .hero-title {
    font-size: 2.2rem; /* ~35px */
    line-height: 1.3;
    margin: 0 0 1rem 0;
    text-align: center;
    margin-left: 0;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 auto 1.5rem auto;
    max-width: 90%;
    text-align: center;
    margin-left: 0;
  }

  .hero-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero {
   
    min-height: 60vh;
  }

  .hero-title {
    font-size: 3rem; /* ~28px */
    margin-bottom: 1rem;
  }
  .hero-break{
      display:none;
  }

  .hero p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-align:center;
    margin-left:20px;
  }

  .hero-btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

/* ===============================
   NAV & LINKS
================================= */
.right a {
  margin-left: 15px;
  text-decoration: none;
  color: #e5e7eb;
  font-size: 13px;
  transition: color 0.3s ease;
}

.right a:hover {
  color: #ffffff;
}

.right i {
  font-size: 16px;
}

/* ===============================
   ABOUT SECTION
================================= */
.about-section {
  min-height: 100vh;          
  display: flex;
  flex-direction: column;  
  justify-content: center;   
  align-items: center;      
  padding: 3rem 1.5rem;
  background: #fff;      
  text-align: center;
}

.about-text {
  max-width: 700px;
}

.about-text h2 {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: 900;
  color: #A54B27;
}

.about-text p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.about-btn{
  background: #A54B27;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

/* ===============================
   COLLECTIVE SECTION
================================= */
.collective-section {
  min-height: 100vh;          
  display: flex;
  flex-direction: column;   
  align-items: center;      
  text-align: center;
  padding: 3rem 1.5rem;
  background: #A54B27;
}

.collective-text {
  max-width: 700px;
}

.collective-text h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #FFF; 
  font-weight:900;
}

.collective-text p {
  color: #FFF;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ===============================
   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: 992px) {
  .about-section,
  .collective-section {
    padding: 2rem 1rem;
  }
}

@media (max-width: 768px) {
 
  
  /* About section */
  .about-text h2 {
    font-size: 3rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  /* Collective section */
  .collective-text h2 {
    font-size: 3rem;
  }

  .collective-text p {
    font-size: 0.95rem;
  }

  .collective-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  /* Nav */
  .nav-links {
    display: none;
  }
  .logo img {
    width: 15%;
  }
  .menu-btn {
    display: block;
    font-size: 30px;
  }
  .mobile-menu {
    padding: 5px 10px;
  }
  .mobile-menu.show {
    display: flex;
  }
  .mail {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 22px; }
}


/* Section */
.bif-section {
  padding: 1rem 1rem;
  text-align: center;
  background: #FFF;
}

.bif-heading {
  font-size: 3.5rem;
  font-weight: 900;
  color: #A54B27;   
  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;
 
  display: block;
  object-fit: cover;  
}

/* Responsive fixes */
@media (max-width: 768px) {
  .bif-heading {
    font-size: 2.5rem;
  }

  .bif-image-wrapper {
    border-radius: 12px;
  }

  .bif-image-wrapper img {
    width: 100%;       
    height: auto;     
    max-width: 100%;   
    border-radius: 8px;
    
    object-fit: contain;  
  }
}
.clients-section {
  min-height: 100vh;
  text-align: center;
  padding: 3rem 1rem;
  background: #f9fafb;
}

.clients-section h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: #A54B27 !important;
}

.clients-section p {
  color: #555;
  font-size: 1rem;
  padding: 0px 150px;
}

/* Slider Container */
.clients-slider {
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin-top: 100px;
}

/* 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: 3.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: #A54B27 !important;
}

.clients-section p {
  color: #555;
  margin-bottom: 2rem;
  font-size: 1rem;
  padding: 0px 150px;
}

.clients-slider {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden; /* MUST be hidden */
}

.clients-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.clients-track img {
  height: 80px;
  width: auto;
  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);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


@media (max-width: 768px) {
  .clients-section {
    padding: 2rem 1rem;
  }

  .clients-section h2 {
    font-size: 2rem;   /* ~32px */
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }

  .clients-section p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding: 0 1rem;   /* side spacing for smaller screens */
  }

  .clients-track {
    gap: 1rem;  /* reduce spacing between logos */
  }

  .clients-track img {
    height: 50px;
    max-width: 100px;
  }
}

@media (max-width: 768px) {
  .clients-section h2 {
    font-size: 3rem;  
  }

  .clients-section p {
    font-size: 0.95rem;
  }

  .clients-track img {
    height: 40px;
    max-width: 80px;
  }
}
.outcomes-section {
  min-height: 100vh;
  padding: 4rem 1rem;   
  background: #faf6f4;
}

/* Title */
.outcomes-section h2 { 
  text-align: center; 
  font-weight: 900;
  margin-bottom: 3.5rem; 
  font-size: 3.5rem; 
  color: #A54B27 !important;
}
.outcomes-section p{
    padding:0px 170px ;
    text-align: center;
    color:#555;
}

/* Card improvements */
.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: #fff;
  border-radius: 16px;       
  border: 1px solid #ddd;    
  padding: 2.5rem 2rem;     
  text-align: center;
  min-height: 280px;         
  box-shadow: 0 6px 16px rgba(0,0,0,0.08); 
  transition: transform 0.3s ease, background 0.3s ease;
}


.testimonial-card:hover {
  transform: translateY(-8px);
  background: #A54B27;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}


.testimonial-track {
  gap: 2rem; 
}

  /* Slider */
  .testimonial-slider {
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 10px auto;
  }

  .testimonial-track {
    display: flex;
    gap: 1.5rem;                 
    will-change: transform;
    transition: transform 0.5s ease-in-out; 
  }

  .testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: #fff;
    border-radius: 12px;
    border: 1px solid black;
    padding:2rem;
    text-align: center;
    min-height: 220px;
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
    background: #A54B27;
  }
  .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; 
  }

  .testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    margin-bottom: 0.5rem;
  }

  /* Nav buttons */
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
   
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    user-select: none;
  }
  .slider-btn.left { left: 10px; }
  .slider-btn.right { right: 10px; }
  .slider-btn:hover { background: rgba(0,0,0,0.8); }

 /* ===============================
   OUTCOMES SECTION - Mobile Fix
================================= */
@media (max-width: 768px) {
  .outcomes-section {
    padding: .2rem .2rem;
  }

  .outcomes-section h2 {
    font-size: 3rem;        /* smaller than desktop */
    line-height: 1.3;
    text-align: center;
    margin-bottom: 1rem;
    padding: 0 1rem;        /* side spacing */
  }

  .outcomes-section p {
    font-size: 0.95rem;
    line-height: 1.5;
    padding:0px 20px;
    text-align: center;
    max-width: 90%;
    margin: 0 auto 1.5rem auto;
    
  }
}

@media (max-width: 480px) {
  .outcomes-section h2 {
    font-size: 1.6rem;      /* even smaller for phones */
  }

  .outcomes-section p {
    font-size: 0.9rem;
  }
}

.footer {
  background: #071144;
  color: #A54B27;
  padding: 3rem 1rem 1.5rem;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 ;
}

.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
}

.footer-col p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #fff;
}

.footer-social a {
  display: inline-block;
  margin-right: 0.75rem;
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.3s;
}
.footer-social a:hover {
  color: #fff;
}

/* Useful Links */
.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #fff;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: #A54B27;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.6rem;
  border: none;
  border-radius: 6px;
  outline: none;
}
.newsletter-form button {
  padding: 0.6rem 1.2rem;
  border: none;
  background: #A54B27;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.newsletter-form button:hover {
  background: #671d00;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-social {
    margin-top: 1rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}



/* 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: #A54B27;
  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: #A54B27;
  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;  
  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;
}
