:root {
  --primary-color: #20283f;
  --white: #ffffff;
  --off-white: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --border-light: #e2e8f0;
  --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --border-radius: 8px;
  --border-radius-large: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: 'Raleway', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3 {
  font-family: 'Nata Sans', sans-serif;
}

html {
  scroll-behavior:smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Glassmorphism Styles */
.glass-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--border-radius-large);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.25);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px 0 rgba(31, 38, 135, 0.35);
}

/* Container */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 5%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 90%;
  max-width: 1100px;
  z-index: 1000;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.1);
  top: 12px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  margin-left: 10px; 
}

.nav-logo>img {
  width: 140px;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}
.nav-items {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-grow: 1;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 3px 0;
  transition: var(--transition);
}

.social-links-header {
  display: flex;
  gap: 20px;
  align-items: center;
}
.social-link-header{
  display: flex;
  align-items: center;
  justify-content: center;
  color:var(--text-dark);
  transition: var(--transition);
  text-decoration: none; 
}

.social-link-header:hover{
  color:var(--primary-color);
  transform: scale(1.3)
}

.social-link-header i {
  font-size: 20px;  
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  /* background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%); */
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-svg {
  position: absolute;
  /* filter: drop-shadow(0 10px 20px rgba(107, 114, 128, 0.2)); */
  transition: filter 0.6s ease, transform 0.6s ease;
}

.hero-svg:nth-child(1) {
  animation: float 8s ease-in-out infinite;
  transform: rotate(15deg);
}

.hero-svg:nth-child(2) {
  bottom: 20%;
  left: 10%;
  animation: float 10s ease-in-out infinite reverse;
  transform: rotate(-20deg);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    position: relative;
    z-index: 25;
}

.hero-badge svg {
    width: 1rem;
    height: 1rem;
}

.explore-icon {
  position: absolute;
  bottom: 10%;
  width: 30px;
  stroke-width: 10px;
  stroke: var(--primary-color);
  animation: bounce 1.5s infinite;
  transform: translateX(-50%);
}


@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate( -50%, -15px); }
}
.hero-svg:nth-child(4) {
  top: 20%;
  left: 20%;
  animation: float 12s ease-in-out infinite;
  transform: rotate(30deg);
}

.hero-svg:nth-child(5) {
  bottom: 30%;
  right: 20%;
  animation: float 9s ease-in-out infinite reverse;
  transform: rotate(-15deg);
}

.hero-svg:nth-child(6) {
  top: 60%;
  right: 30%;
  animation: float 11s ease-in-out infinite;
  animation-delay: -3s;
  transform: rotate(60deg);
}


path{
    /* fill:none; */
    transition: all 2s ease;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--text-dark);
  overflow: hidden;
}

.gradient-text {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateY(0);
  transition: transform 0.6s ease;

}

