/* Reset */
* 
html, body {
  overflow-x: hidden;
  width: 100%;
}


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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0b0c2a;
  color: white;
}

/* Reset and base styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Poppins', sans-serif;
background-color: #0a0a0a;
}


a span {
color: inherit; /* Keeps the original text color */
text-decoration: none; /* Removes underline */
}




/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem;
  background: linear-gradient(90deg, #110235, #130135, #151414);
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.5rem;
}

.logo img {
  width: 36px;
  height: 36px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ffffffd9;
  font-weight: 500;
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #c084fc;
}

/* Active Link Animation */
.nav-links a.active {
  color: #df0dd8;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  animation: flow-border 3s linear infinite;
}

@keyframes flow-border {
  0% { box-shadow: 0 0 5px #947dab, 0 0 10px #ac9abe inset; }
  50% { box-shadow: 0 0 15px #b7a8c6, 0 0 25px #ac9abf inset; }
  100% { box-shadow: 0 0 5px #d0bee2, 0 0 10px #e4dbed inset; }
}

/* Buttons */
.buttons {
  display: flex;
  gap: 15px;
}

.login {
  background: #111;
  color: white;
  padding: 8px 20px;
  border-radius: 10px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.login:hover {
  background-color: #2a003f;
  color: #c084fc;
}

.get-started {
  background: linear-gradient(135deg, #1f1b2e, #3c246d);
  color: white;
  padding: 8px 22px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
}

.get-started:hover {
  background: linear-gradient(135deg, #2c2544, #4b2e91);
  transform: scale(1.05);
}

/* Social Icons */
.social-icons a {
  color: white;
  margin-left: 1rem;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #b9a7ff;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 999;
  position: absolute;
  top: 1.5rem;
  right: 1rem;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 5px;
  transition: 0.3s;
}

/* MEDIA QUERIES */

/* Tablets and below */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, #0a0a23, #150531, #000000);
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 15;
  }

  .nav-links.show {
    display: flex;
  }

  .buttons {
    display: none;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .nav-links {
    gap: 15px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .login, .get-started {
    padding: 6px 15px;
    font-size: 0.9rem;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    right: 1rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, #0a0a23, #150531, #000000);
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 15;
  }

  .nav-links.show {
    display: flex;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    z-index: 10;
  }

  .logo {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .nav-links a {
    padding: 10px 15px;
    width: 100%;
  }

  .buttons {
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
  }

  .social-icons {
    margin-top: 15px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hamburger {
    right: 1rem;
  }

  .navbar {
    padding: 0.8rem 1rem;
  }

  .logo img {
    width: 30px;
    height: 30px;
  }

  .logo {
    font-size: 1rem;
  }

  .login, .get-started {
    padding: 5px 10px;
    font-size: 0.85rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .social-icons a {
    font-size: 1rem;
    margin-left: 0.5rem;
  }
}







/* CTA Button */
.cta-button a {
padding: 0.5rem 1.2rem;
background: linear-gradient(90deg, #ff00cc, #3333ff);
color: white;
border-radius: 5px;
font-weight: 600;
font-size: 0.9rem;
text-decoration: none;
}

html {
scroll-padding-top: 70px;
}

/* Hero Section */
.hero-section {
margin-top: 100px;
padding-top: 100px;
background: linear-gradient(to right, #ff0080 0%, #7928ca 100%);
padding: 4.5rem 2rem 3rem;
position: relative;
text-align: center;
color: white;
}

.hero-section::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('wave-lines.svg');
opacity: 0.1;
background-repeat: no-repeat;
background-size: cover;
z-index: 0;
}

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

.hero-content h1 {
font-size: 2.4rem;
font-weight: 700;
}

.breadcrumb-home {
color: #00f0ff;
font-weight: bold;
font-size: 0.95rem;
}

.service-section {
background: linear-gradient(to right, #0e0f3a, #0b0c2a);
padding: 5rem 2rem;
overflow: hidden;
position: relative;
}

.service-content {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
max-width: 1300px;
margin: 0 auto;
gap: 4rem;
}

.text-col {
flex: 1;
color: white;
}

.image-col {
flex: 1;
position: relative;
transform-style: preserve-3d;
perspective: 1000px;
}

.parallax-img {
width: 100%;
max-width: 500px;
transition: transform 0.6s ease-out;
will-change: transform;
}

.service-section:hover .parallax-img {
transform: translateY(-10px) scale(1.03);
}

.tagline {
background: #00ffc8;
color: #000;
display: inline-block;
padding: 0.3rem 1rem;
border-radius: 2rem;
font-size: 0.9rem;
font-weight: 600;
margin-bottom: 1rem;
}

.heading {
font-size: 2rem;
font-weight: 800;
margin-bottom: 1rem;
}

.description {
color: #aaa;
font-size: 1rem;
margin-bottom: 1.5rem;
max-width: 90%;
}

.features-list {
list-style: none;
padding: 0;
margin: 0 0 2rem 0;
}

.features-list li {
background: #111235;
margin-bottom: 0.8rem;
padding: 0.7rem 1rem;
border-left: 4px solid #00ffc8;
border-radius: 5px;
font-size: 0.95rem;
}

.buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}

.btn-primary {
background: linear-gradient(to right, #00f0ff, #ff00cc);
color: white;
padding: 0.75rem 1.5rem;
border-radius: 6px;
font-weight: bold;
text-decoration: none;
}

.btn-outline {
padding: 0.75rem 1.5rem;
border: 1px solid #00ffc8;
color: #00ffc8;
border-radius: 6px;
font-weight: bold;
text-decoration: none;
}

/* âœ… MOBILE RESPONSIVE STYLES */
@media (max-width: 992px) {
.hero-content h1 {
  font-size: 2rem;
}

.service-content {
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.parallax-img {
  max-width: 300px;
  margin: 0 auto;
}

.heading {
  font-size: 1.8rem;
}

.description {
  font-size: 0.95rem;
}

.buttons {
  justify-content: center;
}
}

@media (max-width: 992px) {
.hero-section {
  padding-top: 100px !important;
  margin-top: 0 !important;
  padding: 3rem 1.5rem 2rem;
  overflow: visible;  
  min-height: auto; /* Let it adjust to content */
  position: relative;
  z-index: 2;
 

}


.hero-content h1 {
  font-size: 1.5rem;
  line-height: 1.3;
  word-wrap: break-word;

  
}

.hero-section::before {
  z-index: 0;
}


.hero-content {
  position: relative;  /* Keep it above background */
  z-index: 2;          /* Ensure it stays above any backgrounds */
  color: white;
  display: block;

}


.tagline {
  font-size: 0.8rem;
  padding: 0.1rem 0.8rem;
}

.heading {
  font-size: 1.6rem;
}

.description {
  font-size: 0.9rem;
}

.features-list li {
  font-size: 0.9rem;
  padding: 0.6rem 0.9rem;
}

.btn-primary,
.btn-outline {
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
}
}


/* Slide Animations */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-left {
  opacity: 0;
  animation: slideInLeft 0.8s ease-out forwards;
}

.slide-up {
  opacity: 0;
  animation: slideInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

/* Responsive Design */
@media (max-width: 768px) {
  .service-content {
    flex-direction: column;
    text-align: center;
  }

  .image-col {
    margin-top: 2rem;
  }

  .parallax-img {
    max-width: 90%;
  }

  .buttons {
    justify-content: center;
  }
}


/* Integration Section */
.integration-section {
position: relative;
background: radial-gradient(circle at center, #0e0f3a, #0b0c2a);
overflow: hidden;
padding: 6rem 2rem;
text-align: center;
color: white;
}

.stars-bg {
position: absolute;
top: 0;
left: 0;
width: 200%;
height: 200%;
background: url('stars.svg') repeat;
animation: moveStars 60s linear infinite;
z-index: 0;
opacity: 0.15;
}

@keyframes moveStars {
0% {
  transform: translate(0, 0);
}
100% {
  transform: translate(-50%, -50%);
}
}

.integration-content {
position: relative;
z-index: 2;
max-width: 1000px;
margin: 0 auto;
}

.tagline {
color: #e91e63; /* Neon pink */
font-weight: bold;
}

.heading {
font-weight: bold;
background: linear-gradient(90deg, #e91e63, #9c27b0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.icons-grid {
position: relative;
width: 100%;
height: 500px;
}

.ai-core {
position: absolute;
top: 50%;
left: 50%;
width: 100px;
height: 100px;
margin-left: -50px;
margin-top: -50px;
z-index: 3;
}

.ai-core img {
width: 100%;
animation: pulse 4s ease-in-out infinite;
}

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

.icon {
position: absolute;
width: 60px;
height: 60px;
background: #0b0c2a;
border: 1px solid #a2ff00;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.3s ease;
animation: floatIcon 4s ease-in-out infinite;
}

.icon:hover {
transform: scale(1.2);
box-shadow: 0 0 10px #a2ff00;
}

.icon img {
width: 32px;
height: 32px;
}

@keyframes floatIcon {
0%, 100% {
  transform: translateY(0);
}
50% {
  transform: translateY(-10px);
}
}

@keyframes slideInUp {
0% {
  opacity: 0;
  transform: translateY(40px);
}
100% {
  opacity: 1;
  transform: translateY(0);
}
}

.slide-up {
animation: slideInUp 1s ease-out forwards;
}

/* âœ… Mobile Responsiveness (max-width: 768px) */
@media (max-width: 768px) {
.integration-section {
  padding: 4rem 1rem;
}

.icons-grid {
  height: 350px;
}

.ai-core {
  width: 80px;
  height: 80px;
  margin-left: -40px;
  margin-top: -40px;
}

.ai-core img {
  width: 100%;
}

.icon {
  width: 45px;
  height: 45px;
}

.icon img {
  width: 24px;
  height: 24px;
}

.heading {
  font-size: 1.4rem;
}

.tagline {
  font-size: 0.9rem;
}
}

/* âœ… Ultra-Small Devices (max-width: 480px) */
@media (max-width: 480px) {
.icons-grid {
  height: 300px;
}

.integration-section {
  padding: 3rem 1rem;
}

.heading {
  font-size: 1.2rem;
}

.tagline {
  font-size: 0.85rem;
}
}


/* Global styles */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #000; /* Major black background */
  background-image: 
    radial-gradient(circle at top left, rgba(147, 51, 234, 0.15), transparent 50%),
    radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.15), transparent 50%),
    radial-gradient(circle at center, rgba(0, 255, 255, 0.08), transparent 50%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
  color: white;
}

.services-section {
  padding: 100px 20px;
  text-align: center;
}

.subtitle {
  display: inline-block;
  background: linear-gradient(to right, #9333ea, #ec4899);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.services-header h1 {
  font-size: 2.6rem;
  margin-bottom: 15px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.services-header p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

.services-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 70px;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 40px 20px;
  width: 260px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
}





.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.card-title {
  margin-top: 20px;
  font-size: 1.3rem;
  font-weight: 600;
  background: linear-gradient(to right, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card p {
  color: #aaa;
  font-size: 0.9rem;
}

/* Circle styling */
.circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

/* Number styling */
.circle-num {
  font-size: 72px;
  font-weight: 700;
}

/* Number colors */
.blue-text {
  color: #0ea5e9;
}

.red-text {
  color: #f43f5e;
}

.purple-text {
  color: #8b5cf6;
}

.pink-text {
  color: #ec4899;
}

/* Circle background colors */
.blue .circle {
  background-color: rgba(14, 165, 233, 0.1);
}

.red .circle {
  background-color: rgba(244, 63, 94, 0.1);
}

.purple .circle {
  background-color: rgba(139, 92, 246, 0.1);
}

.pink .circle {
  background-color: rgba(236, 72, 153, 0.1);
}

/* Circle hover effect */
.card:hover .circle {
  transform: scale(1.1);
}



/* ðŸŸ£ Scrolling Banner Styling */
.banner-strip {
background: linear-gradient(to right, #6a00ff, #8f00ff, #ff005d);
color: white;
overflow: hidden;
white-space: nowrap;
padding: 20px 0;
position: relative;
}

.scrolling-text {
display: inline-block;
padding-left: 100%;
animation: scroll-left 15s linear infinite;
font-size: 2.5rem;
font-weight: 600;
}

.scrolling-text span {
margin: 0 3rem;
font-weight: 900;
}

/* Animation */
@keyframes scroll-left {
0% {
  transform: translateX(0%);
}
100% {
  transform: translateX(-100%);
}
}

/* Optional responsiveness */
@media (max-width: 600px) {
.scrolling-text {
  font-size: 1.5rem;
}
}






/* contact.css */
body {
margin: 0;
padding: 0;
font-family: 'Orbitron', sans-serif;
background: linear-gradient(135deg, #120038, #050611);
color: #e1e1e1;
}

.contact-section {
padding: 100px 30px 60px;
color: #e1e1e1;
position: relative;
text-align: center;
}

.contact-title {
position: relative;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 50px;
height: 200px;
}

.kinetic-text {
font-size: 140px;
font-weight: bold;
letter-spacing: 10px;
color: transparent;
-webkit-text-stroke: 1.5px #ff00ff;
text-transform: uppercase;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: linear-gradient(90deg, #d633ff, #ff00ff);
-webkit-background-clip: text;
background-clip: text;
animation: stroke-animation 6s infinite linear;
}

@keyframes stroke-animation {
0% { opacity: 1; }
50% { opacity: 0.7; }
100% { opacity: 1; }
}

.send-button {
background: #d633ff;
color: #fff;
padding: 15px 25px;
border: none;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
transition: transform 0.3s ease;
z-index: 2;
position: relative;
}

.send-button:hover {
transform: scale(1.05);
}

.contact-footer {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
margin-top: 40px;
}

.footer-column h3 {
color: #d633ff;
margin-bottom: 15px;
}

.footer-column ul {
list-style: none;
padding: 0;
}

.footer-column ul li {
margin: 8px 0;
transition: color 0.3s;
color: #c7a1fc;
}

.footer-column ul li:hover {
color: #ffffff;
}

.footer-column p {
margin: 8px 0;
color: #aaa;
}

.logo {
width: 100px;
margin-bottom: 10px;
}

.social-icons i {
font-size: 18px;
margin-right: 15px;
color: #d633ff;
cursor: pointer;
transition: transform 0.3s ease;
}

.social-icons i:hover {
transform: scale(1.2);
}

.bottom-bar {
margin-top: 40px;
display: flex;
justify-content: space-between;
align-items: center;
border-top: 1px solid #444;
padding-top: 20px;
flex-wrap: wrap;
}

.bottom-bar span {
color: #ff00ff;
}

.policy-links a {
color: #ccc;
text-decoration: none;
margin: 0 10px;
}

.scroll-top {
position: fixed;
right: 20px;
bottom: 20px;
background: #d633ff;
color: #fff;
padding: 10px;
border-radius: 50%;
text-decoration: none;
font-size: 20px;
transition: transform 0.3s ease;
z-index: 10;
}

.scroll-top:hover {
transform: scale(1.2);
}

.blog-updates {
position: relative;
}

.full-section-link {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
text-indent: -9999px; /* Hide link text visually */
z-index: 10;
}



@media (max-width: 768px) {


  .bottom-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px; /* Adds space between child elements */
    padding-top: 20px;
  }
  
  .bottom-bar .policy-links {
    margin-top: 10px; /* Adds space below "Powered by CoreTech" */
  }
  .contact-section {
    padding: 60px 20px 40px;
  }

  .kinetic-text {
    font-size: 80px; /* Bigger than before, but still mobile-friendly */
    letter-spacing: 4px;
  }

  .send-button {
    padding: 7px 16px;
    font-size: 7px;
  }

  .contact-footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .social-icons i {
    font-size: 16px;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .kinetic-text {
    font-size: 60px;
    letter-spacing: 2px;
  }

  .send-button {
    width: 100%;
    padding: 5px 10px;
    font-size: 10px;
  }


  .scroll-top {
    padding: 8px;
    font-size: 18px;
  }
}
