@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Poppins:wght@400;600;700;800&display=swap');

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Poppins', 'Inter', sans-serif;
  background-color: #fdfdfd;
  /* color: #222; */
  line-height: 1.7;
  font-size: 1rem;
  padding: 0 1rem;
}

html {
  scroll-behavior: smooth;
}


/* Headings - Cool, Big, and Stylish */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  /* color: #1a1a1a; */
  margin-bottom: 0.5em;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}

/* Paragraphs - Bolder and More Impactful */
p {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  /* color: #333; */
}

/* footer h1,h2,h3 ,h4,h5,h6,p {
  color: #ffffff !important;
} */

.header-bar {
  width: 100%;
  background-color: #840000;
  position: fixed;
  z-index: 9999;
}

/* Hide mobile header by default */
.mobile-header {
  display: none;
}

/* Hide side menu by default */
.side-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: white;
  z-index: 1000;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.side-menu.active {
  left: 0;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 35px;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
}

.mobile-nav-list {
  list-style: none;
  padding: 60px 20px 20px;
  margin: 0;
}

.mobile-nav-list li {
  margin-bottom: 15px;
}

.mobile-nav-list a {
  text-decoration: none;
  color: #ffffff;
  font-size: 25px;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background: #ffffff;
  position: relative;
}

.hamburger:before,
.hamburger:after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background: #ffffff;
  left: 0;
}

.hamburger:before {
  top: -8px;
}

.hamburger:after {
  bottom: -8px;
}

/* Show mobile header and hide desktop header on mobile */
@media (max-width: 768px) {
  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
  }

  /* Overlay when menu is open */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }

  .menu-overlay.active {
    display: block;
  }
}

/* Prevent horizontal scrolling and body shift when menu opens */


/* Add this to your existing side menu styles */
.side-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: rgb(128, 2, 2);
  z-index: 1000;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

/* Add this new style for the overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.menu-overlay.active {
  display: block;
}

/* Add this to prevent content shift when scrollbar appears/disappears */
/* @media (max-width: 768px) {
    html {
      margin-left: calc(100vw - 100%);
      margin-right: 0;
    }
  } */




.hero-heading {
  align-items: center;
  text-align: center;
  padding: 100px 20px;
}

.hero-heading h1 span {
  color: #840000;
}

.hero-heading p {
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.cta-button {
  background-color: #4a65d2;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
}

.hero-background {
  background-color: #7171716d;
}

.paddling-space {
  padding: 50px 20px;
}

.mission-vision {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 1rem;
  background: #f9f9ff;
}

.mission-vision > div {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  flex: 1 1 300px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.mission-vision > div:hover {
  transform: translateY(-8px);
}

@media (max-width: 767px) {
  .mission-vision > div {
    display: flex;
    flex-direction: column;
    align-items: center; /* centers children horizontally */
    text-align: center;  /* center text under image */
  }
/* For laptops and larger screens (min-width: 1024px) */
@media (min-width: 1024px) {
  .mission-vision img {
    width: 160px;
  }
}

}

   .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  margin: 0.5rem;
}

.cta-button:hover {
  background-color: #4338ca;
}


/* Reverse order on mobile */
@media (max-width: 767px) {
  .article-card {
    flex-direction: column-reverse !important; /* content above image */
  }

  .options{
    background-color: rgba(0, 0, 0, 0.08)!important;
  }
}


.mission-vision h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #1e1e50;
}

