/* Service Page Specific Styles */

/* Service page navigation states */
.service-hero + * .navbar,
.service-hero ~ * .navbar {
  /* Navigation will be light on service hero sections (dark backgrounds) */
}

.section-alt .navbar,
.service-details .navbar,
.service-features.section-alt .navbar,
.service-cta.section-alt .navbar,
.other-services .navbar {
  /* Navigation will be dark on light sections */
}

.service-hero {
  background: linear-gradient(
    135deg,
    rgba(58, 155, 180, 0.9) 0%,
    rgba(121, 187, 204, 0.8) 100%
  );
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(58, 155, 180, 0.85) 0%,
    rgba(121, 187, 204, 0.75) 100%
  );
  z-index: 1;
}

.service-hero-content {
  position: relative;
  z-index: 2;
}

/* Big Data Solutions Hero Background */
.big-data-hero {
  background-image: url("https://images.pexels.com/photos/590011/pexels-photo-590011.jpeg?auto=compress&cs=tinysrgb&w=1920");
}

/* Cyber Security Hero Background */
.cyber-security-hero {
  background-image: url("https://images.pexels.com/photos/60504/security-protection-anti-virus-software-60504.jpeg?auto=compress&cs=tinysrgb&w=1920");
}

/* I.T & Training Hero Background */
.it-training-hero {
  background-image: url("https://images.pexels.com/photos/3184287/pexels-photo-3184287.jpeg?auto=compress&cs=tinysrgb&w=1920");
}

.service-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.service-hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

/* Service Details */
.service-details {
  padding: 80px 0;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.details-content h2 {
  color: #3a9bb4;
  margin-bottom: 2rem;
}

.details-content p {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 1.5rem;
  text-align: left;
}

.details-image img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.single-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #3a9bb4;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-item h3 {
  color: #3a9bb4;
  margin-bottom: 1rem;
}

.feature-item p {
  color: #666;
  margin: 0;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3a9bb4, #79bbcc);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.process-step h3 {
  color: #333;
  margin-bottom: 1rem;
}

.process-step p {
  color: #666;
  margin: 0;
}

/* Training Programs */
.training-programs {
  padding: 80px 0;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.program-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #3a9bb4;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.program-card h3 {
  color: #3a9bb4;
  margin-bottom: 1rem;
}

.program-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.program-card ul {
  list-style: none;
  padding: 0;
}

.program-card li {
  color: #666;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.program-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3a9bb4;
  font-weight: bold;
}

/* CTA Section */
.service-cta {
  text-align: center;
  padding: 80px 0;
}

.cta-content h2 {
  margin-bottom: 1.5rem;
  color: #333;
}

.cta-content p {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Other Services Navigation */
.other-services {
  padding: 80px 0;
  background: #f8fafb;
}

.other-services h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.other-service-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(58, 155, 180, 0.1);
  text-decoration: none;
  color: inherit;
  display: block;
}

.other-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: inherit;
}

.other-service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  position: relative;
}

/* Big Data Icon for other services */
.other-service-card .big-data-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3a9bb4, #79bbcc);
  border-radius: 16px;
  transform: rotate(45deg);
}

.other-service-card .big-data-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 6px;
  z-index: 2;
  box-shadow: inset 3px 3px 0 rgba(58, 155, 180, 0.3),
    inset -3px -3px 0 rgba(58, 155, 180, 0.3);
}

/* Cyber Security Icon for other services */
.other-service-card .cyber-security-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3a9bb4, #79bbcc);
  border-radius: 50%;
}

.other-service-card .cyber-security-icon .shield {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 36px;
  background: white;
  border-radius: 15px 15px 0 0;
  z-index: 2;
}

.other-service-card .cyber-security-icon .shield::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 12px solid white;
}

.other-service-card .cyber-security-icon .shield::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #3a9bb4;
  font-weight: bold;
  font-size: 0.9rem;
}

/* IT Training Icon for other services */
.other-service-card .it-training-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3a9bb4, #79bbcc);
  border-radius: 12px;
}

