/* AI.TULASAMMA - Style */

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

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

.container a {
  color:#e75480;  /* #dbeafe; */
  text-decoration:none
} 

/* Glossy fixed header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #ff4381, #e75480); /* lotus pink glossy - #c13c65, #ff4381, #f4b6c2, #f093b7 */
    color: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.site-header .logo {
    font-weight: bold;
    font-size: 1.6rem;
    text-shadow: -2px 2px 4px rgba(0, 0, 0, 0.5), 
        2px -2px 0 rgba(255, 255, 255, 0.9);
}

.site-header a {
  color:#ffffff;  /* #dbeafe; #e75480*/
  text-decoration:none
}

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  display: block;
}

.nav-links a:hover {
  background: #006A4E; /* bottle green highlight */
  border-radius: 4px;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 200px;
  top: 100%;
  left: 0;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1200;
  padding: 0;
  margin: 0;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  color: #333;
  padding: 0.75rem 1rem;
  text-decoration: none;
  display: block;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #E75480;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Banner top home */
.bth {
  padding: 3rem 1rem;
  background: linear-gradient(to right, #006A4E, #E75480);
}

/* Banner top other */
.bto {
  padding: 3rem 1rem;
  background: #fff;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  gap: 2rem;
  background: linear-gradient(to right, #006A4E, #E75480);
  color: #fff;
}
.hero-text {
  max-width: 50%;
}
.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-buttons {
  margin-top: 1.5rem;
}
.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}
.btn.primary {
  background: #E75480;
  color: #fff;
}
.btn.secondary {
  background: #fff;
  color: #006A4E;
  border: 2px solid #006A4E;
}
.btn:hover {
  opacity: 0.9;
}

/* Image zoom animation */
.image-zoom-animate {
  display: inline-block;
  overflow: hidden;
}

.image-zoom-animate img {
  max-width: 400px;
  width: 100%;
  height: auto;
  transition: transform 2s ease-in-out;
  animation: zoomPulse 4s infinite ease-in-out;
}

/* Image zoom animation */
.card-image-zoom-animate {
  display: inline-block;
  overflow: hidden;
}

.card-image-zoom-animate img {
  max-width: auto-fit;
  width: 100%;
  height: auto;
  transition: transform 2s ease-in-out;
  animation: zoomPulse 4s infinite ease-in-out;
}

@keyframes zoomPulse {
  0% { transform: scale(0.95); }
  50% { transform: scale(1); } /* slight zoom in */
  100% { transform: scale(0.95); } /* back to normal */
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.card {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.card h3 {
  color: #006A4E;
  margin-bottom: 0.5rem;
}
.card a {
  color: #E75480;
  text-decoration: none;
  font-weight: 600;
}

/* Roll-up text effect */
.roll-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}
.roll-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CTA Section */
.cta {
  text-align: center;
  padding: 3rem 1rem;
  background: #006A4E;
  color: #fff;
}
.cta h3 {
  font-size: 2rem;
}
.cta p {
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  background:#0f1720;
  color:#e6eef0;
  padding:36px 0;
  margin-top:18px;
  width:100%;
  clear:both;
}
.footer-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
  align-items:start;
}
.site-footer h4 {
  color:#fff;
  margin-bottom:12px;
}
.site-footer h1 {
    font-weight: bold;
    font-size: 1.6rem;
    text-shadow: -2px 2px 4px rgba(0, 0, 0, 0.5), 
        2px -2px 0 rgba(255, 255, 255, 0.9);
}
.site-footer a {
  color:#e75480;  /* #dbeafe; */
  text-decoration:none
} 
.footer-bottom {
  margin-top:18px;
  text-align:center;
  color:#cbd5e1
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    color: white;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #da70d6;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
  }

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

  .dropdown-content {
    position: static;
    background: #f9f9f9;
    width: 100%;
  }
}

