/* 
   nudifyerIN.pw - Indian AI Nudify Website
   Colors inspired by Indian flag: 
   - Saffron: #FF9933
   - White: #FFFFFF
   - Green: #138808
   - Ashoka Chakra Blue: #000080
*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Noto Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #FCFCFC;
}

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

a {
  text-decoration: none;
  color: #FF9933;
  transition: all 0.3s ease;
}

a:hover {
  color: #E05C04;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 70px 0;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.4rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #FF9933, #FFFFFF, #138808);
  border-radius: 2px;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 20px;
}

/* === Header & Navigation === */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-top: 3px solid #FF9933;
  border-bottom: 1px solid #F0F0F0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 900;
  font-size: 1.8rem;
}

.logo svg {
  margin-right: 10px;
  width: 32px;
  height: 32px;
}

.logo-text {
  color: #333;
}

.logo-highlight {
  color: #FF9933;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #FF9933, #138808);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}

/* === Hero Section === */
.hero {
  background-color: #FAFAFA;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero-container {
  display: flex;
  align-items: center;
  min-height: 450px;
}

.hero-content {
  flex: 1;
  padding-right: 30px;
}

.hero-title {
  font-size: 3.2rem;
  margin-bottom: 20px;
  color: #333;
}

.hero-title span {
  color: #FF9933;
}

.hero-title .highlight-green {
  color: #138808;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 15px;
  max-width: 600px;
  color: #555;
}

.hero-hindi {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #666;
  font-family: 'Noto Sans', sans-serif;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #FF9933, #E05C04);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E05C04, #FF9933);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 153, 51, 0.4);
  color: #FFFFFF;
}

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

.btn-secondary:hover {
  background-color: rgba(255, 153, 51, 0.05);
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Indian flag inspired decorative elements */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 33.33%;
  height: 100%;
  background-color: rgba(255, 153, 51, 0.03);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 33.33%;
  height: 100%;
  background-color: rgba(19, 136, 8, 0.03);
  z-index: 0;
}

.chakra-decoration {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 128, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.chakra-decoration::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 128, 0.1);
}

.chakra-decoration::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(0, 0, 128, 0.1);
}

/* === Process Section === */
.process {
  background-color: #FFFFFF;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  display: inline-block;
}

.section-header h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.process-steps {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.step-1 .step-icon {
  background-color: rgba(255, 153, 51, 0.1);
  color: #FF9933;
}

.step-2 .step-icon {
  border: 2px solid #000080;
  color: #000080;
}

.step-3 .step-icon {
  background-color: rgba(19, 136, 8, 0.1);
  color: #138808;
}

.step-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #333;
}

.step-description {
  color: #666;
  font-size: 1rem;
}

.process-connection {
  position: absolute;
  top: 40px;
  left: 20%;
  width: 60%;
  height: 2px;
  background-color: #E0E0E0;
  z-index: 0;
}

/* === Features Section === */
.features {
  background-color: #FAFAFA;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #FF9933, #FFFFFF, #138808);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, #FF9933, #138808);
  transition: height 0.3s ease;
}

.feature-card:hover::after {
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
  margin-bottom: 20px;
  color: #FF9933;
  font-size: 2.5rem;
}

.feature-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.feature-description {
  color: #666;
  font-size: 0.95rem;
}

/* === About Section === */
.about {
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 153, 51, 0.2), transparent);
}

.about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #FF9933, #FFFFFF, #138808);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.about-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 153, 51, 0.05) 0%, rgba(255, 153, 51, 0) 70%);
  z-index: -1;
}

.about-decoration.top-left {
  top: -100px;
  left: -100px;
}

.about-decoration.bottom-right {
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(19, 136, 8, 0.05) 0%, rgba(19, 136, 8, 0) 70%);
}

.about-description {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
}

.about-signature {
  display: block;
  margin-top: 40px;
  font-weight: 500;
  text-align: center;
  color: #FF9933;
  position: relative;
}

.about-signature::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, #FF9933, #138808);
}

/* === Footer === */
footer {
  background-color: #F8F8F8;
  padding: 40px 0 20px;
  border-top: 1px solid #E0E0E0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo svg {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  color: #333;
}

.footer-links ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links ul li {
  margin-left: 20px;
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #555;
  font-size: 0.9rem;
}

.footer-copyright {
  color: #777;
  font-size: 0.9rem;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #E0E0E0;
}

/* === Animations === */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate {
  animation: fadeIn 0.8s ease forwards;
}

.spin {
  animation: spin 20s linear infinite;
}

/* === Responsive Design === */
@media screen and (max-width: 992px) {
  h1, .hero-title {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .process-steps {
    flex-direction: column;
    gap: 40px;
  }
  
  .process-connection {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 50px 0;
  }
  
  h1, .hero-title {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease;
  }
  
  nav.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  nav ul {
    flex-direction: column;
    padding: 20px 0;
  }
  
  nav ul li {
    margin: 0;
    text-align: center;
    padding: 12px 0;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-links ul {
    justify-content: center;
  }
  
  .footer-links ul li:first-child {
    margin-left: 0;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    padding: 12px 20px;
  }
  
  .feature-card {
    padding: 20px;
  }
}
