/* Global styles and layout */
/* ================================
   Sunitiq Website - style.css
   Advanced UI | Dark Mode | Responsive
   ================================ */

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

/* Preloader */
#preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 2000;
}

/* Header */
header {
  background: #fff;
  color: #333;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  width: 140px;
  margin-right: 0.7rem;
}

.brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0078d7;
}

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s ease;
}

nav a:hover,
nav a.active-link {
  color: #0078d7;
}

.login-btn {
  background: #0078d7;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  text-decoration: none;
}

.dark-toggle {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

#mobileToggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive Nav */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    padding: 1rem;
    width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }

  nav.active {
    display: flex;
  }

  #mobileToggle {
    display: block;
  }
}
.live-hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5);
}

.hero-text {
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}
.cta-btn {
  position: relative;
  z-index: 2;
  background: #FF6B35;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.cta-btn:hover {
  background: #e85a2a;
}
/* Light Mode (Default) */
.features {
  background-color: #f9f9f9;
  padding: 40px;
}

.features h1,
.features h3,
.features p {
  color: #000000; /* Black text in light mode */
}

.feature-card {
  padding: 20px;
  border-radius: 8px;
  background-color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Dark Mode */
body.dark .features {
  background-color: #121212; /* Dark background */
}

body.dark .feature-card {
  background-color: #1e1e1e; /* Slightly lighter for contrast */
  box-shadow: 0 2px 6px rgba(255,255,255,0.05);
}

body.dark .features h1,
body.dark .features h3,
body.dark .features p {
  color: #ffffff; /* White text for visibility */
}

body.dark .features h3 {
  text-shadow: 0 0 6px rgba(255,255,255,0.4); /* Glow effect for dark mode */
}
body.light .features {
  background-color: white; /* Dark background */
}

body.light .feature-card {
  background-color: white; /* Slightly lighter for contrast */
  box-shadow: 0 2px 6px rgba(255,255,255,0.05);
}

body.light .features h1,
body.light .features h3,
body.light .features p {
  color: black; /* White text for visibility */
}

body.light .features h3 {
  text-shadow: 0 0 6px rgba(255,255,255,0.4); /* Glow effect for dark mode */
}

/* Light Mode (default) */
.about h2 {
  color: darkblue; /* Black text */
}

/* Dark Mode */
body.dark .about h2 {
  color: #ffffff; /* White text */
}













/* Hero Section 
.hero {
  background: url('../assets/hero.jpg') center/cover no-repeat;
  height: 97vh;
  display: flex;
  flex-direction:column;
  gap: 40px;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;

}*/




.hero hi {
  color:blue;

}
.hero h1 {
  font-size: 2.5rem;
  max-width: 900px;
  color:white;
}
.highlight{
  color: #FF6B35;
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-text {
  animation: fadeUp 1.2s ease-out;
}
.hero {
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* dark overlay */
  z-index: 0;
}
.hero-text {
  position: relative;
  z-index: 1;
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-text3 {
  animation: fadeUp 1.2s ease-out;
}

.hero-text h3 {
  
  position: relative;
  z-index: 3;


  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(90deg, #FFD700, #FFB000);
    background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature-card{
  color:black;
}

/* Common Sections */
section {
  padding: 3rem 2rem;
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: white;
}

/* About, Services, Projects */
.about p{
  text-align:center;
  text-align: justify;
}
.about h3{
  text-align: center;
}
.hero-video2 {
  
  width: 100%;
  height: 30%;
  filter: brightness(0.5);
}
.image-row {
  display: flex;
  gap: 100px; /* images ke beech space */
  justify-content: center; /* center align */
}

.image-row img {
  width: 380px; /* apne hisab se size set karo */
  height: auto;
}
.profile-img {
  width: 300px;
  height: 300px;
  border-radius: 15%;
  border: 3px solid #FFD700;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  display: block;
  margin: 0 auto;
}

.social-links {
  text-align: left;
  margin-top: 10px;
}

.social-links a {
  color: #FFD700; /* Gold color */
  font-size: 25px;
  margin: 0 10px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #FF8C00; /* Hover color */
}
.vision h2{
  text-align: justify;
}
.innovation h2{
  text-align: justify;
}
.future h2{
  text-align: justify;
}
.profile-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px;
}

.profile-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    width: 280px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

.profile-img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    border: 3px solid #FFD700;
}

.profile-name {
    margin-top: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.profile-tagline {
    font-size: 14px;
    color: #555;
    font-style: italic;
    margin: 10px 0 15px;
}

.social-links a {
    color: #FFD700;
    font-size: 22px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffae00;
}

/*
.founder-card {
    width: 400px;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    margin: auto;
}

.founder-img {
    width: 200%;
    height: auto;
    border-radius: 14px;
    border: 3px solid #FFD700;
}

.founder-name {
    margin-top: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.founder-role {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}
.founder-tagline {
    font-size: 14px;
    color: #555;
    font-style: italic;
    margin: 10px 0 15px;
}

.social-links a {
    color: #FFD700;
    font-size: 22px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffae00;
}*/
.projects {
  color: darkblue;
}

.image-row{
  display: flex;
  gap: 40px;
  justify-content: center; /* center the row */
  align-items: flex-start;
  padding: 24px;
  flex-wrap: wrap; /* allows wrapping on small screens */
}

/* Each card */
.image-card{
  width: 46%;                /* two cards side-by-side on wide screens */
  max-width: 480px;          /* limit max size */
  min-width: 260px;
  background: #fff;          /* change to transparent/dark for dark-mode */
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  text-align: center;
}

/* Image styling */
.card-img{
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 3px solid #FFD700; /* gold border matching Sunitiq */
  display:block;
  margin: 0 auto;
}

/* Title & subtitle */
.card-title{
  margin: 12px 0 6px;
  font-size: 20px;
  color: #111;
}
.card-sub{
  margin: 0 0 10px;
  font-size: 14px;
  color: #666;
}

/* Social links (under image) */
.social-links{
  margin-top: 10px;
}
.social-links a{
  display: inline-block;
  margin: 0 8px;
  color: #FFD700; /* gold */
  font-size: 22px;
  text-decoration: none;
  transition: transform .18s ease, color .18s ease;
}
.social-links a:hover{
  transform: translateY(-3px);
  color: #ffae00;
}

/* Responsive: stack vertically on small screens */
@media (max-width: 780px){
  .image-card{
    width: 100%;
    max-width: 640px;
  }
}
.about-card h2{
  color:darkblue;
}
.dash {
  text-align: center;
  color: darkblue;
}

.feature-card, .core h1{
  color: darkblue;
}


.contact h2{
  color: black;
}
.google-profile {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.google-btn {
    display: inline-block;
    background-color: #4285F4;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.google-btn:hover {
    background-color: #3367D6;
}
.our{
  color: darkblue;
}
.services-grid, .projects-grid, .team-grid {
  display: grid;
  gap: 7.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.services, .service-card, .project-card, .team-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.services, .AI{
  color:darkblue;
}
.service-card:hover, .project-card:hover {
  transform: translateY(-5px);
}

/* Contact Form */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-form, .contact-info {
  flex: 1 1 300px;
}

.contact-form label {
  display: block;
  margin-top: 1rem;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 0.5rem;
}

.contact-form .btn {
  margin-top: 1.5rem;
  background: #0078d7;
  color: white;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
}

/* Auth Forms */
.login-section, .signup-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background: #f9f9f9;
}

.form-box {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 400px;
  width: 100%;
}

.form-box h2 {
  margin-bottom: 1.5rem;
}

.form-box input {
  width: 100%;
  padding: 0.7rem;
  margin: 0.5rem 0 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-box .btn {
  background: #0078d7;
  color: white;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.small-text {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #222;
  color: white;
}

/* Dark Mode */
body.dark-mode {
  background: #121212;
  color: #f0f0f0;
}

body.dark-mode header,
body.dark-mode nav,
body.dark-mode .form-box,
body.dark-mode footer,
body.dark-mode .service-card,
body.dark-mode .project-card {
  background: #1e1e1e;
  color: white;
}

body.dark-mode nav a {
  color: #ccc;
}

body.dark-mode nav a:hover,
body.dark-mode nav a.active-link {
  color: #fff;
}