.other-service-card .it-training-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 24px;
  background: white;
  border-radius: 3px;
  z-index: 2;
  box-shadow: inset 0 1px 0 rgba(58, 155, 180, 0.3);
}

.other-service-card .it-training-icon .laptop-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.other-service-card .it-training-icon .laptop-line {
  width: 22px;
  height: 1.5px;
  background: #3a9bb4;
  margin: 2px 0;
  border-radius: 1px;
}

.other-service-card .it-training-icon .laptop-line:nth-child(2) {
  width: 18px;
}

.other-service-card .it-training-icon .laptop-line:nth-child(3) {
  width: 15px;
}

.other-service-card h3 {
  color: #3a9bb4;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.other-service-card p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.other-service-card .service-arrow {
  color: #3a9bb4;
  font-size: 1.2rem;
  margin-top: 1rem;
  transition: transform 0.3s ease;
}

.other-service-card:hover .service-arrow {
  transform: translateX(5px);
}
/* Responsive Design for Service Pages */
@media (max-width: 768px) {
  .service-hero-content h1 {
    font-size: 2.5rem;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .details-image {
    order: -1;
  }

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

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

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

  .other-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .service-hero {
    padding: 100px 0 60px;
  }

  .service-hero-content h1 {
    font-size: 2rem;
  }

  .program-card,
  .feature-item,
  .process-step {
    padding: 1.5rem;
  }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FAFAFA;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

p {
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.light-bg .nav-logo a {
    color: rgba(51, 51, 51, 0.95);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.nav-logo a:hover {
    color: #79BBCC;
    text-shadow: 0 2px 15px rgba(121, 187, 204, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar.light-bg .nav-link {
    color: rgba(51, 51, 51, 0.9);
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.3);
}

.nav-link:hover,
.nav-link.active {
    color: #3A9BB4;
    text-shadow: 0 2px 8px rgba(58, 155, 180, 0.4);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3A9BB4;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.9);
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.navbar.light-bg .bar {
    background-color: rgba(51, 51, 51, 0.9);
    box-shadow: 0 1px 3px rgba(255, 255, 255, 0.2);
}
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 30%, #16213e 60%, #0f1419 100%);
    padding: 80px 2rem 0;
    position: relative;
    overflow: hidden;
    perspective: 2000px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top right, rgba(58, 155, 180, 0.3) 0%, transparent 70%),
        radial-gradient(ellipse at bottom left, rgba(121, 187, 204, 0.2) 0%, transparent 70%),
        linear-gradient(45deg, transparent 0%, rgba(58, 155, 180, 0.1) 50%, transparent 100%);
    opacity: 0.8;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(58, 155, 180, 0.1);
    border: 1px solid rgba(58, 155, 180, 0.3);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.1s both;
    transition: all 0.3s ease;
}

.hero-tag:hover {
    background: rgba(58, 155, 180, 0.15);
    border-color: rgba(58, 155, 180, 0.4);
    transform: translateY(-2px);
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: #79BBCC;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(121, 187, 204, 0.5);
}

.tag-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.tag-star {
    color: #79BBCC;
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.hero-title {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    line-height: 1.2;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.4s both;
    justify-content: center;
}

.hero-visual {
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform-style: preserve-3d;
    pointer-events: none;
}

.metallic-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.metallic-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #ffffff 0%,
        #3A9BB4 25%,
        #79BBCC 50%,
        #ffffff 75%,
        #3A9BB4 100%
    );
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 0 50px rgba(58, 155, 180, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.2),
        0 10px 40px rgba(0, 0, 0, 0.3);
    animation: rotateRing 15s linear infinite;
    transform-style: preserve-3d;
}

.metallic-ring::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: radial-gradient(
        circle,
        transparent 30%,
        rgba(58, 155, 180, 0.1) 40%,
        transparent 70%
    );
    border-radius: 50%;
    animation: innerGlow 3s ease-in-out infinite alternate;
}

.metallic-ring::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(
        from 90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    border-radius: 50%;
    animation: shimmerRing 2s linear infinite;
    z-index: -1;
}

.ring-1 {
    top: 20%;
    left: 10%;
    width: 180px;
    height: 180px;
    animation-delay: 0s;
}

.ring-2 {
    top: 50%;
    right: 15%;
    width: 220px;
    height: 220px;
    animation-delay: 2s;
}

.ring-3 {
    top: 70%;
    left: 20%;
    width: 150px;
    height: 150px;
    animation-delay: 4s;
}

.flowing-shape {
    position: absolute;
    background: linear-gradient(
        135deg,
        rgba(58, 155, 180, 0.6) 0%,
        rgba(121, 187, 204, 0.4) 50%,
        rgba(255, 255, 255, 0.3) 100%
    );
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: morphShape 12s ease-in-out infinite;
    box-shadow: 
        0 20px 60px rgba(58, 155, 180, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.shape-1 {
    width: 300px;
    height: 200px;
    top: 30%;
    right: 5%;
    animation-delay: 1s;
}

.shape-2 {
    width: 250px;
    height: 180px;
    top: 15%;
    left: 5%;
    animation-delay: 3s;
}

@keyframes rotateRing {
    0% {
        transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) rotateZ(0deg);
    }
    100% {
        transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) rotateZ(360deg);
    }
}

@keyframes morphShape {
    0% {
        border-radius: 50% 30% 70% 40%;
        transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(0px);
    }
    25% {
        border-radius: 30% 70% 40% 50%;
        transform: rotateX(calc(var(--rx, 0deg) + 15deg)) rotateY(calc(var(--ry, 0deg) + 20deg)) translateY(-15px);
    }
    50% {
        border-radius: 70% 40% 50% 30%;
        transform: rotateX(calc(var(--rx, 0deg) - 10deg)) rotateY(calc(var(--ry, 0deg) - 15deg)) translateY(-25px);
    }
    75% {
        border-radius: 40% 50% 30% 70%;
        transform: rotateX(calc(var(--rx, 0deg) + 5deg)) rotateY(calc(var(--ry, 0deg) + 10deg)) translateY(-10px);
    }
    100% {
        border-radius: 50% 30% 70% 40%;
        transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(0px);
    }
}

@keyframes innerGlow {
    0% {
        background: radial-gradient(
            circle,
            transparent 30%,
            rgba(58, 155, 180, 0.1) 40%,
            transparent 70%
        );
    }
    100% {
        background: radial-gradient(
            circle,
            transparent 30%,
            rgba(121, 187, 204, 0.2) 40%,
            transparent 70%
        );
    }
}

@keyframes shimmerRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(58, 155, 180, 0.3);
    border-radius: 50%;
    animation: floatParticle 20s linear infinite;
    box-shadow: 0 0 20px rgba(58, 155, 180, 0.5);
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 25%;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    left: 40%;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    left: 60%;
    animation-delay: 9s;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 75%;
    animation-delay: 12s;
}