.mission-vision p {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}


  
    /* Founder Section */
    .founder-section {
      display: flex !important;
      flex-wrap: wrap !important;
      align-items: center !important;
      justify-content: space-between !important;
      padding: 4rem 2rem !important;
      background: #f9f9f9 !important;
    }

    .founder-info {
      flex: 1 !important;
      min-width: 300px !important;
      padding-right: 2rem !important;
    }

    .founder-info h2 {
      font-size: 2rem !important;
      margin-bottom: 0.5rem !important;
    }

    .founder-info h3 {
      color: #333 !important;
      font-weight: 600 !important;
      margin-bottom: 1rem !important;
    }

    .founder-summary p {
      margin-bottom: 1rem !important;
      font-size: 1rem !important;
      line-height: 1.6 !important;
    }

    .founder-image {
      flex: 1 !important;
      min-width: 300px !important;
      text-align: center !important;
    }

    .founder-image img {
      max-width: 100% !important;
      border-radius: 1rem !important;
    }

    /* Major Skills */
    .major-skills {
      display: flex !important;
      gap: 1rem !important;
      margin-top: 1rem !important;
      flex-wrap: wrap !important;
    }

    .major-skills p {
      background: #333 !important;
      color: #fff !important;
      padding: 0.5rem 1rem !important;
      border-radius: 1.5rem !important;
      font-size: 0.9rem !important;
    }

 


    /* Core Values */
    .business-values {
      background: #f2f2f2 !important;
      padding: 4rem 2rem !important;
    }

    .business-values h3 {
      text-align: center !important;
      font-size: 2rem !important;
      margin-bottom: 1rem !important;
    }

    .business-values-items {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 2rem !important;
      justify-content: center !important;
      margin-top: 2rem !important;
    }

    .values {
      background: #fff !important;
      padding: 2rem !important;
      border-radius: 1rem !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
      max-width: 300px !important;
    }

    .values h4 {
      color: #333 !important;
      margin-bottom: 0.5rem !important;
    }

    .values p {
      font-size: 0.95rem !important;
    }

    /* CTA Banner */
    .cta-banner-about {
      background: #840000 !important;
      color: #fff !important;
      padding: 3rem 2rem !important;
      text-align: center !important;
      margin-top: 4rem !important;
    }

    .cta-banner-about h2 {
      font-size: 2rem !important;
      margin-bottom: 1rem !important;
    }

    .cta-banner-about p {
      font-size: 1.1rem !important;
      max-width: 700px !important;
      margin: 0 auto !important;
    }

    /* Responsive */
    @media screen and (max-width: 768px) {

      .founder-section,
      .mission-vision {
        flex-direction: column !important;
      }

      .founder-info,
      .founder-image {
        padding: 0 !important;
      }

      .hero-heading h1 {
        font-size: 2.2rem !important;
      }

      .cta-banner-about h2 {
        font-size: 1.6rem !important;
      }
    }

    .external-article-preview {
      max-width: 1000px;
      margin: 4rem auto;
      padding: 1rem;
    }

    .article-card {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      overflow: hidden;
      background-color: #f9fafb;
      transition: box-shadow 0.3s ease;
    }

    .article-card:hover {
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .article-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .article-content {
      padding: 1rem;
      color: #1f2937;
    }

    .article-content h3 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
      color: #1e40af;
    }

    .article-content p {
      font-size: 1rem;
      color: #374151;
      margin-bottom: 1rem;
    }

    .read-more {
      color: #2563eb;
      font-weight: 600;
      font-size: 0.95rem;
    }

    @media (min-width: 768px) {
      .article-card {
        flex-direction: row;
      }

      .article-image {
        flex: 1;
        max-width: 300px;
      }

      .article-content {
        flex: 2;
        padding: 1.5rem;
      }
    }

@media (max-width: 768px) {

  /* .flex-items {
   display: block;
    margin: 0;
    padding: 0;
  } */
  .mission-vision,
  .options,
  .flex-items-title {
    margin: 0 20px;
    /* Less margin on small screens */
    flex-direction: column;
  }

  .service-list,
  .why-choose-us {
    flex-direction: column;
    align-items: center;
  }

  .box-item,
  .stat-item,
  .why-choose-us-content,
  .why-choose-us-image {
    width: 100%;
    max-width: 100%;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero-content {
    align-items: center;
  }

  .hero-image img {
    max-width: 80%;
  }

  .stats-container {
    flex-direction: column;
    gap: 30px;
  }
}


html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

footer {
  padding-bottom: 5%;
}

/* home page */


/* main{} */


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #840000;
  max-width: 1200px;
  margin: 0 auto;
  /* ✅ Centers the header */
  padding: 20px;
  /* Optional: Add spacing inside */
}

.logo-main img {
  height: 70px;
  width: auto;
}

.nav-list {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
}

.nav-list li {
  margin: 0 15px;
}

.nav-list li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
}

/*hero section*/
.hero-container {
  /* background-color: #3a55b2; */
  height: 80vh;
  position: relative;
  overflow: hidden;
}

.container-divider {
  padding-top: 50px;
  padding-bottom: 50px;
}

.hero-container {
  position: relative;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero {
  position: relative;
  z-index: 1;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
  max-width: 1200px;
  /* Optional: Set container limit */
  margin: 0 auto;
  /* Center the whole block */
  gap: 40px;
  /* Optional: space between image and content */
}

.hero-content {
  flex: 1;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  /* Control how big image can get */
  height: auto;
  border-radius: 10px;
}


.hero-title {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 10px;
}

.hero-title span {
  color: #4a65d2;
}

.hero-description {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-hero {
  display: flex;
  gap: 10px;
}

.cta-button {
  background-color: #4a65d2;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: #3a55b2;
}

/* Stats Section */
.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: whitesmoke;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 20px;
}


.stat-item {
  text-align: center;
  align-items: center;
  max-width: 400px;
  color: #840000 !important;
  font-size: large;
}

.stat-item h2{
  color: #840000 !important;
}
.stat-item p{
  color: #840000 !important;
}

.services h2{
  color: #222 !important;
}

.services p {
  max-width: 900px;
  color: #222;
}

.service-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  align-items: center;
}

.box-item {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 200px;
  transition: transform 0.3s ease;
}

