@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
}

:root {
  --bg-color: #1e2a36;
  --second-bg-color: #112e42;
  --text-color: #6b7280;
  --main-color: #00abf0;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  background: #ffffff; /* unified background */
  color: var(--text-color);
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}
/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: .5rem 2%;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}

.logo {
  font-size: 2.5rem;
  color: var(--text-color);
  font-weight: 600;
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 50px;
  border-radius: 8px;
  margin-top: 0;
}

.navbar a {
  font-size: 1.7rem;
  color: var(--text-color);
  font-weight: 500;
  margin-left: 3.5rem;
  transition: .3s;
}

.navbar a:hover,
.navbar a.active {
  color: var(--main-color);
}

/* SECTIONS */
section {
  padding: 10rem 9% 2rem;
  margin: 0;
  min-height: auto;
}

/* HERO */
.hero {
  background: linear-gradient(180deg, #1f5cff 0%, #143bbf 100%);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
   min-height: auto;

 
  padding: 0 5%;

}

.hero-container {
  max-width: 1400px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  margin-top:100px;
  padding:30px;
}


.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 2.15rem;
  color: #dbe5ff;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 14px 32px;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #ffffff;
  color: #1f5cff;
}

.btn.primary:hover {
  background: #e9efff;
}

.btn.outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn.outline:hover {
  background: #ffffff;
  color: #1f5cff;
}

.hero-image {
  padding: 12px;
  border-radius: 18px;
}

.hero-image img {
  width: 520px;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* SERVICES */
.services {
 
  padding: 80px 5%;
  background-color: #ffffff;
}

.container {
  max-width: 1400px;
  margin: auto;
  text-align: center;
}

.services h2 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: black;
}

.subtitle {
  font-size: 1.5rem;
  color: #475569;
  margin-bottom: 70px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 16px;
  color: black;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.icon i {
  font-size: 26px;
  color: #2563eb;
}

.service-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #475569;
}

/* HOME */
.home {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 9%;
  min-height: auto;
  padding-top: 200px;
  background-color: #ffffff;
}

.home > * {
  position: relative;
  z-index: 1;
}

.home-content {
  max-width: 60rem;
}

.home-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  color: black;
}

.home-content p {
  font-size: 1.5rem;
  margin: 2rem 0 4rem;
  word-spacing: 0.3rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-color);
}

.all-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.points {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  font-weight: 600;
  color: #6b7280;
  text-decoration: none;
}

.points i {
  font-size: 18px;
  color: #38bdf8;
}

.home-images {
  display: flex;
  gap: 25px;
  margin-left: auto;
}

.home-images img {
  width: 230px;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.home-images .img-top {
  margin-top: -50px;
}

/* SOCIAL ICONS */
.home-sci {
  position: absolute;
  bottom: 4rem;
  width: 170px;
  display: flex;
  justify-content: space-between;
}

.home-sci a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: .2rem solid var(--main-color);
  border-radius: 50%;
  font-size: 20px;
  color: var(--main-color);
  z-index: 1;
  overflow: hidden;
  transition: .5s;
}

.home-sci a:hover {
  color: var(--bg-color);
}

.home-sci a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
}

/* CTA */
.cta {
  background: #1044bf;
  color: #ffffff;
  text-align: center;
   min-height: auto;
  padding: 80px 20px 120px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  padding-bottom: 80px;
}

.cta h2 {
  font-size: 4.5rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.7rem;
  color: #e0e7ff;
  margin-bottom: 40px;
  text-align: center;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: #2563eb;
  padding: 16px 36px;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #e0e7ff;
  transform: translateY(-2px);
}