.heading-gradient{
  background: linear-gradient(135deg, var(--primary-color), #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateY(0);
  transition: transform 0.6s ease;
}

.hero-subtitle {
  font-size: 18px;
  color: #696767;
  margin-bottom: 32px;
  font-family: var(--font-family);
  /* font-family: "Quincy"; */
  /* font-family: "Juana"; */
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-family);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary svg {
  width: 0;
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.btn-secondary:hover svg {
  width: 20px;
  transform: translateX(5px);
  transition: var(--transition);
}


/* About Section */

.about-us{
  position: relative;
}
.about-us-page{
  padding: 0;
}

.about-title{
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -1px;
    text-align: center;
    padding-top: 48px;
    position: relative;
    z-index: 1;
}
.about-us-split {
  /* position: relative; */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  /* background-color: var(--white); */
}

.about-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.about-left {
  flex: 1 1 500px;
}

.about-left h2 {
  font-size: 2.5rem;
  color: #0a1a2f; /* Navy Blue */
  margin-bottom: 10px;
}

.accent-line {
  width: 60px;
  height: 4px;
  background-color: #0a1a2f;
  margin-bottom: 20px;
  border-radius: 2px;
}

.about-left p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-right {
  flex: 1 1 400px;
  text-align: center;
  /* flex: 1; */
}

.logo-svg.animate path {
  stroke-width: 15px;
  fill: none;
  fill-opacity: 0;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 6s ease forwards, fill-in 7s ease forwards;
  animation-delay: 0s, 10s; /* fill starts after draw ends */
}

.logo-svg.animate path:nth-child(1) {
  stroke: #061259;
  stroke-dasharray: 9700;
  stroke-dashoffset: 9700;
  animation-delay: 0s, 4s;
}

.logo-svg.animate path:nth-child(2) {
  stroke: #3b82f6;
  stroke-dasharray: 3100;
  stroke-dashoffset: 3100;
  animation-delay: 0.5s, 4s;
}

.logo-svg.animate path:nth-child(3) {
  stroke: #3b82f6;
  stroke-dasharray: 2920;
  stroke-dashoffset: 2920;
  animation-delay: 1s, 3.5s;
}

.logo-svg.animate path:nth-child(4) {
  stroke: #3b82f6;
  stroke-dasharray: 2920;
  stroke-dashoffset: 2920;
  animation-delay: 1.5s, 4s;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fill-in {
  to{
    fill-opacity: 1;
    fill: currentColor;
    stroke: white;
    filter: drop-shadow(0 0 10px black);
  }
}

/* Optional: set fill color using currentColor */
.logo-svg.animate path:nth-child(1) { color: #1a2a80; }
.logo-svg.animate path:nth-child(2),
.logo-svg.animate path:nth-child(3),
.logo-svg.animate path:nth-child(4) { color: #60a5fa; }

.about-right svg {
  max-width: 100%;
  height: auto;
}


/* Section Styles */
section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Section */

.services-section {
    background: var(--white);
    /* padding: 4rem; */
    position: relative;
    min-height: 100vh;
  }

  .services-background {
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
  }
  .blender{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0vh;
    z-index: 1;
    background: var(--white);
    box-shadow: 0px 10px 4px var(--white);
  }
  .services-svg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
  .services-svg g path{
    fill: var(--white);
    stroke: var(--white);
  }

  .svgActive{
    filter: drop-shadow(0px 0 7px #cbcbcb );
    animation: float 11s ease-in-out infinite reverse;
  }
  .featured-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--off-white);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 15px;
    text-transform: uppercase;
    transform: rotate(-5deg);
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px var(--primary-color);
    z-index: 2;
    transition: all 0.3s ease;
  }


  .services-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 4rem;
    
  }
  .service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    border-radius: 24px;
    padding: 32px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .service-card:hover {
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px 0 rgba(31, 38, 135, 0.3);
    /* transform: translateY(-8px) scale(1.02); */
    /* box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2); */
    color: var(--white);
  }

  .service-card:hover .featured-tag {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 0px 8px #1e40af;
    transform: rotate(0deg);
    transition: all 0.4s ease;
  }

  .service-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-radius: 24px;
    background-color: var(--primary-color);
    z-index: -1;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
  }

    .service-card:hover .service-overlay {
        width: 100%;
        left: auto;
        right: 0;
        opacity: 1;
        visibility: visible;
    }  

  .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    background-color: var(--primary-color);
    color: var(--white);
    transition: all 0.5s ease;
  }

  .service-card:hover .icon-wrapper {
    background-color: var(--white);
    color: var(--primary-color);
  }

  .service-card:hover .service-btn{
    background: var(--white);
    color: var(--primary-color);
  }

  .card-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 12px;
    /* color: var(--text-color); */
    /* color: #101828; */
  }

  .card-description {
    color: var(--text-sec);
    line-height: 1.2;
  }

  @media (max-width: 992px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 600px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
  }
  

/* .services {
  background-color: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.service-card {
  padding: 40px 30px;
  text-align: center;
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 40px 0 rgba(31, 38, 135, 0.3);
  transform: translateY(-8px) scale(1.02);
}

.service-icon {
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}*/

.service-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  margin-top: 1.5rem;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.service-btn:hover {
  background-color: #1e40af !important;
  color:var(--white) !important;
  border: 1px solid var(--white);
  transform: translateY(-2px);
}

/* Partners Section */
.partners {
  background-color: var(--white);
  overflow: hidden;
  position: relative;
}