.box-item:hover {
  transform: translateY(-5px);
}

.service-item p{
  color: #840000 !important;
}

.service-item img {
  width: auto;
  height: 200px;
  margin-bottom: 15px;
}

.box-item h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  font-weight: 700;
  color: #111 !important;
}

.box-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}



.flex-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px 10px 0px 10px;
}

.flex-images {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
}

.why-choose-us {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  flex-wrap: wrap;
}



.why-choose-us-container{
  background-color: rgba(0, 0, 0, 0.5);
}



.why-choose-us-content {
  flex: 1;
  min-width: 300px;
}

.why-choose-us-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-choose-us-description h3 {
  font-size: large;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.why-choose-us-description h3::before {
  content: ">";
  margin-right: 10px;
  font-size: 1rem;
}


.why-choose-us-description p {
  margin: 0 0 10px 30px;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.5;
}

.why-choose-us-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.why-choose-us-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}


.flex-items-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0px 10px 0px 10px;
}

.cta-banner {
  background-color: #840000;
  
}

.cta-banner-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  color: black;
}

.cta-banner p{
  color: #ffffff !important;
}

footer {
  background-color: #0F1624;
  color: #ffffff;
  font-family: Arial, sans-serif;
  padding-top: 40px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 10px;
}

.footer-logo p {
  margin: 5px 0;
  font-size: 0.95rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-list a:hover {
  text-decoration: underline;
  color: #d1d1d1;
}

.hr-line {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.hr-line hr {
  border: none;
  border-top: 1px solid #383745;
}

/* Optional: social links styling */
.socials a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 8px;
  font-size: 0.9rem;
}

.socials a:hover {
  color: #d1d1d1;
}

.copy-right {
  text-align: center;
}


/* <!-- about page styles --> */
/* about page */


.founder-section {
  color: #000000;
}

/* .founder-info {
      max-width: 600px;
      margin: 0 auto;
    } */

@media screen and (max-width: 768px) {
  .flex-items {
    flex-direction: column;
    align-items: center;


  }

  .flex-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 15px 20px 15px;
  }

  .flex-items p {
    text-align: justify;
    width: 100%;
  }

  /* .founder-info,
        .founder-image {
          width: 100%;
          text-align: center;
        } */

  /* .founder-image img {
          max-width: 100%;
          height: auto;
        } */
}

/* .founder-image img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      } */

/* .objectives {
        padding: 50px 20px;

      } */

.objectives h2.our-story {
  text-align: center;
  margin: 20px 0;
  font-size: 1.5rem;
}

.objectives p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  padding: 50px 20px
}
  
.business-values h3 {
  text-align: center;
}

.business-values p {
  text-align: center;
}

.mission-vision {
  text-align: center;
  gap: 20px;
}

.mission-vision div {
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  max-width: 600px;
  /* Remove margin: 0 auto */
}

/* .our-vision {
  background: linear-gradient(to right, #312e81, #4338ca, #6366f1);

}

.our-mission {
  background: linear-gradient(to left, #312e81, #4338ca, #6366f1);
} */

/* .our-mission img {
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.our-vision img {
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
} */

.values {
  margin-right: 20px;
  background-color: #c9cacc;
  border-radius: 20px;
  ;
}

.objectives {
  background-color: #ffffff;
  color: #000000;
}

.cta-banner-about {
  background-color: #7171716d;
  color: #000000;
}


.service-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}



.box-item:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.box-item h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  font-weight: 700;
  color: #111;
}


.flex-images {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
}



.why-choose-us-content {
  flex: 1;
  min-width: 300px;
}

.why-choose-us-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-choose-us-description h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  color: #111;
}



.why-choose-us-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  height: 500px;
  width: auto;
}

.why-choose-us-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}




.cta-banner-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}






/* <!-- contact page styles --> */
/* contact page */

/* Contact Options Section */
.contact-options {
  display: flex;
  justify-content: center; /* center entire section */
  padding: 2rem;
}

.contact-options-items {
  display: flex;
  flex-wrap: wrap; /* wrap on smaller screens */
  justify-content: center; /* center horizontally */
  gap: 2rem; /* space between cards */
  max-width: 1200px; /* keep section from stretching too wide */
}

/* Each contact option card */
.options {
  background-color: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex: 1 1 250px;
  max-width: 280px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;

  /* NEW: Wrap long text */
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}


/* Contact icons inside cards */
.options .contact-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

/* Hover effect */
.options:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive tweak for small screens */
@media (max-width: 600px) {
  .options {
    flex: 1 1 100%; /* stack full width on small devices */
    max-width: none;
  }
}

@media only screen and (min-width: 1024px) {
 .hero-index{padding-top: 10%;}
}

@media only screen and (min-width: 1440px) {
  .hero-index{padding-top: 10%;}
}
