/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

/* LOGO */
.logo img {
  height: 65px;
}

/* NAV */
.navbar-list {
  display: flex;
  gap: 25px;
  list-style: none;
}

.navbar-list a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.navbar-list a:hover {
  color: #ff5a3c;
}

/* RIGHT SIDE */
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* BUTTON */
.btn {
  background: #ff5a3c;
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
}

/* MENU BUTTON */
.menu-btn {
  font-size: 24px;
  cursor: pointer;
  display: none;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  padding: 20px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  margin-bottom: 15px;
}

.mobile-menu a {
  text-decoration: none;
  color: #333;
}

/* ===== RESPONSIVE ===== */

/* Desktop pe mobile button hide */
.mobile-btn {
  display: none;
}

/* Desktop button normal */
.desktop-btn {
  display: inline-block;
}


/* ===== HERO ===== */
.hero {
  padding: 60px 0;
  background: #f9fbff;
}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.hero-content {
  flex: 1;
}

.hero-subtitle {
  color: #ff5a3c;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.hero-text {
  color: #666;
  margin-bottom: 25px;
}

.hero-btn {
  padding: 12px 24px;
}

/* RIGHT */
.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 15px;
}


#typing-text::after {
  content: "|";
  margin-left: 5px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}



.about-section {
  padding: 80px 0;
}

.about-subtitle {
  text-align: center;
  color:  #0d3b8e; 
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 35px;
  letter-spacing: 1px;
  padding-left: 50%;

}

/* LAYOUT */
.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* IMAGE */
.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
}

/* CONTENT */
.about-content {
  max-width: 550px;
}

.about-content h2 {
  font-size: 34px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* FEATURES GRID */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

/* FEATURE BOX STYLE UPGRADE */
.feature-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8f9fb;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 14px;
  transition: 0.3s;
}

/* ICON STYLE */
.feature-box ion-icon {
  font-size: 20px;
  color: #ff5a3c;
}

/* HOVER EFFECT (premium feel) */
.feature-box:hover {
  background: #fff3ef;
  transform: translateY(-2px);
}

/* CALLOUT */
.about-callout {
  background: #fff3ef;
  padding: 15px;
  border-radius: 10px;
  color: #ff5a3c;
  margin-bottom: 20px;
}

/* BUTTON */
.about-btn {
  background: #ff5a3c;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
}

/* ===== MODAL ===== */

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.6);

  justify-content: center;
  align-items: center;

  padding: 20px;
}

.modal-content {
  background: #fff;
  width: 100%;
  max-width: 450px;

  padding: 30px;
  border-radius: 20px;

  position: relative;

  animation: popup 0.3s ease;
}

@keyframes popup {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;

  font-size: 28px;
  cursor: pointer;
  color: #333;
}

.modal-title {
  margin-bottom: 20px;
  color: #0d3b8e;
  text-align: center;
}

.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 12px;

  border: 1px solid #ddd;
  border-radius: 10px;

  outline: none;
  font-size: 14px;
}

.modal-content textarea {
  height: 120px;
  resize: none;
}

.submit-btn {
  background: #ff5a3c;
  color: white;

  border: none;
  padding: 12px;

  border-radius: 30px;
  cursor: pointer;

  font-size: 15px;
}


/* ===== FOUNDERS SECTION ===== */

.founders-section {
  padding: 90px 0;
  background: #f9fbff;
}

.founders-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* SUBTITLE */
.founders-subtitle {
  color: #0d3b8e;
  font-size: 34px;
  font-weight: 700;

  text-align: center;

  margin-bottom: 18px;
}

/* TITLE */
.founders-title {
  font-size: 42px;
  text-align: center;
  line-height: 1.3;

  max-width: 750px;
  margin: auto;

  color: #111;

  margin-bottom: 20px;
}

/* TEXT */
.founders-text {
  text-align: center;
  color: #666;

  max-width: 750px;
  margin: auto;

  line-height: 1.8;

  margin-bottom: 60px;
}

/* WRAPPER */
.founders-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;

}

/* CARD */
.founder-card {
  flex: 0 0 340px;
  width: 100%; 
  background: white;
  max-width: 340px;
  border-radius: 20px;
  margin: 0;
  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);

  transition: 0.3s;
}

