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



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



/* Global Styles */
body {
  background: linear-gradient(135deg, #000000, #0c0c24, #1a0e3e, #000000);
  color: white;
  font-family: 'Playfair Display', serif;
  min-height: 100vh;
}


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


a {
  color: white;
  text-decoration: none;
  font-weight: 400;
}

/* Blog Hero Section */
.blog-hero {
  margin-top: 100px;  
  padding-top: 150px; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5rem 10%;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Text Content */
.text-content {
  flex: 1;
  animation: slideIn 1.5s ease-out forwards;
  opacity: 0;
  transform: translateX(-50px);
}

.text-content h1 {
  font-size: 6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.text-content p {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Image Styling */
.image-container {
  flex: 1.8; /* More space to the image */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 1100px; /* Increased from 900px */
  height: auto;
  border-radius: 10px;
  animation: fadeZoom 2s ease-in-out;
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.15);
}


/* Animations */
@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 992px) {


  
  .blog-hero {
    padding-top: 100px !important;
    margin-top: 0 !important;
    flex-direction: column;
    text-align: center;
  }

  .blog-section {
      background: linear-gradient(135deg, #000000, #0c0c2e, #1a1a40);
      color: white;
      font-family: 'Playfair Display', serif;
      padding: 120px 80px; /* Increased padding */
    }

  .blog-section h2 {
      font-size: 48px; /* Larger title */
      font-weight: 600;
      margin-bottom: 20px;
      line-height: 1.3;
    }
    
    .blog-section p.description {
      font-size: 20px;
      max-width: 600px;
      margin-bottom: 50px;
      line-height: 1.6;
    }
    
    
    
    

  .text-content h1 {
    font-size: 4rem;
  }

  .hero-image {
    max-width: 100%;
  }
}

.blog-updates {
  background: linear-gradient(135deg, #000000, #0b002d, #140022);
  color: #ffffff;
  padding: 100px 50px;
  font-family: 'Georgia', serif;
}

.updates-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.updates-text {
  flex: 1;
  max-width: 500px;
}

.updates-text .label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.7;
}

.updates-text h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.updates-text .subtext {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
}

.articles {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.article-card {
  display: flex;
  align-items: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0; /* More vertical spacing */
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background-color: transparent;
  border-radius: 12px;
}

.date {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-right: 40px;
  font-size: 18px;
  letter-spacing: 3px;
  opacity: 0.8;
}



.article-card .date {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  margin-right: 30px;
  opacity: 0.6;
}

.article-content h3 {
  font-size: 28px; /* Larger blog title */
  font-weight: 500;
  margin-bottom: 12px;
}

.article-content p {
  font-size: 18px;
  letter-spacing: 1.2px;
}

.article-content .meta {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #b4b4b4;
}

.article-content .meta span {
  text-transform: none;
  font-weight: 300;
  margin-left: 5px;
  color: #999999;
}

.arrow {
  position: absolute;
  right: 20px;
  font-size: 26px;
  top: 40px;
  color: #ffffff;
  opacity: 0.8;
  transition: transform 0.3s ease;
}



.article-card:hover {
  transform: scale(1.015);
  background-color: rgba(255, 255, 255, 0.02);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.article-card:hover .arrow {
  transform: translateX(8px) scale(1.1);
  opacity: 1;
  color: #ffffff;
}

.arrow {
  position: absolute;
  right: 0;
  font-size: 24px;
  top: 30px;
  color: #cccccc;
  opacity: 0.7;
  transition: transform 0.4s ease, color 0.3s ease, opacity 0.3s ease;
}



@media (max-width: 900px) {
  .updates-container {
    flex-direction: column;
  }

  .arrow {
    position: static;
    margin-top: 10px;
  }

  .article-card {
    flex-direction: column;
  }

  .article-card .date {
    writing-mode: horizontal-tb;
    margin-bottom: 10px;
  }
}
.article-card:hover h3 {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
  transition: text-shadow 0.3s ease;
}


/* Animations */
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1.2s ease forwards;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1.2s ease forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@media (max-width: 768px) {

body {
  font-size: 16px;
}

.blog-hero {
  flex-direction: column;
  text-align: center;
  padding: 3rem 5%;
  margin-top: 60px;
  padding-top: 80px;
}

.text-content {
  transform: translateX(0);
  opacity: 1;
  animation: none;
}

.text-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.text-content p {
  font-size: 1rem;
}

.image-container {
  order: -1;
  margin-bottom: 30px;
}

.hero-image {
  max-width: 90%;
  height: auto;
}

.blog-section {
  padding: 80px 30px;
}

.blog-section h2 {
  font-size: 36px;
}

.blog-section p.description {
  font-size: 16px;
}

.updates-container {
  flex-direction: column;
  gap: 30px;
}

.updates-text h2 {
  font-size: 36px;
}

.updates-text .subtext {
  font-size: 15px;
}

.articles {
  gap: 30px;
}

.article-card {
  flex-direction: column;
  padding: 30px 0;
}

.article-card .date {
  writing-mode: horizontal-tb;
  transform: none;
  margin-bottom: 15px;
  margin-right: 0;
}

.article-content h3 {
  font-size: 24px;
}

.article-content p {
  font-size: 16px;
}

.arrow {
  position: static;
  margin-top: 10px;
  font-size: 20px;
}
}





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

/* Navbar */




/* 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;
  }
}
  
  /* Google Fonts */
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
  
  
  /* Hamburger Icon - default hidden */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 999;
  }
  
  .hamburger span {
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  
  
  /* Mobile Responsive Styles */
  @media (max-width: 992px) {
  
  
  
    .hamburger {
      display: flex;
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
    }
    
    .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;
    }
    
    .nav-links.show {
      display: flex;
    }
    
    .buttons {
      display: none;
    }
  
    
  .navbar {
    padding: 1rem 1.5rem;
  }
  
  .nav-links {
    gap: 15px;
  }
  
  .buttons {
    gap: 10px;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .login, .get-started {
    padding: 6px 15px;
    font-size: 0.9rem;
  }
  }
  
  @media (max-width: 768px) {
  
  
    .hamburger {
      display: flex;
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
    }
  
    .nav-links {
      display: none; /* hidden by default on mobile */
      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; /* becomes visible when toggled */
    }
  
    
  .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;
  }
  }
  
  @media (max-width: 480px) {
  
  
    .hamburger {
      display: flex;
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
    }
  
  .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;
  }
  }
  
  



/* ðŸŸ£ Scrolling Banner Styling */
.banner-strip {
background: linear-gradient(to right, #170262, #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;
    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;
  }
}
