/*
Theme Name: Innovationzone odisha
Theme URI: http://example.com
Author: Mahanadi Technology Services
Author URI: http://example.com
Description: Custom Theme Made for Innovationzone.Odisha By Raja
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: my-custom-theme
*/

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
/* Preloader full overlay */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; /* fallback background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

/* Preloader video fills the screen */
#preloader video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.site-header {
  height: 80px;
  background: #000000;
  color: #fff;
  padding: 10px 0;
}
/* Header logo */
.site-logo img {
  height: 60px; /* adjust as needed */
  max-width: 260px;
}





.site-title {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
}

/* HEADER LAYOUT */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Navigation Center on Desktop */
.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #f39c12;
}

/* Social Icons Right */
.header-social {
  display: flex;
  gap: 15px;
}

.header-social a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.header-social a:hover {
  color: #f39c12;
}

/* About Us text gradient animation */
.header-about-text {
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(90deg, #e80202, #fe5901, #e80202);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease infinite;
  cursor: pointer;
}

/* Keyframes for gradient animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* MOBILE MENU TOGGLE (hamburger) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* When Active → Transform to Cross */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Social Icons Right */
.header-social {
  display: flex;
  gap: 15px;
}

.header-social a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.header-social a:hover {
  color: #f39c12;
}

/* FOOTER */
.site-footer {
  background: #000000;
  color: #ddd;
  padding: 30px 0;
  text-align: center;
}

.footer-widgets {
  margin-bottom: 20px;
}

.footer-bottom {
  font-size: 0.9rem;
}

/* MOBILE NAV (hidden by default) */
@media (max-width: 768px) {
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%; /* hide off-screen */
    height: 100%;
    width: 250px;
    background: #333;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 80px 20px; /* space for header */
    transition: right 0.4s ease-in-out; /* smooth slide effect */
    z-index: 1000;
  }

  /* Active state → slide in */
  .site-nav.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    list-style: none;
    gap: 15px;
  }

  .nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
  }

  .nav-menu li a:hover {
    color: #f39c12;
  }
  .header-about-text {
    font-size: 0.6em;
  }
  .site-logo img {
  height: 58px; /* adjust as needed */
  max-width: 240px;
  }
  .footer-bottom{
    font-size: 0.6rem;
  }
}

/* Floating WhatsApp Widget */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.8),
              0 0 20px rgba(37, 211, 102, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: whatsappPulse 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 42px;
  height: 42px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 221, 0, 0.9),
              0 0 30px rgba(255, 149, 0, 0.8);
}

/* Glowing pulse animation */
@keyframes whatsappPulse {
  0% { box-shadow: 0 0 10px rgba(37,211,102,0.8), 0 0 20px rgba(37,211,102,0.6); }
  50% { box-shadow: 0 0 20px rgba(8, 183, 5, 0.9), 0 0 40px rgba(8, 183, 5, 0.9); }
  100% { box-shadow: 0 0 10px rgba(37,211,102,0.8), 0 0 20px rgba(37,211,102,0.6); }
}
