:root {
  --primary: #0f62fe;
  --dark: #111;
  --light: #f9fafb;
  --text: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  color: var(--text);
  background: white;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  padding-top: 20px;
  margin: auto;
}

/* Header */
.header {
  background: white;
  border-bottom: 1px solid #eee;
  position: fixed;
  width: 100%;
  padding: 1px 0;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-img{
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.logo-text{
  color: green;
  font-family:'Times New Roman', Times, serif;
  font-size: clamp(1.5rem, 2vw, 1.6rem);
}

.logo-link{
  text-decoration: none;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  font-family:'Times New Roman', Times, serif;
}

.nav {
  position: relative;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  background: none;
  color: var(--primary);
  position: relative;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero */
.hero {
  
  background: var(--light);
  padding: 4rem 0;
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-group {
  bottom: 40px;
}

.btn {
  padding: 0.8rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}



.CeoContainer{
  width: 100%;
  display: flex;
  margin-top: 20px;
  justify-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.CeoBox{
  /* border: 1px solid gray; */
  border-radius: 5px;
  width: 360px;
  height: 470px;
  justify-items: center;
  justify-content: center;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);

  
  
}
.CeoImg{
  width: 360px;
  height: 470px;
  border-radius: 5px;
}

.CeoImg2{
  width: 360px;
  height: 270px;
  border-radius: 5px;
}

.CeoImgHeading{
  padding-left: 10px;
  font-size: 22px;
  width: 100%;
  text-align: left;
}

.CeoImgParagraph{
  padding: 10px;
}

.primary {
  background: var(--primary);
  color: white;
}

.secondary {
  border: 2px solid var(--primary);
  color: var(--primary);
  margin-left: 0.5rem;
  background-color: #fff;
}

/* Audience / Why Us Sections */
.audience,
.why-us {
  padding: 3rem 0;
}

.audience h2, .why-us h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.card {
  background: white;
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 10px;
}

.card h4{
  font-size: clamp(1.5rem 1.7vw, 1rem);
  text-align: left;
}

.card p{
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-align: left;
}

/* CTA */
.cta {
  background: var(--primary);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  background: #fafafa;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .nav-list {
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 200px;
    display: none;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 1rem;
  }

  .nav-list.nav-list-visible {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

/* Tablet & Desktop */
@media (min-width: 769px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .nav-list {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    border: none;
    width: auto;
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }
}


/* VIDEO SECTION */
.video-section {
  position:relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #00c0305b;
  margin-bottom: 40px;
}


/* VIDEO */

/* For home */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* z-index: 1; */
}


/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(53, 53, 53, 0.562);
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  /* z-index: 2; */
}

.animate{
  position: absolute;
  bottom: 20px;
}

/* CONTENT */
.content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  background-color: #4d4d4d07;
  width: 100%;
  height: 65vh;
  justify-content: center;
  /* align-items: center; */
  text-align: center;
  /* max-width: 600px; */
  padding-top: 150px;
  padding-bottom: 40px;
  
}

.content h3 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;

}

.content p {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  opacity: 0.9;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;

}

/* MOBILE */
@media (max-width: 768px) {
  .video-section {
    height: 75vh;
  }
  .content {
    padding-top: 100px;
  }
  .content p{
    margin-top: 10px;
    padding: 0 10px 0 10px;
    font-weight: bold;
  }
}

/* Testimonials*/

.testimonials{
  padding: 3rem 0;
}

.testimonial{
  display: flex;
  flex-wrap: wrap;
}

.testimonials-img{
  width: 60px;
  height: 80px;
  border-radius: 10px;
}

.testimonial-img-container{
  width: 61px;
}

.testimonial-text-container{
  margin-left: 10px;
  justify-items: center;
  padding-top: 20px;

}

/* SVG */
.svg-a{
  height: auto; 
  width: 60px; 
  fill: rgba(202, 98, 0, 0.938);
}

.svg-b{
  height: auto; 
  width: 60px; 
  fill: rgb(0, 97, 255);
}

.svg-c{
  height: auto; 
  width: 60px; 
  fill: rgb(0, 109, 15);
}

.svg-d{
  height: auto; 
  width: 60px; 
  fill: rgb(102, 0, 44);
}

.svg-e{
  height: auto; 
  width: 60px; 
  fill: rgb(0, 255, 21);
}

.svg-f{
  height: auto; 
  width: 60px; 
  fill: rgb(0, 133, 40);
}

.developer{
  text-decoration: none;
  color: var(--primary);
  font-weight: bold;
}

/* Fade Section */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* WhatsApp SVG */
.whatsapp-icon {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

/* Mobile optimization */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-icon {
    width: 26px;
    height: 26px;
  }
}


@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  animation: pulse 2.5s infinite;
}

.gap{
  height: 100px;
}