.founder-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.founder-image {
  height: 420px;
  overflow: hidden;
  padding: 20px 20px 0;
}

.founder-image img {
  width: 100%;
  height: 430px;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  transition: 0.5s;
  display: block;
  background: #f5f7fb;
}

.founder-card:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.founder-content {
  padding: 20px;
}

.founder-role {
  display: inline-block;

  background: #edf3ff;
  color: #0d3b8e;

  padding: 8px 16px;

  border-radius: 30px;

  font-size: 14px;
  font-weight: 700;

  margin-bottom: 18px;
}

.founder-content h3 {
  font-size: 24px;
  margin-bottom: 15px;

  color: #111;
}

.founder-content p {
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}

.leaders-section {
  padding: 140px 0 100px;;
  background: #ffffff;
  overflow: hidden;
  margin-top: 0px;
}

.leaders-subtitle {
  text-align: center;
  color: #0d3b8e;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.leaders-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: #111;
}

.leaders-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.leaders-track {
  display: flex;
  gap: 30px;
  width: max-content;

  animation: scrollLeaders 25s linear infinite;
}

/* AUTO SLIDE */

@keyframes scrollLeaders {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* CARD */

.leader-card {
  width: 320px;
  flex-shrink: 0;

  background: #fff;

  border-radius: 24px;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  transition: 0.3s;
}

.leader-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */

.leader-image {
  height: 360px;
  overflow: hidden;
}

.leader-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top;

  display: block;

  transition: 0.5s;
}

.leader-card:hover img {
  transform: scale(1.05);
}

/* CONTENT */

.leader-content {
  padding: 25px;
  text-align: center;
}

.leader-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #111;
}

.leader-content p {
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}

/* ===== AWARDS SECTION ===== */

.awards-section {

  padding: 120px 0;

  background: #f8f9fc;
}

/* SUBTITLE */

.awards-subtitle {

  text-align: center;

  color: #0d3b8e;

  font-size: 34px;

  font-weight: 700;

  margin-bottom: 18px;
}

/* TITLE */

.awards-title {

  text-align: center;

  font-size: 46px;

  margin-bottom: 60px;

  color: #111;
}

/* SLIDER */

.awards-slider {

  position: relative;

  width: 100%;

  max-width: 900px;

  height: 450px;

  margin: auto;

  border-radius: 30px;

  overflow: hidden;

  box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

/* SLIDE */

.award-slide {

  position: absolute;

  width: 100%;

  height: 100%;

  opacity: 0;

  transition: opacity 1s ease;
}

.award-slide.active {

  opacity: 1;

  z-index: 2;
}

/* IMAGE */

.award-slide img {

  width: 100%;

  height: 100%;

  object-fit: contain;

  background: #fff;

  display: block;
}

/* OVERLAY */

.award-overlay {

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  padding: 40px;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.2),
    transparent
  );

  color: #fff;
}

.award-overlay h3 {

  font-size: 36px;

  margin-bottom: 15px;
}

.award-overlay p {

  font-size: 17px;

  line-height: 1.7;

  max-width: 700px;
}

/* ===== PROJECTS SECTION ===== */

/* ===== PROJECTS SECTION ===== */


.projects-section {

  padding: 120px 0;

  background: #ffffff;

  overflow: hidden;
}

/* SUBTITLE */

.projects-subtitle {

  text-align: center;

  color: #0d3b8e;

  font-size: 34px;

  font-weight: 700;

  margin-bottom: 15px;
}

/* TITLE */

.projects-title {

  text-align: center;

  font-size: 46px;

  color: #111;

  margin-bottom: 70px;
}

/* SLIDER */

.projects-slider {

  width: 100%;
  overflow: hidden;
  position: relative;
  overflow-x: auto;

  scrollbar-width: none;
}

.projects-slider::-webkit-scrollbar {

  display: none;
}

/* TRACK */

.projects-track {

  display: flex;
  gap: 25px;
  width: max-content;
  transition: transform 0.5s ease;
  padding-bottom: 10px;
  align-items: stretch;
  
}

/* CARD */

.project-card {
  width: 360px;
  min-width: 360px;
  
  background: #fff;
  border-radius: 18px;

  overflow: hidden;
  display: flex;
  flex-direction: column;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);

  transition: 0.4s;
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}