/* MENU ICON */
.menu-icon {
  display: none; /* hidden on desktop */
  font-size: 2.5rem;
  color: var(--text-color);
  cursor: pointer;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .menu-icon {
    display: block;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
  }

 

  .about-img{

    margin-right:200px;
  }

 

   body {
   
     padding-top: 70px;
    overflow-x: hidden;
  }



  .hero {
    padding: 0 16px;
  }

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 24px;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .navbar.active {
    right: 0;
  }

  .navbar a {
    width: 100%;
    font-size: 18px;
    padding: 14px 12px;
    margin: 6px 0;
    text-align: left;
  }

    .header {
    flex-direction: row;           /* logo left, menu right */
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;             /* reduce white space */
  }

   .home {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 120px 16px 60px;
  }

  /* Reset image container */
  .home-images {
    margin-left: 0;
    margin-top: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* Make images BIGGER */
  .home-images img {
    width: 100%;
    max-width: 320px;   /* increase to 360px if you want */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  /* Remove desktop offset */
  .home-images .img-top {
    margin-top: 0;
  }


    .logo img {
    margin-top: 0;
    max-height: 40px;
  }


  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.6rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }



   .services-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .service-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .home {
    padding-top: 140px; /* balance spacing on mobile */
  }
    .services {
    padding: 60px 16px;
  }

  .home-images {
    flex-direction: column;
    align-items: center;
    gap: 20px;
     margin-left: 0;
  }


    section,
  .container,
  .hero-container {
    max-width: 100%;
    overflow-x: hidden;
  }

  .home-images img {
    width: 100%;
    max-width: 280px;
    height: auto;
  }

  .cta h2 {
    font-size: 3rem;
  }

  .cta p {
    font-size: 1.4rem;
  }
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 400px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile adjustments */











.ctb {
    background: #1044bf;
  color: #ffffff;
  text-align: center;

  min-height: 50vh;        /* Half of screen height */
  padding: 40px 20px;

  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertical center */
  align-items: center;
 
}


.ctb h2 {
  font-size: 4.5rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.ctb p {
  font-size: 1.7rem;
  color: #e0e7ff;
  margin-bottom: 40px;
  text-align: center;
}





.about-wrapper {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;
    gap: 4rem;
    flex-wrap: wrap;
    font-size: 1.5rem;
    
}

.about{
    background: white;
}

.about-content {
    flex: 1.5;
    
}
.about-content p {
    margin-bottom: 1.8rem; /* gap between paragraphs */
    line-height: 1.8;
    font-weight:600;
    font-size: 1.6rem;
    margin-top: 15;
}

.about-content p span{
    color:black;
    font-weight: 700;
}

.about h2{
    color: black;
    font-size:30px;
    margin-bottom: 30px;
}



.about-img img {
    max-width: 400px;
    border-radius: 0; /* square */
    display: block;
    border-radius: 5%;
}


.stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 80px 10%;
  border-bottom: 1px solid #f1f1f1;
 background-color: #F9FAFB;

}

.stat-item {
  text-align: center;
  
}

.stat-item h2 {
  font-size: 48px;
  font-weight: 300;
  color: #2563eb;
 
}

.stat-item p {
  font-size: 16px;
  color: #374151;
}

/* CORE VALUES */
.core-values {

  text-align: center;
  background-color: white;
  
}

.core-values h1 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 16px;
  color:black;
}

.core-values .subtitle {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 80px;
}

/* VALUES GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.value-card {
  text-align: center;
  padding: 0 10px;
  
}

.value-card .icon {
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  color: #2563eb;
  margin-bottom: 24px;
  background: white;
}



.value-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color:black;
}

.value-card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
}


.team {
  padding: 120px 10%;
  text-align: center;
  background: white;
}

.team h1 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 14px;
 color:black;
}

.team .subtitle {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 70px;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.team-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* CONTENT */
.card-content {
  padding: 26px;
  text-align: left;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-content span {
  color: #2563eb;
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}

.card-content p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}



/* Mobile & Tablet Fix */
@media (max-width: 768px) {
  .stats {
    flex-wrap: wrap;              /* allow items to move to next line */
    gap: 40px;                    /* space between items */
    padding: 60px 5%;
  }

  .stat-item {
    width: 45%;                   /* 2 items per row */
  }

  .stat-item h2 {
    font-size: 36px;              /* smaller numbers */
  }

  .stat-item p {
    font-size: 14px;
  }
}

/* Small Mobile (extra safety) */
@media (max-width: 480px) {
  .stat-item {
    width: 100%;                  /* 1 item per row */
  }

  .stat-item h2 {
    font-size: 32px;
  }
}


@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

    .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr; /* one by one */
    gap: 40px;
  }

  .core-values .subtitle {
    margin-bottom: 50px;
  }

   .team-grid {
    grid-template-columns: 1fr; /* one by one */
    gap: 30px;
  }

  
  .team {
    padding: 80px 6%;
  }

  .team h1 {
    font-size: 34px;
  }

  .team .subtitle {
    margin-bottom: 50px;
  }

  .team-card img {
    height: 220px;
  }
}











.ctc {
    background: #1044bf;
  color: #ffffff;
  text-align: center;

  min-height: 50vh;        /* Half of screen height */
  padding: 40px 20px;

  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertical center */
  align-items: center;
 
}