.partners-background {
  /* background-color: var(--primary-color); */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.partners-background svg path:nth-child(0) {
    fill: #ffffff;
    filter: drop-shadow(0 4px 10px rgb(172, 172, 172));
    transform: translateY(-100px);
}
.partners-background svg path:nth-child(2) {
    fill: #ffffff;
    filter: drop-shadow(0 4px 10px rgb(172, 172, 172));
    transform: translateY(-280px);
}

.partners-background svg path:nth-child(3) {
    fill: #ffffff;
    filter: drop-shadow(0 4px 10px rgb(172, 172, 172));
    transform: translateY(-290px);

}

.partners-background svg path:nth-child(4) {
    fill: #ffffff;
    filter: drop-shadow(0 4px 10px rgb(172, 172, 172));
    transform: translateY(-210px);
}

.partners-background svg path:nth-child(5){
    fill: #ffffff;
    filter: drop-shadow(0 4px 10px rgb(172, 172, 172));
    transform: translateY(-240px);
}
.partners-marquee {
  margin-top: 60px;
  overflow: hidden;
}

.partners-track {
  display: flex;
  animation: marquee 20s linear infinite;
}

.partner-logo {
  position: relative;
  flex-shrink: 0;
  padding: 20px 40px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  border: 2px solid var(--border-light);
  border-radius: var(--border-radius);
  margin-right: 30px;
  background-color: transparent;
  transition: var(--transition);
}

.partner-logo:hover {
  box-shadow: var(--shadow-medium);
  color: var(--white);
}

.partner-logo i {
  transition: var(--transition);
}

.partner-logo:hover i {
  transform: scale(1.2);
}

.partner-logo::before{
  content: "";
  position: absolute;
  border-radius: var(--border-radius);
  z-index: -1;
  background-color: var(--primary-color);
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  opacity: 1;
  transition: width 0.3s ease-in-out;
}

.partner-logo:hover::before{
  width: 100%;
}

/* CyberSecurity Section */
.cybersecurity {
  padding: 60px 2px;
  position: relative;
}

.cybersecurity-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cybersecurity-background svg defs pattern{
  stroke: #061259;
}

/* Header */
.cyber-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 64px auto;
  position: relative;
  z-index: 1;
}

.tagline {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--primary-color);
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 9999px;
  margin-bottom: 16px;
}

.cyber-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.cyber-description {
  font-size: 20px;
  color: var(--text-light);
}