.particle:nth-child(6) {
    width: 7px;
    height: 7px;
    left: 85%;
    animation-delay: 15s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Tech Grid Background */
.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #3A9BB4;
    color: white;
}

.btn-primary:hover {
    background: #2E8BA1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 155, 180, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #3A9BB4;
    border: 2px solid #3A9BB4;
}

.btn-secondary:hover {
    background: #3A9BB4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 155, 180, 0.3);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background: white;
}

/* Story Section Enhancement */
.story-section {
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.story-text {
    padding-right: 2rem;
}

.story-text h2 {
    text-align: left;
    margin-bottom: 2rem;
    color: #333;
}

.story-text p {
    text-align: left;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.story-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(58, 155, 180, 0.1) 0%, rgba(121, 187, 204, 0.05) 100%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-image:hover::before {
    opacity: 1;
}

/* Story CTA Buttons */
.story-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Team Structure Section within About */
.team-structure-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(58, 155, 180, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.team-structure-section.active {
    max-height: 1000px;
    opacity: 1;
    padding-top: 3rem;
}

.team-structure-section h3 {
    color: #3A9BB4;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.team-structure-section .team-role h4 {
    color: #3A9BB4;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

/* Floating Elements around Story Image */
.story-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.story-float-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(58, 155, 180, 0.8), rgba(121, 187, 204, 0.6));
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(58, 155, 180, 0.3);
    animation: storyElementFloat 8s ease-in-out infinite;
}

.story-float-element::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: innerPulse 4s ease-in-out infinite;
}

.float-element-1 {
    width: 60px;
    height: 60px;
    top: -30px;
    right: -30px;
    animation-delay: 0s;
}

.float-element-2 {
    width: 40px;
    height: 40px;
    top: 50%;
    left: -20px;
    animation-delay: 2s;
}

.float-element-3 {
    width: 50px;
    height: 50px;
    bottom: -25px;
    right: 20%;
    animation-delay: 4s;
}

.float-element-4 {
    width: 35px;
    height: 35px;
    top: 20%;
    left: -15px;
    animation-delay: 6s;
}

/* Geometric Shapes */
.story-geometric {
    position: absolute;
    border: 2px solid rgba(58, 155, 180, 0.4);
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    animation: geometricFloat 12s ease-in-out infinite;
}

.geometric-square {
    width: 30px;
    height: 30px;
    top: 15%;
    right: -15px;
    transform: rotate(45deg);
    animation-delay: 1s;
}

.geometric-triangle {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 26px solid rgba(121, 187, 204, 0.6);
    background: none;
    border-radius: 0;
    top: 70%;
    left: -20px;
    animation-delay: 3s;
}

.geometric-hexagon {
    width: 40px;
    height: 23px;
    background: rgba(58, 155, 180, 0.3);
    position: relative;
    top: 40%;
    right: -25px;
    animation-delay: 5s;
}

.geometric-hexagon::before,
.geometric-hexagon::after {
    content: '';
    position: absolute;
    width: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}

.geometric-hexagon::before {
    bottom: 100%;
    border-bottom: 12px solid rgba(58, 155, 180, 0.3);
}

.geometric-hexagon::after {
    top: 100%;
    border-top: 12px solid rgba(58, 155, 180, 0.3);
}

/* Data Particles */
.story-data-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.story-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(58, 155, 180, 0.6);
    border-radius: 50%;
    animation: storyParticleFloat 15s linear infinite;
    box-shadow: 0 0 10px rgba(58, 155, 180, 0.4);
}

