* {
  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:linear-gradient(135deg, #117383 0%, #024452 100%);
    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: #034755;
  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: #034755;
  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: #034654;
}

.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: #034654;
  margin-bottom: 30px;
}

.hero-left p {
  font-size: 18px;
  color: #034654;
  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: #034755;
}

.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: linear-gradient(135deg, #117383 0%, #024452 100%);;  padding: 50px 8% 40px;
    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 {
  z-index: 2000;
  position: relative;
  background: linear-gradient(135deg, #117383 0%, #024452 100%);;  padding: 50px 8% 40px;
  color: white;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer h3 {
  font-weight: 600;
  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: #034654;
  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: 32px;
  }

  .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: #034654;
  --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: #034654;
  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{
  z-index: 200;
  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: #034654;
  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){
  .homes-section {
    text-align: left !important;
    position: relative;
    padding: 50px 30px 50px 30px !important;}
    .clients-section {
      padding: 50px 30px !important;
  }
  .about-banner{
    height:360px;
  }

  .banner-content h1{
    margin-top: 20px;
    font-size:35px;
  }

  .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{
  position: relative;
  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: #034654;
  margin-bottom:30px;
}

.sub-text{
  line-height:1.8;
 
  font-size: 18px;
  color: #034654;
  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:#034755;
}

.contact-item{
  display:flex;
  align-items:flex-start;
  margin-bottom:20px;
}

.contact-icon{
  width:45px;
  height:45px;
  background:#034654;
  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:#034654;
  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:#032f38;
}

@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;
}




.content-area {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.main-heading {
  font-size: 40px;
  color: #034654;
  font-weight: 700;
  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 {
  color: #666;
    line-height: 1.9;
  font-size: 16px;
  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: #034654;
  font-weight: bold;
  font-family: monospace;
}

.sidebar-menu a:hover {
  background-color: #05333c;
  color: #ffffff;
}

.sidebar-menu li.active {
  background-color: #034654;
}

.sidebar-menu li.active a {
  color: #ffffff;
}

.sidebar-menu li.active a::before {
  color: #ffffff;
}

.contact-widget {
  background: linear-gradient(135deg, #117383 0%, #024452 100%);
  color: #ffffff;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.2);  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) {
  .main-heading {
    text-transform: capitalize;
    font-size: 30px !important;}
  .map-section iframe {height: 300px;}
  .sub-container {
      grid-template-columns: 1fr !important;
      gap: 40px;
      padding: 0px 8% 20px;
  }
  



}
.client-section{
  width:90%;
  margin:50px auto;
}

.client-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.client-box{
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);

  border:1px solid rgba(255,255,255,.8);
  border-radius:25px;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:25px;

  transition:.4s;

  box-shadow:
  0 10px 30px rgba(0,0,0,.05),
  inset 0 1px 1px rgba(255,255,255,.8);

  position:relative;
  overflow:hidden;
  height:205px;
  border:1px solid #eee;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding-top:25px;
  transition:0.4s;
  position:relative;
  overflow:hidden;
}

.client-box::after{
  content:'';
  position:absolute;
  width:120px;
  height:120px;
  background:rgba(0,209,178,.08);
  border-radius:50%;
  top:-60px;
  right:-60px;
}

/* 
.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:#031328;
  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);
}
/* ===================================================== */
.home-bannerNew{
  margin-bottom: 70px;
  top: 90px;
  position:relative;
  height:600px;
  background:url('./images/home-banner.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.home-bannerNew::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgb(6 45 60 / 70%) 0%, rgb(12 66 60 / 85%) 40%, rgb(6 54 52 / 30%) 100%);}


.home-banner{
  margin-bottom: 70px;
  top: 90px;
  position:relative;
  height:450px;
  background:url('./images/abt-img.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.home-banner::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgb(59 141 173 / 70%) 0%, rgb(12 66 60 / 85%) 40%, rgb(6 54 52 / 30%) 100%);}

.banner-content{
  position:relative;
  z-index:2;
  max-width:1300px;
  width:100%;
  margin:auto;
  padding:0 30px;
}

.banner-text{
  max-width:650px;
}

.banner-tag{
  display:inline-block;
  padding:10px 22px;
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
  color:#fff;
  border-radius:30px;
  margin-bottom:25px;
  font-size:14px;
  letter-spacing:1px;
}

.banner-text h1{
  color:#fff;
  font-size:68px;
  line-height:1.1;
  margin-bottom:20px;
  font-weight:800;
}

.banner-text h1 span{
  color:#0ec3b4;
}

.banner-text p{
  color:rgba(255,255,255,.9);
  font-size:18px;
  line-height:1.8;
  margin-bottom:35px;
}

.banner-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}


/* Floating Stats */

.stats-box{
  position:absolute;
  right:80px;
  bottom:60px;
  z-index:2;

  display:flex;
  gap:20px;
}

.stat{
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(15px);
  padding:20px 25px;
  border-radius:20px;
  text-align:center;
  min-width:140px;
}

.stat h3{
  font-weight:800;

  color:#0ec3b4;
  font-size:32px;
}

.stat p{
  color:#fff;
  font-size:14px;
}

/* Responsive */

@media(max-width:991px){

  .home-banner{
      height:auto;
      padding:60px 0;
  }

  .banner-text h1{
      font-size:46px;
  }

  .stats-box{
    display: none;
      position:static;
      margin-top:40px;
      justify-content:center;
      flex-wrap:wrap;
  }
}

@media(max-width:576px){

  .banner-text h1{
      font-size:34px;
  }

  .banner-text p{
      font-size:16px;
  }
}
.homes-section{
  position: relative;
  padding:100px 120px 60px 120px;
  background:linear-gradient(135deg,#f8fbff,#eef5ff,#f7fffc);
  overflow:hidden;
}

.container{
  max-width:1400px;
  margin:auto;
}

.homes-wrapper{
  display:flex;
  align-items:center;
  gap:70px;
}

/* Left Content */

.homes-content{
  flex:1;
}

.homes-tag{
  display:inline-block;
  padding:8px 20px;
  background:#00d1b2;
  color:#fff;
  border-radius:30px;
  font-size:14px;
  margin-bottom:20px;
}

.homes-content h2{
  font-size:52px;
  color:#034654;
  font-weight:700;
  position:relative;
  margin-bottom: 30px;
  display:inline-block;
}

.homes-content h2 span{
  color:#00d1b2;
}

.homes-content p{
  color:#666;
  line-height:1.9;
  font-size:17px;
  margin-bottom:18px;
}

.homes-buttons{
  margin-top:35px;
}

.btn-primary,
.btn-outline{
  display:inline-block;
  padding:14px 35px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:.4s;
}

.btn-primary{
  background:#034755;
  color:#fff;
  margin-right:15px;
}

.btn-primary:hover{
  background:#00d1b2;
}

.btn-outline{
  border:2px solid #034755;
  color:#034755;
}

.btn-outline:hover{
  background:#034755;
  color:#fff;
}

/* stats-home */

.stats-home{
  display:flex;
  gap:40px;
  margin-top:50px;
}

.stat-box h3{
  color:#00d1b2;
  font-size:36px;
}

.stat-box p{
  margin:0;
  font-size:14px;
  color:#666;
}

/* Right Image */

.homes-image{
  flex:1;
  position:relative;
}

.homes-image img{
  width:100%;
  border-radius:30px;
  display:block;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

/* Floating Glass Card */

.glass-card{
  position:absolute;
  bottom:30px;
  left:30px;

  background:rgba(255,255,255,.4);
  backdrop-filter:blur(15px);
  -webkit-backdrop-filter:blur(15px);

  border:1px solid rgba(255,255,255,.6);

  border-radius:20px;
  padding:20px;
  width:280px;

  box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.glass-card h4{
  font-size: 20px;
  font-weight: 600;
  color:#034755;
  margin-bottom:10px;
}
.inner-glass{
  position: relative;
}

.glass-card p{
  color:#555;
  font-size:14px;
  line-height:1.6;
}

/* Responsive */

@media(max-width:991px){

  .homes-wrapper{
      flex-direction:column;
      text-align:left;
  }

  .homes-content h2{
      font-size:42px;
  }

  .stats-home{
      justify-content:center;
      flex-wrap:wrap;
  }

  .glass-card{
      position:static;
      width:100%;
      margin-top:20px;
  }
}

@media(max-width:576px){

  .homes-content h2{
      font-size:34px;
  }

  .stats-home{
      gap:25px;
  }


}
.clients-section{
  padding:100px 120px;
}

.container{
  max-width:1400px;
  margin:auto;
}



.section-title h2{
  font-size:45px;
  color:#034654;
  font-weight:700;
  position:relative;
  display:inline-block;
}

.section-title h2::after{
  content:"";
  width:90px;
  height:4px;
  background:#00d1b2;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-15px;
  border-radius:20px;
}

.section-title p{
  color:#666;
  margin-top:30px;
  font-size:18px;
}

.clients-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

/* CLIENT CARD */

.client-card{
  height:170px;

  background:rgba(255,255,255,.55);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);

  border:1px solid rgba(255,255,255,.8);
  border-radius:25px;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:25px;

  transition:.4s;

  box-shadow:
  0 10px 30px rgba(0,0,0,.05),
  inset 0 1px 1px rgba(255,255,255,.8);

  position:relative;
  overflow:hidden;
}

.client-card::before{
  content:'';
  position:absolute;
  width:120px;
  height:120px;
  background:rgba(0,209,178,.08);
  border-radius:50%;
  top:-60px;
  right:-60px;
}

.client-card:hover{
  transform:translateY(-10px);
  box-shadow:
  0 20px 40px rgba(0,0,0,.12);
}

.client-card img{
  max-width:100%;
  max-height:100px;
  object-fit:contain;

  /* filter:grayscale(100%);
  opacity:.75; */

  transition:.4s;
}

.client-card:hover img{
  filter:grayscale(0);
  opacity:1;
  transform:scale(1.08);
}

/* RESPONSIVE */

@media(max-width:768px){

  .section-title h2{
      font-size:32px;
  }

  .clients-grid{
      gap:20px;
  }

  .client-card{
      height:140px;
  }
}

.founders-section{
  padding:100px 20px;
  position:relative;
  overflow:hidden;
}
.sub-container {
  position:relative;
  max-width: 1200px;
  margin: 150px auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.homes-section::before{
  content:'';
  position:absolute;
  width:400px;
  height:400px;
  background:rgba(0,210,180,.08);
  border-radius:50%;
  top:-150px;
  left:-100px;
}

.homes-section::after{
  content:'';
  position:absolute;
  width:350px;
  height:350px;
  background:rgba(80,120,255,.08);
  border-radius:50%;
  bottom:-150px;
  right:-100px;
}
.founders-section::before{
  content:'';
  position:absolute;
  width:400px;
  height:400px;
  background:rgba(0,210,180,.08);
  border-radius:50%;
  top:-150px;
  left:-100px;
}

.founders-section::after{
  content:'';
  position:absolute;
  width:350px;
  height:350px;
  background:rgba(80,120,255,.08);
  border-radius:50%;
  bottom:-150px;
  right:-100px;
}
.sub-container::before{
  content:'';
  position:absolute;
  width:400px;
  height:400px;
  background:rgba(0,210,180,.08);
  border-radius:50%;
  top:-150px;
  left:-100px;

}
.sub-container::after{
  content:'';
  position:absolute;
  width:350px;
  height:350px;
  background:rgba(80,120,255,.08);
  border-radius:50%;
  bottom:-150px;
  right:-100px;
}
.main-section::before{
  content:'';
  position:absolute;
  width:400px;
  height:400px;
  background:rgba(0,210,180,.08);
  border-radius:50%;
  top:-150px;
  left:-100px;

}
.main-section::after{
  content:'';
  position:absolute;
  width:350px;
  height:350px;
  background:rgba(80,120,255,.08);
  border-radius:50%;
  bottom:-150px;
  right:-100px;
}
.container{
  max-width:1400px;
  margin:auto;
  position:relative;
  z-index:2;
}



/* Glass Card */

.founders-card{
  display:flex;
  align-items:center;
  gap:50px;

  background:rgba(255,255,255,0.45);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);

  border:1px solid rgba(255,255,255,0.6);

  border-radius:35px;
  padding:50px;

  box-shadow:
  0 15px 40px rgba(0,0,0,0.08),
  inset 0 1px 1px rgba(255,255,255,0.7);

  position:relative;
  overflow:hidden;
}

.founders-card::before{
  content:'';
  position:absolute;
  width:250px;
  height:250px;
  background:linear-gradient(
  135deg,
  rgba(0,210,180,.12),
  rgba(98,122,255,.08));
  border-radius:50%;
  top:-100px;
  right:-100px;
}

.founders-card::after{
  content:'';
  position:absolute;
  width:180px;
  height:180px;
  background:rgba(0,210,180,.08);
  border-radius:50%;
  bottom:-70px;
  left:-70px;
}

/* Left Image */

.founders-image{
  flex:0 0 320px;
  position:relative;
}

.founders-image img{
  width:100%;
  border-radius:25px;
  display:block;
  box-shadow:0 15px 35px rgba(0,0,0,.12);
}

/* Content */

.content{
  flex:1;
}

.badge{
  display:inline-block;
  background:#0ec3b4;
  color:#fff;
  padding:8px 18px;
  border-radius:30px;
  font-size:14px;
  margin-bottom:15px;
}

.content h3{
  font-weight: 700;

  font-size:30px !important;
  color:#000000;
  margin-bottom:5px;
}

.content h4{
  font-size: 21px;
  font-weight: 700;
  color:#666;
  margin-bottom:20px;
  font-weight:500;
}

.line{
  width:80px;
  height:4px;
  background:#00d2b4;
  border-radius:10px;
  margin-bottom:25px;
}

.content p{
  color:#555;
  line-height:1.9;
  margin-bottom:15px;
}

/* Right Side */

.side-design{
  width:280px;
  height:300px;
  position:relative;
}

.circle{
  position:absolute;
  overflow:hidden;
  border-radius:50%;
  border:5px solid rgba(255,255,255,.7);
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.circle img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.circle1{
  width:180px;
  height:180px;
  top:0;
  right:0;
}

.circle2{
  width:120px;
  height:120px;
  bottom:0;
  left:10px;
}

.stat-inner{
  position:absolute;
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(15px);
  padding:15px 20px;
  border-radius:18px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.stat-inner h5{
  font-weight: 600;
  font-size:28px;
  color:#00b89f;
}

.stat-inner p{
  font-size:13px;
  color:#555;
}

.stat1{
  top:110px;
  left:0;
}

.stat2{
  bottom:20px;
  right:0;
}

/* Button */

.btn{
  display:inline-block;
  margin-top:15px;
  text-decoration:none;
  background:#034755;
  color:#fff;
  padding:14px 32px;
  border-radius:50px;
  transition:.3s;
}

.btn:hover{
  background:#00d2b4;
}

/* Responsive */

@media(max-width:1200px){

  .founders-card{
      flex-direction:column;
      text-align:center;
  }

  .line{
      margin:0 auto 25px;
  }

  .side-design{
      display:none;
  }
}

@media(max-width:768px){
  .main-section::after{
    display: none;
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(80,120,255,.08);
    border-radius:50%;
    bottom:-150px;
    right:-100px;
  }}
  .main-section {
  
    padding: 60px 20px !important;}
  .sub-container::after{
    display: none;
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(80,120,255,.08);
    border-radius:50%;
    bottom:-150px;
    right:-100px;
  }



  .founders-card{
      padding:30px;
  }

  .founders-image{
      flex:auto;
      width:100%;
      max-width:300px;
  }

  .content h3{
      font-size:28px;
  }

.teams-section{
  padding:100px 20px;
}

.container{
  max-width:1300px;
  margin:auto;
}



.section-title h2::after{
  content:"";
  width:90px;
  height:4px;
  background:#00d1b2;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-15px;
  border-radius:10px;
}

.teams-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
  gap:35px;
}

/* Team Card */

.teams-card{
  background:rgba(255,255,255,.5);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.7);
  border-radius:30px;
  overflow:hidden;
  text-align:center;
  padding:35px;
  transition:.4s;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
  position:relative;
}

.teams-card:hover{
  transform:translateY(-10px);
}

.teams-card::before{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  background:rgba(0,209,178,.08);
  border-radius:50%;
  top:-90px;
  right:-90px;
}

.teams-image{
  width:230px;
  height:230px;
  margin:auto;
  border-radius:50%;
  overflow:hidden;
  border:8px solid rgba(255,255,255,.8);
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.teams-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s;
}

.teams-card:hover .team-image img{
  transform:scale(1.08);
}

.teams-info{
  margin-top:25px;
}
.content ul{
  color: #666;

}
.teams-info h3{
  font-weight: 600;
  color:#050505;
  font-size: 30px;
  margin-bottom:8px;
}
.teams-info h4{
  font-size: 21px;
  color: #666;
  margin-bottom: 20px;
  font-weight: 500;
}
.teams-info span{
  display:inline-block;
  background:#0ec3b4;
  color:#fff;
  padding:8px 18px;
  border-radius:30px;
  font-size:14px;
  margin-bottom:15px;
}

.teams-info p{
  text-align: left;
  color:#666;
  line-height:1.7;
  font-size:15px;
}

/* Social Icons */

.social-links{
  margin-top:20px;
}

.social-links a{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#034654;
  background:#fff;
  border-radius:50%;
  margin:0 5px;
  box-shadow:0 5px 15px rgba(0,0,0,.08);
  transition:.3s;
}

.social-links a:hover{
  background:#00d1b2;
  color:#fff;
}

@media(max-width:768px){
  .content{
    text-align: left;
  }
  .content h3 {
    font-weight: 700;
    font-size: 28px !important;}
  .client-box img {
    max-width: 180px;
    max-height: 80px !important;}
  .teams-info h4 {
    font-size: 18px !important;}

  .teams-info h3 {
   
    font-size: 28px !important;}

  .teams-image{
      width:180px;
      height:180px;
  }
}