* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f5f5f5;
  min-height: 200vh;
}


header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8%;
  background: white;
  transition: 0.4s ease;
}

.navbar.scrolled {
  background: #2c3176;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}




.logo img {
  width: 200px;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-item {
  position: relative;
}

.nav-item>a {
  text-decoration: none;
  color: #1d2d7c;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
}

.navbar.scrolled .nav-item>a {
  color: white;
}

.nav-item>a:hover {
  color: #1fd3c4;
}


.dropdown {
  position: absolute;
  top: 130%;
  left: 0;
  background: white;
  width: 240px;
  border-radius: 18px;
  padding: 15px 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.35s ease;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 14px 22px;
  text-decoration: none;
  color: #1d2d7c;
  font-size: 15px;
  transition: 0.3s;
}

.dropdown a:hover {
  background: #f2f6ff;
  color: #1fd3c4;
  padding-left: 30px;
}


.buttons {
  display: flex;
  gap: 15px;
  margin-left: 10px;
}

.btn {
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.login {
  background: #20d3c3;
  color: white;
}

.signup {
  background: #f15b2a;
  color: white;
}

.btn:hover {
  transform: translateY(-4px);
}


.menu-btn {
  display: none;
  font-size: 34px;
  cursor: pointer;
  color: #2c3176;
}

.navbar.scrolled .menu-btn {
  color: white;
}


.hero {
  padding: 180px 11% 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-weight: 600;
  font-size: 50px;
  line-height: 1.1;
  color: #2c3176;
  margin-bottom: 30px;
}

.hero-left p {
  font-size: 18px;
  color: #2c3175;
  line-height: 1.7;
  margin-bottom: 30px;
}

.line {
  width: 120px;
  height: 3px;
  background: #20d3c3;
  margin-bottom: 30px;
}

.features {
  list-style: none;
  margin-bottom: 40px;
}

.features li {
  margin-bottom: 18px;
  font-size: 20px;
  color: #1d2d7c;
}

.demo-btn {
  display: inline-block;
  padding: 15px 35px;
  background: #20d3c3;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
}

.demo-btn:hover {
  transform: translateY(-5px);
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-right img {
  width: 100%;
  max-width: 500px;
}

@media(max-width:992px) {

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 50px;
  }

  .line {
    margin: auto auto 30px;
  }

  .features {
    text-align: left;
    display: inline-block;
  }

}

@media(max-width:768px) {

  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1d2d7c;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    display: none;
    gap: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item>a {
    color: white;
    width: 100%;
    justify-content: space-between;
  }

  .dropdown {
    position: static;
    width: 100%;
    margin-top: 10px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 12px;
  }

  .nav-item.active .dropdown {
    display: block;
  }

  .buttons {
    width: 100%;
    flex-direction: column;
    margin-top: 20px;
  }

  .btn {
    text-align: center;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-left h1 {
    font-size: 38px;
  }

  .hero-left p {
    text-align: left;
    font-size: 18px;
  }

  .logo-card {

    height: 142px;
  }

  .founder-card {

    align-items: center;
    flex-direction: column;
  }

  .founder-card img {
    width: 362px !important;
    height: 448px;
  }

  .hero-right img {
    width: 100%;
    max-width: 370px !important;
  }

}

.footer {
  background: #081c37;
  padding: 50px 8% 40px;
  color: white;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer h3 {
  color: #25cdc0;
  font-size: 1.25rem;
  margin-bottom: 25px;
}

.footer ul {
  padding: 0;
  list-style: none;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #18d6cb;
  padding-left: 10px;
}

.space-top {
  margin-top: 50px;
}

.address {
  font-size: 20px;
  line-height: 1.8;
  color: #f0f0f0;
  max-width: 500px;
}


.footer-right {
  display: flex;
  flex-direction: column;
}



.footer-logo img {
  width: 200px;
}

.rating {
  color: #18d6cb;
  font-size: 30px;
  margin-bottom: 25px;
}

.g2-image {
  width: 240px;
  margin-bottom: 40px;
  border-radius: 12px;
}

.social-section {

  margin-bottom: 35px;
}

.social-icons {
  display: flex;
  gap: 18px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background: white;
  color: #001b4d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #18d6cb;
  transform: translateY(-5px);
}

.mail {
  color: #18d6cb;
  text-decoration: none;
  font-size: 26px;
  margin-bottom: 35px;
  font-weight: 600;
}

.disclaimer {
  font-size: 18px;
  line-height: 1.8;
  color: #f0f0f0;
}

.disclaimer span {
  font-weight: bold;
  color: white;
}


@media(max-width:1100px) {

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

}

@media(max-width:768px) {

  .footer {
    padding: 70px 6% 50px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer h3 {
    font-size: 28px;
  }

  .footer ul li a {
    font-size: 18px;
  }

  .address {
    font-size: 17px;
  }

  .rating {
    font-size: 24px;
  }

  .mail {
    font-size: 22px;
  }

  .social-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

}

.footer-p {
  line-height: 26px;
  ;
}

.footer-li {
  margin-bottom: 20px;
}

.footer-text {
  line-height: 26px;
}

.footer-li i {
  color: #25cdc0;
  margin-right: 10px;
}

.team-section {
  padding: 100px 15%;
  background: #f4f5f7;
}

.section-title {
  display: flex;
    text-align: center;
    margin-bottom: 60px;
    flex-direction: column;
    align-items: center;

}

.section-title h2 {
  font-size: 48px;
  font-weight: 600;
  color: #2c3175;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 20px;
  color: #666;
}

.small-title {
  margin-top: 90px;
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}


.founder-wrapper {
  display: flex;
  justify-content: center;
}

.founder-card {
  display: flex;
  max-width: 1100px;
  background: #081c37;
  border-radius: 25px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

}


.team-card {
  flex-direction: column;
  align-items: center;
  display: flex;
  background: #081c37;
  border-radius: 25px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card img {
  width: 355px;
  height: 385px;
  object-fit: cover;
  padding: 30px 40px;
  border-radius: 35px;
}

.founder-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  padding: 40px 40px;
  border-radius: 35px;
}

.team-content {
  padding: 40px 40px 35px;
}

.team-content h3,
h4 {
  color: white;
  font-size: 26px;
  margin-bottom: 20px;
}

.team-content span {
  color: #9faecb;
  font-size: 18px;
  display: block;
  margin-bottom: 25px;
}

.team-content p,
ul {
  color: white;
  font-size: 16px;
  line-height: 1.8;
}


@media(max-width:992px) {

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media(max-width:768px) {

  .team-section {
    padding: 80px 6%;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .founder-card {
    max-width: 100%;
  }

  .team-content h3 {
    font-size: 26px;
  }

  .team-content p {
    font-size: 17px;
  }

}

/* --------------------------- */
:root {
  --bg-color: #f8f9fa;
  --card-bg: #090b0e;
  --text-color: #2c3e50;
  --animation-speed: 25s;
}

.div-mar {
  margin: 0;
  /* padding: 40px 0; */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}


.header-container {
  text-align: center;
  margin-bottom: 40px;
}

.header-container h2 {
  font-size: 2.5rem;
  color: #2c3175;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.divider {
  width: 60px;
  height: 3px;
  background-color: #00c4b4;
  margin: 0 auto;
}

.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  padding: 10px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 20px;
}

.row-left .marquee-track {
  animation: scrollLeft var(--animation-speed) linear infinite;
}

.row-right .marquee-track {
  animation: scrollRight var(--animation-speed) linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.logo-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  width: 225px;
  height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.logo-card img {
  height: 125px;
}

.logo-card span {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

/* Specific brand colors for demo accuracy */
.upgrad {
  color: #ff3333 !important;
}

.jupiter {
  color: #ff8066 !important;
}

.mobikwik {
  color: #00a3e0 !important;
}

.mamaearth {
  color: #00bfa5 !important;
}

/* Keyframes for seamless looping */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}
/* ========================== */
.about-banner{
  position:relative;
  width:100%;
  height:400px;
  background:url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1600&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.banner-overlay{
  position:absolute;
  inset:0;
  background:rgba(0, 20, 60, 0.7);
}

.banner-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:white;
  padding:20px;
}

.banner-content h1{
  font-size:65px;
  margin-bottom:20px;
  font-weight:bold;
  letter-spacing:2px;
}

.banner-content p{
  font-size:24px;
  max-width:700px;
  line-height:1.7;
}


.about-section{
  padding:100px 8%;
}



/* ================= TEXT ================= */

.about-text h2{
  font-size: 48px;
  font-weight: 600;
  color: #2c3175;
  margin-bottom:30px;
}

.about-text p{
  font-size:18px;
  line-height:1.9;
  color:#555;
  margin-bottom:25px;
}

.about-btn{
  display:inline-block;
  margin-top:20px;
  padding:17px 40px;
  background:#18d6cb;
  color:white;
  text-decoration:none;
  border-radius:50px;
  font-size:18px;
  font-weight:bold;
  transition:0.3s;
}

.about-btn:hover{
  background:#001b4d;
  transform:translateY(-5px);
}



@media(max-width:992px){

  .about-container{
    grid-template-columns:1fr;
  }


}

@media(max-width:768px){

  .about-banner{
    height:360px;
  }

  .banner-content h1{
    margin-top: 50px;
    font-size:40px;
  }

  .banner-content p{
    font-size:18px;
  }

  .about-section{
    padding:80px 6%;
  }

  .about-text h2{
    text-align: center;
    font-size:38px;
  }

  .about-text p{
    font-size:17px;
  }

}
.main-section{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:60px 0;
}

.left-content{
  padding-right:60px;
}

.main-title{
 
  font-weight:700;
  font-size: 50px;
  line-height: 1.1;
  color: #2c3176;
  margin-bottom:30px;
}

.sub-text{
  line-height:1.8;
 
  font-size: 18px;
  color: #2c3175;
  margin-bottom:35px;
  max-width:500px;
}

.line{
  width:120px;
  height:4px;
  background:#00d1c7;
  margin-bottom:35px;
  border-radius:10px;
}

.contact-box{
  background:#fff;
  padding:30px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  max-width:450px;
}

.contact-box h4{
  font-weight:600;
  margin-bottom:20px;
  color:#2b2e83;
}

.contact-item{
  display:flex;
  align-items:flex-start;
  margin-bottom:20px;
}

.contact-icon{
  width:45px;
  height:45px;
  background:#2c3176;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-right:15px;
  font-size:18px;
}

.contact-item p{
  margin:0;
  color:#444;
  line-height:1.7;
}

.form-wrapper{
  background:#fff;
  padding:40px;
  border-radius:25px;
  box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.form-label{
  font-weight:500;
  margin-bottom:10px;
  color:#000;
}

.required{
  color:red;
}

.form-control,
.form-select{
  height:55px;
  border-radius:12px;
  border:1px solid #d7d7d7;
  box-shadow:none !important;
}

.form-control:focus,
.form-select:focus{
  border-color:#2b2e83;
}

.form-check-label{
  font-size:14px;
  color:#555;
}

.submit-btn{
  background:#2c3176;
  color:#fff;
  border:none;
  padding:14px 35px;
  border-radius:12px;
  font-size:17px;
  font-weight:500;
  transition:0.3s;
  width:100%;
  margin-top:15px;
}

.submit-btn:hover{
  background:#1d2063;
}

@media(max-width:991px){

  .left-content{
    padding-right:0;
    margin-bottom:50px;
  }

  .main-title{
    text-align: center;
    font-size:38px;
  }

  .sub-text{
    font-size:18px;
  }

}

@media(max-width:576px){

  .form-wrapper{
    padding:25px;
  }

  .contact-box{
    padding:25px;
  }

}
.map-section{
width:100%;
margin-top:80px;
overflow:hidden;
}

.map-section iframe{
display:block;
width:100%;
border:none;
}


.sub-container {
  max-width: 1200px;
  margin: 80px auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.content-area {
  padding-right: 20px;
}

.main-heading {
  font-size: 40px;
  color: #2c3176;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 25px;
}



.intro-text {
  font-size: 1.05rem;
  color: #444444;
  margin-bottom: 25px;
}

.sub-heading {
  font-size: 1.25rem;
  color: #222222;
  font-weight: 600;
  margin-bottom: 15px;
}

.body-text {
  font-size: 16px;
  color: #555555;
  margin-bottom: 25px;
}

.section-title-inner {
  font-size: 17px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 15px;
}

.services-list {
  padding: 0;
  list-style: none;
}

.services-list li {
  font-size: 0.95rem;
  color: #444444;
  position: relative;
  padding-left: 25px;
  margin-bottom: 14px;
}

.services-list li::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: #3498db;
  transform: rotate(45deg);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-menu ul {
  padding: 0;
  list-style: none;
  background-color: #f7f7f7;
  border-radius: 4px;
  overflow: hidden;
}

.sidebar-menu li {
  border-bottom: 1px solid #eef0f2;
}

.sidebar-menu li:last-child {
  border-bottom: none;
}

.sidebar-menu a {
  display: block;
  padding: 14px 20px 14px 35px;
  color: #444444;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: all 0.2s ease;
}

.sidebar-menu a::before {
  content: '>';
  position: absolute;
  left: 20px;
  color: #2c3176;
  font-weight: bold;
  font-family: monospace;
}

.sidebar-menu a:hover {
  background-color: #0c156cd1;
  color: #ffffff;
}

.sidebar-menu li.active {
  background-color: #2c3176;
}

.sidebar-menu li.active a {
  color: #ffffff;
}

.sidebar-menu li.active a::before {
  color: #ffffff;
}

.contact-widget {
  background-color: #2c3176;
  color: #ffffff;
  padding: 30px;
  border-radius: 6px;
}

.contact-widget h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-widget p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 25px;
  opacity: 0.9;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s;
}

.contact-link:hover {
  opacity: 0.85;
}

.contact-link i {
  font-size: 1.1rem;
  width: 20px;
}

@media (max-width: 768px) {
  .map-section iframe {height: 300px;}
  .sub-container {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 0px 8% 20px;
  }
  


  .content-area {
      padding-right: 0;
  }
}
.client-section{
  width:90%;
  margin:50px auto;
}

.client-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.client-box{
  background:#fff;
  height:205px;
  border:1px solid #eee;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:center;
  padding-top:25px;
  transition:0.4s;
  position:relative;
  overflow:hidden;
}

.client-box::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:4px;
  background:#3498db;
  transition:0.4s;
}

.client-box:hover::after{
  width:100%;
}

.client-box:hover{
  transform:translateY(-8px);
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.client-box h3{
  font-weight: 600;
  font-size:20px;
  color:#1f3552;
  margin-bottom:25px;
  text-align:center;
}

.client-box img{
  max-width:180px;
  max-height:110px;
  object-fit:contain;
}

/* Responsive */

@media(max-width:992px){

  .client-grid{
      grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:600px){

  .client-grid{
      grid-template-columns:1fr;
  }

  .client-box{
      height:auto;
      padding:30px 20px;
  }

}

#topBtn{
  position:fixed;
  bottom:25px;
  right:25px;
  width:55px;
  height:55px;
  border:none;
  outline:none;
  background:#07aeb1;
  color:#fff;
  font-size:22px;
  cursor:pointer;
  border-radius:6px;
  display:none;
  transition:0.3s ease;
  z-index:999;
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

#topBtn:hover{
  background:#00b8cc;
  transform:translateY(-5px);
}