/* Grid */
.cyber-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .cyber-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cyber-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cards */
.cyber-card {
 background: rgba(255, 255, 255, 0.15);
 backdrop-filter: blur(20px);
 -webkit-backdrop-filter: blur(20px);
 border: 1px solid rgba(255, 255, 255, 0.25);
 box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
 border-radius: 24px;
  padding: 24px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.cyber-card:hover {
  border-color: var(--primary-color);
}

.cyber-card-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cyber-icon {
  padding: 12px;
  /* background-color: #1f2937; */
  border-radius: 8px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.cyber-card-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.cyber-card-text {
  color: var(--text-light);
  font-size: 16px;
}


/* Testimonials Section */
.testimonials {
  position: relative;
  background-color: var(--off-white);
}

.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.testimonials-background svg g {
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
}
.CirclesRotate{
  transform: rotate(90deg) !important;
  transition: all 0.7s ease-in-out !important;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.testimonial-card {
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.8);
}

.testimonial-content {
  margin-bottom: 30px;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.author-info h4 {
  color: var(--text-dark);
  margin-bottom: 5px;
}

.author-info span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Clients Section */
.clients {
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}

.clients-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.clients-background svg{
  position: absolute;
  bottom: 0;
  left: 0;
}

.clients-animation{
  fill: transparent;
  stroke:rgb(173, 173, 173);
  stroke-width: 1px;
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  animation: stroke 5s ease-in-out infinite alternate;
}

@keyframes stroke {
  to {
    stroke-dashoffset: 0;
    fill: var(--off-white);
  }
}

.clients-background svg g{
  fill: var(--white);
  transition: all 0.5s ease-in-out;
}

.clients-animation{
  filter: drop-shadow(0 4px 10px rgb(172, 172, 172));
  transition: all 0.5s ease-in-out;
}

.clients-marquee {
  overflow: hidden;
}

.clients-track {
  display: flex;
  animation: marquee-reverse 25s linear infinite;
}

.client-logo {
  flex-shrink: 0;
  padding: 15px 30px;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  margin-right: 25px;
  background-color: var(--off-white);
  transition: var(--transition);
}

.client-logo:hover {
  transform: scale(1.05);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Blog Slider Section */
.blog-slider-container{
  padding: 32px 0;
}
.blog-slider-wrapper{
  position: relative;
  overflow: hidden;
}
.slider-btn{
  position: absolute;
  top: 50%; 
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: white;
  border: none;
  font-size: 20px;
  z-index: 1000;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: rgba(30, 58, 138, 0.3) 0px 4px 15px;
  transition: all 0.3s ease;
}
.slider-btn:hover{
  background: #1e40af;
}
.left-btn {
  left: 8px;
}
.right-btn {
  right: 8px;
}
.blog-slider{
  display: flex;
  gap: 20px;
  margin-top: 3rem;
  padding-bottom: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
  overflow-x: hidden; /* hides scrollbar */
}
.blog-slider-card{
  flex: 0 0 calc((100% - 40px) / 3); /* 3 cards, 2 gaps (20px each) */
  scroll-snap-align: start;
  border: 1px solid #52525A33;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
}
.blog-slider-card>img{
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.blog-slider-content{
  padding: 16px;
}
.blog-slider-content>h3{
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.blog-slider-content>p{
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-slider-btn{
  display: flex;
  justify-content: flex-end;
  color: var(--text-dark);
  font-weight: 600;
}
/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 16px 30px;
  font-size: 1.1rem;
}

.btn-primary.cta-btn {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-primary.cta-btn:hover {
  background-color: var(--off-white);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary.cta-btn {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary.cta-btn:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.cta-shape:nth-child(1) {
  width: 200px;
  height: 200px;
  top: -100px;
  right: -100px;
  animation-delay: -2s;
}

.cta-shape:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
  animation-delay: -4s;
}

.cta-shape:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 10%;
  animation-delay: -6s;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 100px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 12px;
  margin-bottom: 60px;
}

.footer-section h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-section h3 span {
  color: #3b82f6;
}

.footer-section p {
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.footer-column h4 {
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--white);
}

.newsletter {
  max-width: 400px;
  width:100%;
  
}

.newsletter p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-family);
}

.newsletter-form input::placeholder {
  color: #94a3b8;
}

.newsletter-btn {
  padding: 12px 15px;
  background-color:rgba(255, 255, 255, 0.1);;
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}

/* Image Styles */
.section-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-large);
  margin: 40px 0;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-large);
  margin-top: 40px;
}

.testimonial-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-content p {
  color: #94a3b8;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes rotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
}

.animate-slide-up:nth-child(2) { animation-delay: 0.2s; }
.animate-slide-up:nth-child(3) { animation-delay: 0.4s; }

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .about-title {
    padding-top: 0;
    margin-bottom: 1.3rem;
 }
  .about-us-split {
    gap: 12px;
  }
  .about-right{
    flex: auto;
  }
  .cta-title {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .blog-slider-card {
    flex: 0 0 calc((100% - 20px) / 2); /* 2 cards */
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-links {
    gap: 20px;
}
}

@media (max-width: 902px) {
  .navbar{
    top: 3%;
  }
  .nav-menu {
    position: fixed;
    left: -150%;
    top: 80px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    padding: 30px 0;
  }

  .nav-items {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 20px;
  }
  
  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .nav-toggle span {
    transition: all 0.3s ease;
  }

}

@media (max-width: 768px) {

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    /* width: 100%; */
    max-width: 300px;
    justify-content: center;
  }
  .cta-btn{
    width: 100%;
  }
  .services-section{
    padding-top: 0;
  }
  .services-title,.about-title,.section-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .blog-slider-card {
    flex: 0 0 99%; /* 1 card */
  }
  .blog-slider-card>img {
    height: 220px;
  }
  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .partner-logo, .client-logo {
    font-size: 1.2rem;
    padding: 15px 25px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }
 
  section {
    padding: 70px 0;
  }

  .cyber-title {
    font-size: 26px;
    line-height: normal;
  }

  .about-left p {
    font-size: 1rem; 
    text-align: justify;
  }

  .section-header {
    margin-bottom: 50px;
  }
  .service-card, .testimonial-card {
    padding: 30px 20px;
  }

  .client-logo {
    font-size: 1rem;
    margin-right: 12px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}


.footer-logo img{
width: 160px;
margin-bottom: 15px;

}