@charset "utf-8";
/* CSS Document */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
	overflow-x: hidden;	
	padding-bottom: 100px;
}
.my-navbar {
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1030;
}

/* Scrolled state: White background + shadow */
.my-navbar.navbar-scrolled {
  background-color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Top Bar */
.top-bar {
  background-color: #E9701F; 
  color: white;
  position: sticky;
  top: 0;
  z-index: 9999;
}

@media (max-width: 767px) {
  .top-bar {
    position: relative; /* behaves like normal block element */
    top: auto;
  }

  .top-bar span {
    font-size: 12px; /* smaller font size for email text */
  }
}

@media (max-width: 425px) {
  .top-bar {
    flex-direction: column;  /* stack email & icons */
    align-items: flex-start; /* align left */
    gap: 5px; /* small spacing between rows */
  }

  .top-bar span {
    font-size: 12px;  /* smaller email text */
  }

  .top-bar .d-flex.align-items-center.gap-3 a img {
    height: 16px; /* smaller icons */
  }

  .top-bar .d-flex.align-items-center.gap-3 {
    gap: 8px; /* reduce gap between icons */
  }
}






.ai-logo {
  height: 50px;        
  width: auto;        
  max-width: 100%;  
}

@media (max-width: 576px) {
  .ai-logo {
    height: 35px;
  }
}




/* Hide menu on mobile by default */
.menu-container {
  display: flex;
}

.hamburger {
  font-size: 28px;
  cursor: pointer;
  display: none;
}

@media (max-width: 992px) {
  .hamburger {
    display: block;
  }

  .menu-container {
    display: none;
    width: 100%;
  }

  .menu {
    flex-direction: column;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 10px;
  }

  .menu-item {
    padding: 8px 0;
    text-align: center;
    width: 100%;
  }

  .btn-contact {
    width: 100%;
    text-align: center;
  }
}

/* Show menu when active */
.menu-container.active {
  display: flex;
  flex-direction: column;
}





.main-header {
  background-color: #fff;
  position: sticky;
  top: 40px; /* match top-bar height for large screens */
  z-index: 9998;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}


@media (max-width: 767px) {
  .main-header {
    top: 0; /* no gap when top-bar scrolls away */
  }
}


.ai-logo {
  height: 50px;  
  width: auto;
}

@media (max-width: 576px) {

  .main-header > .d-flex.align-items-center {
    min-width: 0;
    gap: .5rem !important;           
  }

 
  .main-header > .d-flex.align-items-center img:first-child {
    height: 30px !important;
    width: auto !important;
    max-width: 42vw;                  /* never wider than 42% of screen */
  }

  /* 2) AI logo */
  .main-header .ai-logo {
    height: 20px;
    width: auto;
    max-width: 42vw;
    object-fit: contain;
    display: block;
  }
}

@media (max-width: 425px) {
  /* First (CMPL) logo */
  .main-header > .d-flex.align-items-center img:first-child {
    height: 26px !important;  /* consistent height */
    width: auto !important;
    max-width: 40vw;
  }

  /* AI logo */
  .main-header .ai-logo {
    height: 26px;             /* same height as CMPL logo */
    width: auto;
    max-width: 28vw;          /* narrower so it looks equal */
    object-fit: contain;
  }
}

.menu {
      background-color: #f8f9fa;
    }
.menu-item {
      color: #000;
      text-decoration: none;
      font-weight: 500;
    }
.menu-item:hover,
    .menu-item.active {
      color: #E9701F;
    }





.top-bar .social-icons a {
  margin-left: 12px;
}
.social-icons img {
  width: 24px;   
  height: 24px;
}

/* Base styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: white;
  position: fixed;
	z-index: 1000;

}

/* Navbar layout */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 50px;
  background-color: white;
  position: relative;
  flex-wrap: wrap;
}
.navbar-nav .nav-link.active {
  background-color: #fbb383;
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: bold;
}
.btn-primary {
  background-color: #E9701F;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  box-shadow: 4px 4px 0px #222;
  transition: all 0.2s ease;
  color: white;
}