.project-card:hover {

  transform: translateY(-10px);
}

/* IMAGE */

.project-image {

  width: 100%;

  height: 220px;

  overflow: hidden;
}

.project-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.5s;
}

.project-card:hover img {

  transform: scale(1.08);
}

/* CONTENT */

.project-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px;
}

.project-content h3 {

  font-size: 22px;

  margin-bottom: 10px;

  color: #111;
}

.project-content p {

  color: #666;

  line-height: 1.7;

  font-size: 15px;

  margin-bottom: 15px;
}

/* BUTTON */

.project-btn {

  background: #ff5a3c;

  color: #fff;

  border: none;

  padding: 12px 24px;

  border-radius: 30px;
  margin-top: auto;
  font-size: 14px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.project-btn:hover {

  background: #0d3b8e;
}
/* ===== FOOTER ===== */

.footer {

  background: #0d1b3f;

  color: #fff;

  padding-top: 80px;
}

/* TOP */

.footer-top {

  display: flex;

  justify-content: space-between;

  gap: 60px;

  padding-bottom: 50px;

  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* BRAND */

.footer-brand {

  flex: 1;
}

.footer-brand img {

  width: 180px;

  margin-bottom: 25px;

  border-radius: 10px;
}

.footer-brand p {

  color: rgba(255,255,255,0.75);

  line-height: 1.8;

  max-width: 320px;
}

/* LINKS */

.footer-links {

  flex: 1;
}

.footer-links h3,
.footer-contact h3 {

  font-size: 24px;

  margin-bottom: 25px;
}

.footer-links ul {

  list-style: none;
}

.footer-links li {

  margin-bottom: 15px;
}

.footer-links a {

  color: rgba(255,255,255,0.75);

  text-decoration: none;

  transition: 0.3s;
}

.footer-links a:hover {

  color: #ff5a3c;
}

/* CONTACT */

.footer-contact {

  flex: 1;
}

.footer-contact p {

  color: rgba(255,255,255,0.75);

  line-height: 1.8;

  margin-bottom: 20px;
}

.footer-contact a {

  display: block;

  color: rgba(255,255,255,0.75);

  text-decoration: none;

  margin-bottom: 15px;

  transition: 0.3s;
}

.footer-contact a:hover {

  color: #ff5a3c;
}

/* BUTTON */

.footer-btn {

  margin-top: 15px;

  background: #ff5a3c;

  color: #fff;

  border: none;

  padding: 14px 28px;

  border-radius: 30px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.3s;
}

.footer-btn:hover {

  background: #fff;

  color: #0d1b3f;
}

/* BOTTOM */

.footer-bottom {

  text-align: center;

  padding: 25px 0;

  color: rgba(255,255,255,0.65);

  font-size: 14px;
}

/* FOOTER CONTACT ICONS */

.footer-contact-item {

  display: flex;

  align-items: flex-start;

  gap: 12px;

  margin-bottom: 18px;
}

.footer-contact-item ion-icon {

  font-size: 22px;

  color: #ff5a3c;

  flex-shrink: 0;

  margin-top: 2px;
}

.footer-contact-item p,

.footer-contact-item a {

  margin: 0;

  color: rgba(255,255,255,0.75);

  line-height: 1.7;

  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 50%;
  transform: translateY(50%);
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(50%) scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}


.instagram-float {
  position: fixed;
  right: 20px;
  bottom: calc(50% - 95px);;
  width: 60px;
  height: 60px;
  background: #E1306C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: 0.3s ease;
}

.instagram-float:hover {
  transform: scale(1.1);
}

.instagram-float img {
  width: 35px;
  height: 35px;
}




/* ===== MOBILE RESPONSIVE (ALL-IN-ONE) ===== */
@media (max-width: 768px) {

    .btn {
    padding: 6px 12px;
    font-size: 12px;
  }
 

  /* NAV hide */
  .navbar {
    display: none;
  }

  /* MENU BUTTON */
  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    background: #0d3b8e; /* dark blue */
    color: #fff;

    border-radius: 10px;
    font-size: 22px;
    cursor: pointer;

    padding: 0;          /* IMPORTANT */
    line-height: 1;      /* IMPORTANT */

  }


  .menu-btn span {
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

  /* BUTTON CONTROL */
  .desktop-btn {
    display: none;
  }

  .mobile-btn {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  /* ALIGNMENT FIX */
  .header-flex {
    position: relative;
    justify-content: space-between;
  }

  .consultation-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .header-right {
    gap: 10px;
  }

  /* LOGO SIZE */
  .logo img {
    height: 55px;
  }

   .hero-flex {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-image img {
    margin-top: 20px;
  }


   .about-section .container {
    display: flex;
    flex-direction: column;
  }


   .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    max-width: 100%;
    order: 2;
    text-align: center;
  }
  
  .about-image {
    order: 1;
  }

  .about-subtitle {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
  padding-left: 0;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

   .founders-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
  }

  .founder-card {
    overflow: visible;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    height: auto;
  }
  
  .founders-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .founders-title {
    font-size: 30px;
  }

  .founders-subtitle {
    font-size: 28px;
  }

  .founder-image {
  height: auto;
  padding: 15px;
  background: #f5f7fb;
  padding-bottom: 10px;
  overflow: visible;
  }

  .founder-image img {
    width: 100%;
    height: auto !important;
    display: block;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
  }

   .founder-content {
    text-align: center;
    display: block;
    padding: 20px 15px;
    background: #fff;
  }

  .founder-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .founder-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .leaders-section {
    padding: 80px 0;
  }

  .leaders-subtitle {
    font-size: 28px;
  }

  .leaders-title {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .leaders-track {
    gap: 20px;
  }

  .leader-card {
    width: 270px;
  }

  .leader-image {
    height: 300px;
  }

  .leader-content {
    padding: 20px;
  }

  .leader-content h3 {
    font-size: 20px;
  }

  .leader-content p {
    font-size: 14px;
  }

   .awards-section {

    padding: 90px 0;
  }

  .awards-subtitle {

    font-size: 28px;
  }

  .awards-title {

    font-size: 34px;

    margin-bottom: 40px;
  }

  .awards-slider {

    height: 340px;

    border-radius: 20px;
  }

  .award-slide img {

    object-fit: contain;
  }

  .award-overlay {

    padding: 20px;
  }

  .award-overlay h3 {

    font-size: 22px;

    margin-bottom: 10px;
  }

  .award-overlay p {

    font-size: 14px;

    line-height: 1.5;
  }

  .projects-section {

    padding: 90px 0;
  }

  .projects-subtitle {

    font-size: 28px;
  }

  .projects-title {

    font-size: 34px;

    margin-bottom: 45px;
  }

  .projects-track {
    transition: transform 0.5s ease;
    gap: 20px;
    display: flex;
    width: max-content;
    padding-left: 0px;
    padding: 10px;
  }

  .project-card {

    width: 360px;
    min-width: 360px;
    margin: 0;
    scroll-snap-align: center;
    border-radius: 22px;
  }

  .project-image {

    height: 200px;
  }

  .project-content {

    padding: 18px;
    text-align: center;
  }

  .project-content h3 {

    font-size: 20px;
  }

  .project-content p {

    font-size: 14px;

    line-height: 1.6;
  }

  .projects-slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  position: relative;
}

  .project-btn {

    width: 100%;
  }

   .project-content .btn-link,
  .project-content button {
    display: inline-block;
    margin-top: 10px;
  }

  .footer {

    padding-top: 60px;
  }

  .footer-top {

    flex-direction: column;

    gap: 45px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    max-width: 320px;
    margin: 0 auto;
    /*text-align: center;*/
  }

  .footer-brand p {

    margin: auto;
  }

  .footer-brand img {

    margin: 0 auto 20px;
    display: block;
  }

  .footer-links ul {
    text-align: center;
    padding: 0;
  }

  .footer-btn {

    width: 100%;
  }

  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
    margin-bottom: 20px;
  }

  .footer-contact-item ion-icon {
    min-width: 22px;
    margin-top: 4px;
  }
  
  .footer-contact h3 {
  text-align: center !important;
  }
  

}


@media (min-width: 769px) {

  .projects-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: projectScroll 25s linear infinite;
  }

  @keyframes projectScroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

}