.story-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.story-particle:nth-child(2) { left: 30%; animation-delay: 3s; }
.story-particle:nth-child(3) { left: 50%; animation-delay: 6s; }
.story-particle:nth-child(4) { left: 70%; animation-delay: 9s; }
.story-particle:nth-child(5) { left: 90%; animation-delay: 12s; }

@keyframes storyElementFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-15px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-25px) rotate(180deg);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-10px) rotate(270deg);
        opacity: 1;
    }
}

@keyframes innerPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

@keyframes geometricFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
        opacity: 0.8;
    }
    66% {
        transform: translateY(-30px) rotate(240deg);
        opacity: 0.7;
    }
}

@keyframes storyParticleFloat {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}
/* Story Stats */
.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(58, 155, 180, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3A9BB4;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating Elements */
.story-floating {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(58, 155, 180, 0.1), rgba(121, 187, 204, 0.05));
    border-radius: 50%;
    animation: storyFloat 20s ease-in-out infinite;
}

.story-floating:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.story-floating:nth-child(2) {
    top: 70%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes storyFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Responsive Design for Story Section */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-text {
        padding-right: 0;
        order: 2;
    }
    
    .story-image {
        order: 1;
    }
    
    .story-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .story-cta-buttons .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .story-floating-elements {
        display: none;
    }
    
    .story-data-particles {
        display: none;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .story-image img {
        height: 300px;
    }
    
    .story-stats {
        margin-top: 2rem;
        padding-top: 2rem;
    }
}

/* Data Challenge Section Enhancement */
#overview {
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 30%, #16213e 60%, #0a0a1a 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

#overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(58, 155, 180, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(121, 187, 204, 0.15) 0%, transparent 50%);
    z-index: 1;
}

#overview .container {
    position: relative;
    z-index: 2;
}