.btn-primary:hover {
  box-shadow: 2px 2px 0px #222;
  transform: translate(2px, 2px);
  background-color: #E9701F; /* same to keep it flat */
  color: white;
}
/* Logo */
.logo img {
  height: 50px;
  object-fit: contain;
}

/* Nav menu in pill shape */
.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  background-color: #fbb383;
  padding: 10px 40px;
  border-radius: 50px;
}

.nav-menu li a {
  text-decoration: none;
  color: #222;
  font-size: 1rem;
  font-weight: 400;
}

.nav-menu li a.active {
  font-weight: 700;
}

/* Contact button */
.btn-contact {
  background-color: #E9701F;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  box-shadow: 4px 4px 0px #222;
  text-decoration: none;
  font-weight: 500;
	 border: 1px solid #1e1e1e;
}

/* Hamburger (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 10px; /* space between logos */
}

.main-logo {
  height: 50px;
}

.gif-logo {
  height: 40px; /* adjust size as needed */
}


@media (max-width: 768px) {
  .gif-logo {
    display: none;
  }
}





/* Responsive layout */
@media (max-width: 768px) {
  .main-nav {
    position: static;
    transform: none;
    width: 100%;
    display: none;
  }

  .navbar.open .main-nav {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .btn-contact {
    margin-left: auto;
    margin-top: 10px;
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

/
.btn-contact {
  background-color: #E9701F;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
	border: 1px solid #1e1e1e;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 4px 4px 0px #1e1e1e;
  transition: all 0.2s ease;
  position: relative;
  top: 0;
}
.btn-contact:hover {
  box-shadow: none;
  top: 4px;
  background-color: #d9571d; /* Slightly darker shade for press effect */
}
/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 40px;
  background-image: url('assets/bg.png');  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #1e1e1e;
}

.hero-left {
  max-width: 50%;
  margin-left: 80px;
}

.hero-left h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero-left .highlight {
  color: #E9701F;
  font-weight: bold;
}

.hero-left p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.hero-buttons a {
  display: inline-block;
  margin-right: 15px;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  top: 0;
}

.btn-outline {
  border: 1px solid #1e1e1e;
  color: #1e1e1e;
  background-color: white;
  box-shadow: 4px 4px 0px #1e1e1e;
}

.btn-solid {
  background-color: #E66B1A;
  color: white;
  padding: 10px 24px;
  border-radius: 25px;
  box-shadow: 2px 2px 0 black;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.btn-solid:hover {
  background-color: #cf5e17;
}

.btn-outline:hover,
.btn-solid:hover {
  box-shadow: none;
  top: 4px; /* simulates button being pressed */
}

.btn-solid:hover {
  background-color: #d9571d;
}

.btn-outline:hover {
  background-color: #f0f0f0;
}

/* Image Section */
.hero-right .image-wrapper {
  position: relative;
}

.hero-right img {
  width: 340px;
  border-radius: 12px;
  margin-right: 80px;
}

/* =========================
   RESPONSIVE STYLES
   ========================= */

/* Tablet: Stack content vertically, center align */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .hero-left {
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }

  .hero-right img {
    margin-right: 0;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
}

/* Mobile: Reduce font sizes and spacing */
@media (max-width: 576px) {
  .hero-left h1 {
    font-size: 2rem;
  }

  .hero-left p {
    font-size: 1rem;
  }

  .hero-right img {
    width: 100%;
    max-width: 300px;
  }
}

.serviceshero-right img {
  width: 400px;
  border-radius: 12px;
	margin-right: 80px;
  
}
.card {
  position: absolute;
  background: white;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
}
.card span {
  font-size: 0.9rem;
  font-weight: normal;
  color: #5b5b5b;
}
.clients {
  top: 80%;
  left: -40px;
  transform: rotate(-8deg);
}
.reviews {
  top: 65%;
  right: -40px;
  transform: rotate(8deg);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 30px 20px;
  }
  .hero-left, .hero-right {
    max-width: 100%;
    text-align: center;
  }
  .hero-buttons a {
    display: block;
    margin: 10px auto;
  }
}
.hero-heading {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; 
  align-items: center;
  gap: .4ch;
}


@media (max-width: 991px) {
  .hero-heading {
    text-align: center;
    justify-content: center;
  }
}

.hero-heading .scroll-container{ display: inline-flex; }
.hero-heading .scroll-inner{ display: inline-flex; }
.hero-heading .scroll-content{ display: inline-flex; }
.hero-heading .highlight{ display: inline-block; }

.scroll-container {
  background: white;
  padding: 6px 20px;
  border-radius: 10px;
  border: 1px solid #1e1e1e;
  box-shadow: 4px 4px 0px #1e1e1e;
  height: 56px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}
.scroll-inner {
  height: 56px;
  overflow: hidden;
  position: relative;
}


.scroll-content {
  display: flex;
  flex-direction: column;
  animation: scrollWords 6s infinite;
}

.scroll-content span {
  height: 56px; 
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: #E9701F;
	 line-height: 56px;
}
.scroll-box {
  background: white;
  padding: 4px 12px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}


.scroll-words {
  display: flex;
  flex-direction: column;
  animation: scrollUp 10s linear infinite;
}

.scroll-words span {
  line-height: 56px;
  height: 56px;
}

.navbar-transparent {
  background-color: transparent !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1030;
}


.navbar-scrolled {
  background-color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}




@keyframes scrollWords {
  0%, 8.33%   { transform: translateY(0); }
  16.66%, 25% { transform: translateY(-56px); }
  33.33%, 41.66% { transform: translateY(-112px); }
  50%, 58.33% { transform: translateY(-168px); }
  66.66%, 75% { transform: translateY(-224px); }
  83.33%, 91.66% { transform: translateY(-280px); }
  100% { transform: translateY(-336px); }
}
.scroll-container:hover .scroll-content {
  animation-play-state: paused;
}
.scroll-words::after {
  content: 'Value-Driven Scalable Secure AI-Powered Intelligent';
  display: block;
  color: transparent;
  height: 0;
  overflow: hidden;
}

.who-we-are {
  text-align: center;
  padding: 30px 30px;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.heading-wrapper {
  background: url('assets/plus-pattern.png') center center no-repeat;
  background-size: cover;
  padding: 31px 20px;
	display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

/* Title styling */
.section-title {
 background: white;
  border: 1px solid #1e1e1e;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 6px 6px 0 #1e1e1e;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(to right, #1e90ff, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	
}

/* Paragraph styling */
.section-description {
  max-width: 1040px;
  margin: 0 auto 40px auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #1e1e1e;
	text-align: center;
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 2rem;
}

/* Button styling */
.know-more-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background-color: #E9701F;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 5px 5px 0px #1e1e1e;
  transition: all 0.2s ease;
	 border: 1px solid #1e1e1e;
}

.know-more-btn:hover {
  box-shadow: 2px 2px 0px #222;
  transform: translate(2px, 2px);
}

.whom-we-serve {
  position: relative;
  padding: 80px 20px;
  background-color: #fff;
  z-index: 1;
  overflow: hidden;
}

.background-logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
  z-index: 0;
}

.background-logo {
  max-width: 80vw;
  height: auto;
  animation: rotateLogo 60s linear infinite;
}

@keyframes rotateLogo {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.section-title {
  font-size: 36px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(to right, #2F80ED, #9B51E0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  text-align: center;
  color: #333;
  font-size: 18px;
  margin-bottom: 50px;
  z-index: 2;
  position: relative;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  z-index: 2;
  position: relative;
}

.card {
  perspective: 1000px;
}

.card-inner {
  width: 100%;
  height: 250px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  position: relative;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-front {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 20px;
  text-align: center;
}

.card-back {
  background-color: #fff;
  color: #333;
  transform: rotateY(180deg);
  padding: 20px;
  font-size: 0.95rem;
 
}

.card-back ul {
  padding-left: 18px;
  list-style-type: disc;
}
@keyframes rotateLogo {
  0%   { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.card-flip:hover .flip-inner {
  transform: rotateY(180deg);
}

.card-flip ul {
  padding-left: 1rem;
  margin: 0;
}
.card-flip li::before {
  content: "\2022";
  color: #E75E02;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}



.features-section {
  padding: 30px 30px;
  background-color: #fff;
}

.features-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.features-container::-webkit-scrollbar {
  height: 8px;
}
.features-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}





.feature-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 24px 24px 32px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);

  /* Gradient border using background-clip technique */
  border: 2px solid transparent;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(to bottom, #6D28D9, #6D28D9 60%, #ffffff);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  /* Custom corners with clip-path for unique shape */
  clip-path: path("M0,24 Q0,0 24,0 H276 Q300,0 300,24 V276 Q300,300 276,300 H24 Q0,300 0,276 Z");
}

.feature-card h3 {
  font-size: 18px;
  color: #6D28D9;
  margin-top: 32px;
  font-weight: bold;
}

.feature-card p {
  font-size: 14.5px;
  color: #333;
  margin-top: 10px;
}

.icon-circle {
  position: absolute;
  top: -22px;
  right: -22px;
  background-color: #F97316;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 2;
}

.icon-circle img {
  width: 20px;
  height: 20px;
}




.card-section {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  background: #fff;
}

.custom-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background-color: #fff;
  padding: 24px;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(to bottom, #6A5BFF, #BA38D0, #ffffff);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.custom-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  background: linear-gradient(to right, #4D6EFF, #A057FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.custom-card p {
  font-size: 1.05rem;
  color: #222;
  line-height: 1.6;
  font-weight: 400;
}

/* Circle badge on top right */
.icon-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: #F97316;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  z-index: 2;
  border: 2px solid #A057FF;
  border-top-left-radius: 0;
}

.icon-badge img {
  width: 28px;
  height: 28px;
}

.bg-custom {
            background: url('https://source.unsplash.com/random/1600x900') no-repeat center center/cover;
        }
        .hidden {
            display: none;
        }


.footer {
  background-color: #F4DACD;
  font-size: 16px;
  color: #333;
  width: 100%;
  position: static; /* default: normal flow */
  bottom: auto;
  border-top: 1px solid #e0bcb0;
}

/* On larger screens (e.g., desktops 768px and above) → fixed footer */
@media (min-width: 768px) {
  .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}

.footer a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding: 10px 0;
}

.footer-content {
  gap: 10px;
}

@media (max-width: 767px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .powered-by {
    justify-content: center;
    margin-top: 5px;
  }
}

.features-section {
  padding: 60px 20px;
  background: #f7f7f7;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.scroll-features-wrapper {
  overflow: hidden;
  width: 100%;
  padding-top: 40px;
  box-sizing: border-box;
}

    .scroll-features-container {
      display: flex;
      gap: 24px;
      width: max-content; 
      animation: scroll-left 40s linear infinite;
    }

    @keyframes scroll-left {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); } 
    }

    .scroll-card {
      flex: 0 0 320px;
      scroll-snap-align: start;
      background-color: #fff;
      padding: 24px;
      border-radius: 24px;
      position: relative;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      border: 2px solid transparent;
      background-image:
        linear-gradient(#fff, #fff),
        linear-gradient(to bottom, #6A5BFF, #BA38D0, #ffffff);
      background-origin: border-box;
      background-clip: padding-box, border-box;
    }

    .scroll-card h3 {
      font-size: 1.6rem;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 16px;
      background: linear-gradient(to right, #4D6EFF, #A057FF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }

    .scroll-card p {
      font-size: 1.05rem;
      color: #222;
      line-height: 1.6;
      font-weight: 400;
    }

    .scroll-icon-badge {
      position: absolute;
      top: -20px;
      right: -20px;
      background-color: #F97316;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.15);
      z-index: 2;
      border: 2px solid #A057FF;
      border-top-left-radius: 0;
    }

    .scroll-icon-badge img {
      width: 28px;
      height: 28px;
    }







.custom-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  flex: 1 1 48%;
  min-width: 300px;
  text-align: left; /* <-- This line aligns all text to the left */
}

.custom-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.custom-card p {
  font-size: 1rem;
  line-height: 1.6;
}

.custom-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.custom-card li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.custom-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url('assets/blue-tick.png'); /* ✅ replace with your actual tick path */
  background-size: cover;
  background-repeat: no-repeat;
}



.custom-card ul {
  list-style: none;
  padding-left: 0;
}

.custom-card li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.custom-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-image: url('assets/tick.png'); /* Replace with actual path */
  background-size: contain;
  background-repeat: no-repeat;
}


.team-section {
  padding: 40px 20px;
  text-align: center;
}

.team-title {
  font-size: 26px;
  color: #E9701F;
  font-weight: bold;
  margin-bottom: 40px;
}

.opp {
  font-size: 26px;
  color: #E9701F;
  font-weight: bold;
  margin-bottom: 12px;
}

.team-members {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.member {
  text-align: center;
  max-width: 220px;
}

.member img {
  width: 220px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin-bottom: 10px;
}

.name {
  font-size: 16px;
  font-weight: bold;
  color: #5038c1; /* Purple */
  margin: 6px 0 2px;
}

.role {
  font-size: 14px;
  color: #1e1e1e;
}



@media screen and (max-width: 768px) {
  .team-wrapper {
    flex-direction: column;
    align-items: center;
  }
}


.director-card {
  text-align: center;
  margin-bottom: 40px;
}

.director-img {
  width: 220px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto 15px auto;
	cursor: pointer;
}

.name {
  font-size: 18px;
  font-weight: bold;
  color: #5038c1; /* Purple as in team section */
  margin-bottom: 6px;
}

.designation {
  font-size: 15px;
  color: #000;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 30px;
  width: 90%;
  max-width: 480px; 
  max-height: 80vh; 
  overflow-y: auto;
  box-shadow: 4px 4px 0 #1e1e1e; 
  z-index: 1001;
  position: relative;
  margin-top: 80px; /* adjust this value as per header height */
}


.modal-body {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.modal-content img {
  width: 150px;        
  height: 200px;       
  object-fit: cover;   
  border-radius: 12px;
  margin-right: 15px;  
}

.modal-img {
  width: 150px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.modal-text {
  flex: 1;
  text-align: left; 
}

.modal-name {
  font-weight: 700;
  color: #5A4FCF;
  margin-bottom: 5px;
  text-align: left;
}

.modal-designation {
  font-weight: 500;
  margin-bottom: 15px;
  text-align: left;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
}



.services-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.services-image {
  flex: 1;
  min-width: 300px;
}

.services-image img {
  width: 70%;
  border-radius: 12px;
}

.services-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.service-number {
  width: 40px;
  height: 40px;
  background: #E9701F;
  border: 1px solid #1e1e1e;  
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 2px 2px 0 #1e1e1e; 
}

.service-content {
  flex: 1;
}

.title {
  display: inline-block;
  text-decoration: none;
  color: white;
  padding: 6px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
  transition: opacity 0.3s ease;
}

.title span {
  margin-left: 6px;
}

.title:hover {
  opacity: 0.9;
}

.gradient-title {
  background: linear-gradient(90deg, #2475E9 0%, #9747FF 100%);
}

p {
  margin: 4px 0;
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); 
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  padding: 25px;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}



.close-btn {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
}

.close-btn:hover {
  color: #000;
}

/* Gradient Heading */
.gradient-text {
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(to right, #005eff, #a546ec);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 10px 0 20px;
}

.orange-text {
  color: #E9701F;
  font-size: 18px;
}

/* Form Styling */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-form label {
  font-weight: 600;
}

.modal-form input[type="email"],
.modal-form input[type="tel"] {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 100%;
}

/* Captcha Style */
.captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

/* Submit Button */
.submit-btn {
  background-color: #E9701F;
  color: white;
  border: 1px solid #1e1e1e;
  padding: 12px 0;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #cf610c;
}






 

   .circle-container {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto;
}

.dashed-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  margin-left: -200px;
  margin-top: -200px;
  border-radius: 50%;
  border: 2px dashed #E9701F;
  z-index: 0;
}

/* Default line style */
.line-horizontal,
.line-vertical {
  position: absolute;
  background: repeating-linear-gradient(
    to right,
    #E9701F,
    #E9701F 5px,
    transparent 5px,
    transparent 10px
  );
}

.line-horizontal {
  width: 400px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.line-vertical {
  background: repeating-linear-gradient(
    to bottom,
    #E9701F,
    #E9701F 5px,
    transparent 5px,
    transparent 10px
  );
  height: 400px;
  width: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Faded versions for 3→5 and 2→5 */
.faded-left {
  background: repeating-linear-gradient(
    to right,
    rgba(233,112,31,0.25),
    rgba(233,112,31,0.25) 5px,
    transparent 5px,
    transparent 10px
  );
}

.faded-top {
  background: repeating-linear-gradient(
    to bottom,
    rgba(233,112,31,0.25),
    rgba(233,112,31,0.25) 5px,
    transparent 5px,
    transparent 10px
  );
}

/* Curved dashed line 4 → 1 */
.curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  z-index: 0;
}

.curve path {
  fill: none;
  stroke: #E9701F;
  stroke-width: 2;
  stroke-dasharray: 5, 5;
}

.faded-curve path {
  stroke: rgba(233,112,31,0.25);
}

/* Steps */
.step {
  position: absolute;
  width: 160px;
  text-align: center;
  z-index: 1;
}

.step-circle {
  background-color: #E9701F;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  margin: 0 auto 8px;
  font-weight: bold;
}

.step h3 {
  font-size: 14px;
  margin: 4px 0;
  background: linear-gradient(to right, #2475E9, #9747FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step p {
  font-size: 12px;
  color: #333;
}

.step1 { top: 50%; left: 100%; transform: translate(-100%, -50%); }
.step2 { top: 0%; left: 50%; transform: translate(-50%, 0%); }
.step3 { top: 50%; left: 0%; transform: translate(0%, -50%); }
.step4 { top: 100%; left: 50%; transform: translate(-50%, -100%); }
.step5 { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 180px; }

.point-text {
  background-color: white;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
  z-index: 2;
  position: relative;
}


.faq-section {
  width: 100%;
  max-width: 800px;
  margin: auto;
  font-family: Arial, sans-serif;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  color: #555;
  text-align: left; 
}

.faq-icon {
  width: 30px;
  height: 30px;
}

/* Chatbot icon */
#chatbot-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-align: center;
  cursor: pointer;
  z-index: 1000;
}
#chatbot-icon img {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  padding: 5px;
}
#chatbot-icon p {
  font-weight: bold;
  color: orange;
  margin: 5px 0 0;
}

/* Chatbot popup */
#chatbot-popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  z-index: 9999; /* higher than header */
  overflow: hidden;
}

#chatbot-icon {
  z-index: 9998;
}

/* Header */
.chatbot-header {
  background: linear-gradient(to right, #7d35ff, #00aaff);
  color: white;
  padding: 10px;
  display: flex;
  align-items: center;
  position: relative;
}
.chatbot-header img {
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #fff;
  object-fit: contain; 
}
.chatbot-header h3 {
  margin: 0;
  font-size: 16px;
}
.chatbot-header p {
  margin: 0;
  font-size: 12px;
}
.close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  font-size: 18px;
}

/* Body */
.chatbot-body {
  padding: 15px;
}
.chatbot-body p {
  font-size: 14px;
  margin-bottom: 15px;
}
.chatbot-buttons button {
  display: inline-block;
  margin: 5px 5px 10px 0;
  padding: 8px 10px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}
.chatbot-buttons button:hover {
  background: #f1f1f1;
}
.chatbot-body input {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-top: 10px;
}




.job-selection-wrapper {
  max-width: 800px;
  margin: 40px auto;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.job-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.job-btn {
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: white;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 14px;
}

.job-btn:hover {
  border-color: #aaa;
}

.job-btn.active {
  background: linear-gradient(90deg, #2475E9, #9747FF);
  color: white;
  border: none;
}

.cv-upload-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cv-label {
  text-align: left;
}

input[type="file"] {
  padding: 8px;
  border-radius: 4px;
  background: #f4f4f4;
  border: 1px solid #ccc;
  font-size: 14px;
}




.job-listing-wrapper {
  max-width: 1000px;
  margin: 40px auto;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  padding: 0 16px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  padding: 8px 12px;
  border-radius: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.search-bar input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
  text-align: left;
  min-width: 200px;
}

.filter-btn {
  background: #f4f4f4;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 18px;
  cursor: pointer;
}

.table-header {
  display: flex;
  padding: 10px 0;
  font-weight: bold;
  color: #E9701F;
  border-bottom: 1px solid #ccc;
  text-align: left;
}

.job-row {
  display: flex;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
  align-items: flex-start;
  text-align: left;
  flex-wrap: wrap;
}

.column {
  padding: 0 10px;
  font-size: 14px;
  text-align: left;
}

.role {
  flex: 3;
  min-width: 240px;
}

.experience {
  flex: 1;
  min-width: 120px;
}

.education {
  flex: 2;
  min-width: 160px;
}

.action {
  flex: 0 0 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 10px;
}

.arrow-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #2475E9, #9747FF);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.arrow-btn img {
  width: 14px;
  height: 14px;
}

.table-header .role {
  color: #E9701F;
}

/* --------------------- Responsive --------------------- */
@media (max-width: 768px) {
  .table-header {
    display: none; /* Hide table header on small screens */
  }

  .job-row {
    flex-direction: column;
    padding: 16px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 16px;
  }

  .column {
    padding: 8px 0;
    font-size: 15px;
  }

  .column.role strong {
    font-size: 16px;
  }

  .action {
    justify-content: flex-end;
    width: 100%;
  }
}





.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  gap: 40px;
  background-color: #f7fafd;
  flex-wrap: wrap;
}

.contact-left {
  flex: 1;
  min-width: 300px;
}

.contact-heading .highlight {
  color: #f26522;
  font-weight: bold;
  font-size: 32px;
}

.contact-info {
  margin-top: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 15px;
  color: #333;
}

.info-item .icon {
  font-size: 18px;
  margin-right: 10px;
  margin-top: 3px;
}

.contact-right {
  flex: 1;
  max-width: 480px;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-left: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: 500;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 20px;
  }

  .contact-right {
    margin-left: 0;
    max-width: 100%;
    width: 100%;
  }

  .contact-left {
    text-align: center;
  }

  .info-item {
    justify-content: center;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .contact-heading .highlight {
    font-size: 24px;
  }

  .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .info-item .icon {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 13px;
  }

  .contact-form button {
    font-size: 14px;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 20px;
  }

  .hero-left,
  .hero-right {
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-left p {
    max-width: 500px;
  }

  .hero-buttons {
    justify-content: center !important;
  }

  .image-wrapper img {
    max-width: 100%;
    height: auto;
  }
}















.submit-btn {
  background-color: #E9701F;
  color: #fff;
  padding: 14px;
  border: 1px solid #1e1e1e ;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 5px 0 #1e1e1e;
}



.map-section {
  padding: 40px;
  background-color: #f9f9f9;
}

.map-heading h2 {
  font-size: 28px;
  color: #E9701F;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.map-container {
  width: 100%;
  max-width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper img {
  max-width: 100%;
  height: auto; /* Keeps aspect ratio */
}



/* Force-center About hero on tablet/mobile */
@media (max-width: 992px) {
  /* Make the section a single centered stack */
  section.hero.hero {
    display: grid !important;
    place-items: center !important;
    text-align: center !important;
    gap: 24px !important;
  }

  /* Ensure both columns center their contents */
  section.hero .hero-left,
  section.hero .hero-right {
    width: 100% !important;
    display: grid !important;
    place-items: center !important;
    justify-items: center !important;
    align-items: center !important;
  }

  /* Center text blocks */
  section.hero .hero-heading,
  section.hero .highlight,
  section.hero p {
    text-align: center !important;
  }

  /* Center the CTA */
  section.hero .hero-buttons {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  /* Center the image */
  section.hero .image-wrapper {
    width: 100% !important;
    display: grid !important;
    place-items: center !important;
  }
  section.hero .image-wrapper img {
    display: block !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    height: auto !important;
  }

  /* Nuke any left-align utilities that may be attached */
  section.hero [class*="text-start"],
  section.hero [class*="text-left"] {
    text-align: center !important;
  }
  section.hero [class*="align-items-start"] {
    align-items: center !important;
  }
  section.hero [class*="justify-content-start"] {
    justify-content: center !important;
  }
}








































































