.ctc h2 {
  font-size: 4.5rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.ctc p {
  font-size: 1.7rem;
  color: #e0e7ff;
  margin-bottom: 40px;
  text-align: center;
}



.contact-section {
  padding: 80px 6%;
   background: white;
}

.contact-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
 
}

/* FORM */
.contact-form h2 {
  font-size: 30px;
  margin-bottom: 40px;
  color: #000;
  font-weight: 500;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgb(37, 30, 30);
  font-size: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid #d0d7e2;
  font-size: 15px;
  outline: none;
}

.form-group textarea {
  min-height: 130px;
  resize: none;
}

.contact-form button {
  margin-top: 10px;
  padding: 16px 32px;
  border-radius: 10px;
  background: #2563eb;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #1e4ed8;
}

/* INFO */
.contact-info h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 500;
}

.info-text {
  color: black;
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 420px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  color: #000;
  
}

.icon {
  width: 48px;
  height: 48px;
  background: #eef4ff;
  color: #2563eb;
  font-size: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item h4 {
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 500;
}

.info-item p {
  color: #475569;
  font-size: 15px;
}


body {
  background-color: #ffffff;
}

.ctm-section {
  width: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
}


.ctm-section h1 {
  font-size: 35px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 16px;
}


.ctm-section p {
  font-size: 18px;
  color: #6b7280;
  max-width: 620px;
  margin-bottom: 36px;
}


.ctm-buttons {
  display: flex;
  gap: 20px;
}


.map-container {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
}

.map-container iframe {
  width: 80%;
 padding:20px;
  
  height: 100%;
  border: 0;
  margin-bottom: 20px;
}

.map-container h1{
padding:5px;
 color:black;
}

/* Mobile */
@media (max-width: 768px) {
  .map-container {
    height: 280px;
  }
}



.newbtn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}


.newbtn.primary {
  background-color: #1d4eff;
  color: #ffffff;
  border: 2px solid #1d4eff;
}

.newbtn.primary:hover {
  background-color: #163ad6;
  border-color: #163ad6;
}


.newbtn.outline {
  background-color: transparent;
  color: #1d4eff;
  border: 2px solid #1d4eff;
}

.newbtn.outline:hover {
  background-color: #1d4eff;
  color: #ffffff;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 1000;
  animation: whatsapp-bounce 2s ease-in-out infinite;
}

/* Smooth up-down animation */
@keyframes whatsapp-bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Optional: subtle hover effect */
.whatsapp-float:hover {
  animation-play-state: paused;
  transform: scale(1.1);
}





/* Tablet */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .contact-section {
    padding: 60px 5%;
  }

  .contact-container {
    grid-template-columns: 1fr; /* stack one by one */
    gap: 50px;
  }

  .contact-form h2,
  .contact-info h2 {
    font-size: 26px;
  }

  .info-text {
    max-width: 100%;
  }

  .info-item {
    align-items: flex-start;
  }
}












.footer {
  width: 100%;
  background-color: #101828;
  color: grey;
  padding: 80px 80px 30px;
  position: relative;
  overflow: visible;
  clear: both;
  margin-top: 0;
  z-index: 2;}



/* GRID */
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 80px;
}

/* BRAND */
.footer-brand .logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 280px;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: grey;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.footer-links a:hover {
  color: #ffffff;
}

/* CONTACT */
.footer-contact p {
  font-size: 1.25rem;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: white;
}

/* BOTTOM */
.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding-top: 20px;
  text-align: center;
  font-size: 1.2rem;
  color: #94a3b8;
}


html, body {
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
}

section {
  height: auto;
  min-height: auto;
  overflow: visible;
    position: relative;
}


/* Tablet */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer {
    padding: 60px 24px 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;   /* stack vertically */
    gap: 40px;
  }

  .footer-brand p {
    max-width: 100%;
    font-size: 1.1rem;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .footer-links a,
  .footer-contact p {
    font-size: 1.1rem;
  }

  .footer-contact p {
    align-items: flex-start;
  }

  .footer-bottom {
    font-size: 1rem;
    margin-top: 40px;
  }
}

/* PROJECTS CTA SECTION */
.projects-cta {
  text-align: center;
  background-color: #F9FAFB;
  padding: 80px 10%;
}
.projects-cta h1 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 16px;
  color: black;
}
.projects-cta .subtitle {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 50px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.projects-link {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.projects-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.projects-cta-img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.projects-link:hover .projects-cta-img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