.data-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
    overflow: hidden;
}

.data-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #3A9BB4;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(58, 155, 180, 0.6);
    animation: dataFloat 15s ease-in-out infinite;
}

.data-node::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: radial-gradient(circle, rgba(58, 155, 180, 0.4), transparent);
    border-radius: 50%;
    animation: dataPulse 3s ease-in-out infinite;
}

.data-node:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.data-node:nth-child(2) { top: 30%; left: 80%; animation-delay: 2s; }
.data-node:nth-child(3) { top: 60%; left: 15%; animation-delay: 4s; }
.data-node:nth-child(4) { top: 70%; left: 70%; animation-delay: 6s; }
.data-node:nth-child(5) { top: 40%; left: 50%; animation-delay: 8s; }
.data-node:nth-child(6) { top: 80%; left: 30%; animation-delay: 10s; }
.data-node:nth-child(7) { top: 15%; left: 60%; animation-delay: 12s; }
.data-node:nth-child(8) { top: 50%; left: 85%; animation-delay: 14s; }

.data-connections {
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(58, 155, 180, 0.3), transparent);
    animation: dataFlow 8s linear infinite;
    transform-origin: left center;
}

.data-line:nth-child(1) {
    top: 25%;
    left: 10%;
    width: 200px;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.data-line:nth-child(2) {
    top: 45%;
    left: 60%;
    width: 150px;
    transform: rotate(-25deg);
    animation-delay: 2s;
}

.data-line:nth-child(3) {
    top: 65%;
    left: 20%;
    width: 180px;
    transform: rotate(35deg);
    animation-delay: 4s;
}

.data-line:nth-child(4) {
    top: 35%;
    left: 40%;
    width: 120px;
    transform: rotate(-10deg);
    animation-delay: 6s;
}

.data-streams {
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-stream {
    position: absolute;
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(121, 187, 204, 0.6), transparent);
    animation: streamFlow 12s linear infinite;
}

.data-stream:nth-child(1) { left: 25%; animation-delay: 0s; }
.data-stream:nth-child(2) { left: 45%; animation-delay: 3s; }
.data-stream:nth-child(3) { left: 65%; animation-delay: 6s; }
.data-stream:nth-child(4) { left: 85%; animation-delay: 9s; }

@keyframes dataFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) scale(0.9);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) scale(1.05);
        opacity: 0.9;
    }
}

@keyframes dataPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
}

@keyframes dataFlow {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    20% {
        transform: scaleX(1);
        opacity: 1;
    }
    80% {
        transform: scaleX(1);
        opacity: 1;
    }
    100% {
        transform: scaleX(0);
        opacity: 0;
    }
}

@keyframes streamFlow {
    0% {
        transform: translateY(-100vh);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

#overview .section-title {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#overview .section-text {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.section-text {
    font-size: 1.125rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-role {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #3A9BB4;
}

.team-role:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.team-role h3 {
    color: #3A9BB4;
    margin-bottom: 0.5rem;
}

.team-role p {
    color: #666;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(58, 155, 180, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.service-card:nth-child(1) .service-icon {
    /* Big Data Solutions Icon */
}

.service-card:nth-child(1) .service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3A9BB4, #79BBCC);
    border-radius: 20px;
    transform: rotate(45deg);
}

.service-card:nth-child(1) .service-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    z-index: 2;
    box-shadow: 
        inset 4px 4px 0 rgba(58, 155, 180, 0.3),
        inset -4px -4px 0 rgba(58, 155, 180, 0.3);
}

/* Data nodes for Big Data icon */
.service-card:nth-child(1) .service-icon .data-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.service-card:nth-child(1) .service-icon .data-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #3A9BB4;
    border-radius: 50%;
}

