:root {
  --primary-color: #0B1D51;
  --accent-color: #00ADB5;
  --bg-white: #FFFFFF;
  --bg-section: #F5F7FA;
  --text-primary: #1A1A1A;
  --text-secondary: #6B7280;
  --border-color: #E5E7EB;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary-color);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); }

p {
  line-height: 1.8;
  color: var(--text-secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 24px; */
  padding-left: 15px;
  padding-right: 15px;
}

.section {
  padding: 80px 0;
}

.section-bg {
  background-color: var(--bg-section);
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.125rem;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-color);
  color: white;
}

.btn-primary:hover {
  background-color: #009aa1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background-color: white;
  color: var(--primary-color);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

header {
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-placeholder {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0f2a6e 100%);
  color: white;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: white;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);

 

}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #00d4de);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  /* text-align: center; */
}

.card h3 {
  margin-bottom: 12px;
  color: var(--primary-color);
}

.card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 48px;

  
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-lg);
}

.step h3 {
  margin-bottom: 12px;
}




.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.project-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  font-weight: 700;
}

.project-content {
  padding: 24px;
}

.project-content h3 {
  margin-bottom: 12px;
}

.project-content p {
  margin-bottom: 20px;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), #0f2a6e);
  color: white;
  /* padding: 80px 0; */
  text-align: center;

  border-radius: 30px;
  margin:60px -20px;
  padding:60px 20px;
  margin-left: 12%;
  width:80%;
}

.cta-section h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.client-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.client-logo {
  width: 120px;
  height: 120px;
  background: var(--bg-section);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

.founder-section {
  background: white;
  padding: 80px 0;
}

.founder-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.founder-image-container {
  text-align: center;
}

.founder-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 50%;
}

 .social-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.social-icon:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-4px);
 } 

.founder-text h2 {
  margin-bottom: 16px;
}

.founder-text h3 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 24px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);

}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 173, 181, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), #00d4de);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-text h2 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.contact-info-text p {
  color: var(--text-secondary);
}

footer {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {



  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    background: transparent;
    padding-left: 15px;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }





  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: white;
    flex-direction: column;
    padding: 80px 32px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    align-items: flex-start;
    gap: 24px;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .section {
    padding: 60px 0;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .founder-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {


  .container {
    padding: 0 16px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .card {
    padding: 24px;
  }

  .contact-form {
    padding: 24px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.mission-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
}

.mission-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #00d4de);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--primary-color);
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}







.company-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.company-btn {
  text-decoration: none;
  /* background: #0d6efd; */
  background:  var(--accent-color);
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 15px;
  transition: 0.3s ease;
}

.company-btn:hover {
  background: #084298;
}


/* .dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background: white;
  min-width: 160px;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 1000;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: black;
}

.dropdown-menu li a:hover {
  background: #f2f2f2;
}

.dropdown:hover .dropdown-menu {
  display: block;
} */





.dropdown {
  position: relative;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 100%;   /* directly below Company */
  left: 0;

  display: none;

  background: white;
  min-width: 160px;

  border-radius: 10px;
  padding: 8px 0;

  box-shadow: 0 4px 12px rgba(0,0,0,0.1);

  z-index: 1000;
}

/* Important fix */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Links */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: black;
}

.dropdown-menu li a:hover {
  background: #f2f2f2;
}

























.fa-linkedin{
    

 width:50px;
  height:50px;
  /* background:#0077b5; */
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#0A66C2;
  font-size:27px;
  /* text-decoration:none; */
  /* margin-top: 3%; */
  padding-top: 27%;
  padding-left: 23%;

}

.fa-linkedin:hover{
    transform:scale(1.2);
}

.fa-github{
    font-size:35px;
    color:black;
}
    

.fa-github:hover{
    transform:scale(1.2);
}

.fa-twitter{
    font-size:32px;
    color:#1DA1F2;
}
    

.fa-twitter:hover{
    transform:scale(1.2);
}


/* body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#f5f7fb;
} */
 

.contact-section{
    padding:5px 20px;
    max-width:1000px;
    margin:auto;
    margin-top: -0%;
}

.contact-section h3{
    text-align:center;
    font-size:60px;
    color:#061540;
    margin-bottom:10px;
    

}

.subtitle{
    text-align:center;
    color:#666;
    margin-bottom:50px;
    /* font-size:17px; */
    margin-top: 4%;
    font-family: inherit;
  font-size: 1rem;
}

.contact-card{
    background:white;

    border-radius:25px;

    padding:30px;

    display:flex;
    align-items:center;

    gap:20px;

    margin-bottom:45px;
    margin-top: -2%;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);

    transition:0.3s;
}

.contact-card:hover{
    transform:translateY(-5px);
}




.icon-box{
    width:10px;
    height:10px;

    background:linear-gradient(to right,#00bcd4,#0097a7);

    border-radius:25px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:30px;

    color:white;
}

.contact-text h4{
    color:#00838f;
    margin-bottom:10px;
    font-size:20px;
}

.contact-text p{
    font-size:17px;
    color:#222;
    margin:8px 0;
}

.contact-text span{
    color:#666;
    font-size:18px;
}





.about-icon{
    width:120px;
    height:80px;

    border-radius:50%;

    background:#0b1f4d;

    display:flex;
    justify-content:center;
    align-items:center;

    /* color:skyblue; */
    color:var(--accent-color);

    font-size:19px;

    margin:auto;

    transition:0.3s;
}

.about-icon:hover{
    transform:scale(1.1);
}








.team-section {
  padding: 80px 20px;
  text-align: center;
}

.team-section h1 {
  font-size: 42px;
  margin-bottom: 40px;
}

.team-card {
  max-width: 350px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.team-card img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}

.team-card h2 {
  margin-top: 20px;
  font-size: 28px;
}

.role {
  color: #0d6efd;
  font-weight: 600;
  margin: 10px 0;
}

.team-socials {
  margin-top: 20px;
}

.team-socials a {
  margin: 0 10px;
  font-size: 24px;
  color: #0d6efd;
}