.service-card:nth-child(1) .service-icon .data-dot:nth-child(1) { top: -8px; left: -8px; }
.service-card:nth-child(1) .service-icon .data-dot:nth-child(2) { top: -8px; right: -8px; }
.service-card:nth-child(1) .service-icon .data-dot:nth-child(3) { bottom: -8px; left: -8px; }
.service-card:nth-child(1) .service-icon .data-dot:nth-child(4) { bottom: -8px; right: -8px; }
.service-card:nth-child(1) .service-icon .data-dot:nth-child(5) { top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* Cyber Security Icon */
.service-card:nth-child(2) .service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3A9BB4, #79BBCC);
    border-radius: 50%;
}

.service-card:nth-child(2) .service-icon::after {
    content: '🛡';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    z-index: 2;
}

/* Shield design for Cyber Security */
.service-card:nth-child(2) .service-icon .shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 48px;
    background: white;
    border-radius: 20px 20px 0 0;
    z-index: 2;
}

.service-card:nth-child(2) .service-icon .shield::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 16px solid white;
}

.service-card:nth-child(2) .service-icon .shield::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #3A9BB4;
    font-weight: bold;
    font-size: 1.2rem;
}

/* I.T & Training Icon */
.service-card:nth-child(3) .service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3A9BB4, #79BBCC);
    border-radius: 16px;
}

.service-card:nth-child(3) .service-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 32px;
    background: white;
    border-radius: 4px;
    z-index: 2;
    box-shadow: inset 0 2px 0 rgba(58, 155, 180, 0.3);
}

/* Laptop screen lines for I.T Training */
.service-card:nth-child(3) .service-icon .laptop-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.service-card:nth-child(3) .service-icon .laptop-line {
    width: 30px;
    height: 2px;
    background: #3A9BB4;
    margin: 3px 0;
    border-radius: 1px;
}

.service-card:nth-child(3) .service-icon .laptop-line:nth-child(2) {
    width: 25px;
}

.service-card:nth-child(3) .service-icon .laptop-line:nth-child(3) {
    width: 20px;
}

/* Remove old icon-bg class */
.icon-bg {
    width: 100%;
    height: 100%;
    display: none;
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #3A9BB4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #79BBCC;
}

/* Contact Section */
#contact {
    background: #f8fafb;
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3A9BB4;
}

/* Contact Form 7 Styling - Match Original Form */
.wpcf7-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.wpcf7-form p {
    margin-bottom: 1.5rem;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #3A9BB4;
}

.wpcf7-form input[type="submit"] {
    background: #3A9BB4;
    color: white;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
}

.wpcf7-form input[type="submit"]:hover {
    background: #2E8BA1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 155, 180, 0.3);
}

/* Remove default CF7 styling */
.wpcf7-form .wpcf7-response-output {
    border: none;
    margin: 1rem 0 0 0;
    padding: 0.5rem 0;
}

.wpcf7-form .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.wpcf7-form .wpcf7-validation-errors,
.wpcf7-form .wpcf7-mail-sent-ng,
.wpcf7-form .wpcf7-mail-sent-ok {
    border: none;
    background: none;
    color: #333;
    font-size: 0.9rem;
    margin: 1rem 0;
    padding: 0;
}

.wpcf7-form .wpcf7-mail-sent-ok {
    color: #28a745;
}

.wpcf7-form .wpcf7-mail-sent-ng,
.wpcf7-form .wpcf7-validation-errors {
    color: #dc3545;
}

.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: -moz-fit-content;
    height: fit-content;
}

.contact-info h3 {
    color: #3A9BB4;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
}

.contact-item span {
    color: #666;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #3A9BB4;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #2E8BA1;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(5deg);
    }
    66% {
        transform: translateY(-25px) rotate(-3deg);
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
    }
    
    .hero-title {
        font-size: 1.8rem;
        max-width: 90%;
        line-height: 1.3;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 32px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .metallic-ring {
        width: 120px !important;
        height: 120px !important;
    }
    
    .flowing-shape {
        width: 200px !important;
        height: 150px !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 80px 1rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        max-width: 95%;
        line-height: 1.4;
    }
    
    .hero-tag {
        padding: 0.6rem 1.2rem;
        gap: 0.6rem;
    }
    
    .tag-text {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .metallic-ring {
        width: 100px !important;
        height: 100px !important;
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.13 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}
.grow {
  flex-grow: 1;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

