:root {
  --bg-color: #000000; /* Black background */
  --text-color: #fff; /* White text */
  /* --accent-color: #b8870b; */
  --hover-color: #ff4500; /* Orange for hover effects */
  /* --border-color: #333;  */
  --border-color: #000; 
  --secondary-text-color: #bbb; /* Light gray for secondary text */
}

* {
  font-family: "Montserrat";
}

h2,
h3 {
  font-family: "Merriweather";
}

body {
  margin: 0;
  background-color: var(--bg-color); /* Black background */
  color: var(--text-color); /* White text */
}

a {
  text-decoration: none;
  color: var(--text-color); /* White for links */
}

a:hover {
  color: var(--hover-color); /* Orange for hover effects */
}

/* Navbar */
:root {
    --bg-color: #000000; 
    --text-color: #ffffff; 
    --accent-color: #b8870b;
    --hover-color: #ff4500; 
    --border-color: #333;  
    --secondary-text-color: #cccccc; 
    --muted-text: #999999;
    --transition: all 0.3s ease;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header Styles */
header {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    margin-bottom: 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 5%;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(184, 135, 11, 0.2);
    box-shadow: var(--shadow-medium);
}

/* Logo Section */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 75px;
    width: 75px;
    border-radius: 50%;
    margin-right: 15px;
    transition: var(--transition);
    object-fit: cover;
    background: transparent;
    border: 2px solid rgba(184, 135, 11, 0.3);
}

.logo:hover .logo-img {
    box-shadow: 0 4px 15px rgba(184, 135, 11, 0.3);
    transform: scale(1.05);
    border-color: rgba(184, 135, 11, 0.6);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name-1 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.2;
}

.company-tagline {
    font-size: 0.8rem;
    /* padding-left: 2.5rem; */
    color: var(--muted-text);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--secondary-text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 0;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--text-color);
}

.nav-links a.active {
    color: var(--accent-color);
}

/* Elegant underline effect */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--hover-color));
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 200px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: var(--transition);
    box-shadow: var(--shadow-heavy);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--secondary-text-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(184, 135, 11, 0.1);
    color: var(--accent-color);
    padding-left: 25px;
}

.dropdown-menu a::after {
    display: none;
}

/* Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--secondary-text-color);
}

.search-btn:hover {
    background: rgba(184, 135, 11, 0.1);
    color: var(--accent-color);
    transform: scale(1.05);
}

.cta-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent-color), #d4a920);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 135, 11, 0.3);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
    z-index: 1001;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Mobile toggle animation states - using :checked pseudo-selector workaround */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    padding: 100px 30px 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-heavy);
    z-index: 1000;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    color: var(--secondary-text-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 20px 0;
    display: block;
    transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--accent-color);
    padding-left: 15px;
}

/* Mobile overlay to close menu when clicking outside */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* CSS-only mobile menu toggle using checkbox hack */
#mobile-menu-toggle {
    display: none;
}

#mobile-menu-toggle:checked ~ .mobile-nav {
    right: 0;
}

#mobile-menu-toggle:checked ~ .mobile-overlay {
    opacity: 1;
    visibility: visible;
}

#mobile-menu-toggle:checked + .navbar .mobile-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

#mobile-menu-toggle:checked + .navbar .mobile-toggle span:nth-child(2) {
    opacity: 0;
}

#mobile-menu-toggle:checked + .navbar .mobile-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-right .search-btn,
    .nav-right .cta-btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .navbar {
        padding: 15px 5%;
    }

    .logo-text .company-tagline {
        font-size: 0.7rem;
    }

    .logo-img {
        height: 55px;
        width: 55px;
        margin-right: 10px;
    }

    .company-name-1 {
        font-size: 1.2rem;
    }

    .mobile-nav {
        width: 280px;
    }

    .mobile-nav a {
        font-size: 1rem;
        padding: 18px 0;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 4%;
    }

    .logo-img {
        height: 45px;
        width: 45px;
        margin-right: 8px;
    }

    .company-name-1 {
        font-size: 1.1rem;
    }

    .company-tagline {
        font-size: 0.65rem;
    }

    .mobile-nav {
        width: 260px;
        padding: 80px 25px 25px;
    }

    .mobile-nav a {
        font-size: 0.95rem;
        padding: 16px 0;
    }
}

@media (max-width: 320px) {
    .navbar {
        padding: 12px 3%;
    }

    .logo-img {
        height: 40px;
        width: 40px;
    }

    .company-name-1 {
        font-size: 1rem;
    }

    .company-tagline {
        display: none;
    }

    .mobile-nav {
        width: 240px;
        padding: 70px 20px 20px;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.demo-content > * {
    animation: fadeInUp 0.6s ease forwards;
}

.demo-content > *:nth-child(2) {
    animation-delay: 0.1s;
}

.demo-content > *:nth-child(3) {
    animation-delay: 0.2s;
}

/* Additional mobile improvements */
@media (hover: none) and (pointer: coarse) {
    .logo:hover {
        transform: none;
    }
    
    .logo:hover .logo-img {
        transform: none;
        box-shadow: none;
    }
    
    .search-btn:hover {
        transform: none;
    }
    
    .cta-btn:hover {
        transform: none;
    }
}


/* About Section - More Compact */
/* About Meenakshi Yadav Section - Enhanced Version */


:root {
  --bg-color: #000000; /* Black background */
  --text-color: #fff; /* White text */
  --accent-color: #b8870b; /* Golden accent color */
  --hover-color: #ff4500; /* Orange for hover effects */
  --border-color: #000;
  --secondary-text-color: #bbb; /* Light gray for secondary text */
  --card-bg: rgba(184, 135, 11, 0.05); /* Very subtle gold background */
  --glow-color: rgba(184, 135, 11, 0.3); /* Subtle golden glow */
}

/* Main About Section Container */
.about-my {
  background-color: var(--bg-color);
  margin: 80px auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

.about-my::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(184, 135, 11, 0.08), transparent 70%);
  z-index: 0;
}

.about-container {
  position: relative;
  z-index: 1;
  padding: 20px 0;
}

/* Header Styling */
.about-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.about-title {
  font-family: "Merriweather", serif;
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  opacity: 0;
  animation: fadeInDown 1s ease forwards 0.3s;
}

.title-underline {
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0 auto;
  position: relative;
  opacity: 0;
  animation: expandWidth 1.5s ease forwards 0.8s;
}

.title-underline::before, 
.title-underline::after {
  content: '';
  position: absolute;
  top: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--accent-color);
  opacity: 0;
  animation: pulseEffect 2s infinite alternate 1.5s;
}

.title-underline::before {
  left: -5px;
}

.title-underline::after {
  right: -5px;
}

/* Content Layout */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

/* Profile Image Styling */
.profile-container {
  flex: 0 1 300px;
  position: relative;
  opacity: 0;
  animation: fadeInLeft 1s ease forwards 0.5s;
}

.profile-frame {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 3px solid var(--accent-color);
  padding: 8px;
  background-color: var(--bg-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.profile-frame:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(184, 135, 11, 0.3);
}

.my-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.7s ease;
}

.profile-frame:hover .my-img {
  transform: scale(1.08);
}

.profile-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  background: radial-gradient(circle at 50% 50%, var(--glow-color), transparent 70%);
  z-index: -1;
  opacity: 0;
  animation: pulseGlow 3s infinite alternate 1s;
}

.experience-badge {
  position: absolute;
  bottom: 10px;
  right: 0;
  background: linear-gradient(135deg, var(--accent-color), #97700d);
  border-radius: 50px;
  padding: 10px 20px;
  color: var(--text-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(20px);
  opacity: 0;
  animation: slideInBadge 1s ease forwards 1.2s;
}

.experience-years {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

.experience-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Bio Content Styling */
.bio-container {
  flex: 1 1 600px;
  opacity: 0;
  animation: fadeInRight 1s ease forwards 0.7s;
}

.bio-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid var(--accent-color);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  animation: shimmerEffect 4s infinite;
}

.bio-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  position: relative;
  color: var(--text-color);
}

.bio-text::first-letter {
  font-size: 2.5rem;
  color: var(--accent-color);
  font-weight: bold;
  float: left;
  margin-right: 8px;
  line-height: 1;
}

.bio-secondary {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--secondary-text-color);
  margin-top: 25px;
  border-left: 3px solid var(--accent-color);
  padding-left: 15px;
  font-style: italic;
}

/* Expertise Section */
.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 25px 0;
}

.expertise-item {
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(184, 135, 11, 0.15);
}

.expertise-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(184, 135, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.expertise-icon i {
  color: var(--accent-color);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.expertise-item:hover .expertise-icon i {
  transform: scale(1.2);
}

.expertise-detail {
  display: flex;
  flex-direction: column;
}

.expertise-detail h4 {
  font-size: 1rem;
  margin: 0 0 5px 0;
  color: var(--text-color);
}

.expertise-detail span {
  font-size: 0.8rem;
  color: var(--secondary-text-color);
}

/* CTA Buttons */
.cta-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.about-cta {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
  z-index: -1;
}

.about-cta:hover::before {
  left: 100%;
}

.about-cta:not(.secondary) {
  background-color: var(--accent-color);
  color: var(--bg-color);
  box-shadow: 0 5px 15px rgba(184, 135, 11, 0.3);
}

.about-cta:not(.secondary):hover {
  background-color: #b8870b;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(184, 135, 11, 0.4);
}

.about-cta.secondary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background-color: transparent;
}

.about-cta.secondary:hover {
  background-color: rgba(184, 135, 11, 0.1);
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from {
    opacity: 0;
    width: 0;
  }
  to {
    opacity: 1;
    width: 80px;
  }
}

@keyframes pulseEffect {
  from {
    transform: scale(1);
    opacity: 0.5;
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulseGlow {
  from {
    opacity: 0.2;
    transform: scale(0.9);
  }
  to {
    opacity: 0.4;
    transform: scale(1.1);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInBadge {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmerEffect {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
  .about-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .profile-container {
    margin: 0 auto;
  }
  
  .bio-card {
    padding: 25px;
  }
  
  .about-title {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 768px) {
  .about-my {
    margin: 60px auto;
  }
  
  .expertise-list {
    flex-direction: column;
  }
  
  .expertise-item {
    flex-basis: 100%;
  }
  
  .bio-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .cta-container {
    flex-direction: column;
  }
  
  .about-cta {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .about-title {
    font-size: 1.8rem;
  }
  
  .profile-frame {
    width: 220px;
    height: 220px;
  }
  
  .experience-badge {
    padding: 8px 15px;
    transform: translateX(0);
  }
  
  .experience-years {
    font-size: 1.2rem;
  }
  
  .experience-text {
    font-size: 0.7rem;
  }
  
  .bio-card {
    padding: 20px 15px;
  }
}


/* Animations on page 1*/

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply the animations to the elements */
.rest-all img {
  animation: slideInLeft 1.2s ease-out forwards; /* Image slides in from the left */
  opacity: 0; /* Ensure it's initially hidden */
}

.rest-all p {
  animation: slideInRight 1.2s ease-out forwards; /* Paragraph slides in from the right */
  opacity: 0; /* Ensure it's initially hidden */
}

/* Responsiveness for About-MY Section */

@media screen and (min-width: 1400px) {
  .about-my {
    max-width: 1400px;
    padding: 0 40px;
  }
  
  .about-title {
    font-size: 3rem;
  }
  
  .bio-text, .bio-secondary {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 992px) {
  .about-my {
    margin: 60px auto;
    padding: 0 15px;
  }
  
  .about-content {
    gap: 40px;
  }
  
  .expertise-list {
    justify-content: center;
  }
  
  .expertise-item {
    flex: 0 1 45%;
  }
  
  .cta-container {
    justify-content: center;
  }
  
  .about-cta {
    min-width: 200px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .about-header {
    margin-bottom: 30px;
  }
  
  .profile-container {
    transform: scale(0.9);
    margin-bottom: 10px;
  }
  
  .bio-card {
    margin-top: 20px;
  }
  
  .expertise-list {
    gap: 12px;
  }
  
  .expertise-item {
    flex: 0 1 100%;
    padding: 12px;
  }
  
  .about-cta {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}
@media screen and (max-width: 480px) {
  .about-my {
    margin: 40px auto;
    padding: 0 10px;
  }
  
  .about-header {
    margin-bottom: 25px;
  }
  
  .profile-container {
    transform: scale(0.85);
    margin: -15px auto;
  }
  
  .bio-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .bio-text::first-letter {
    font-size: 2rem;
  }
  
  .bio-secondary {
    font-size: 0.9rem;
    line-height: 1.5;
    padding-left: 10px;
  }
  
  .expertise-icon {
    width: 38px;
    height: 38px;
  }
  
  .expertise-icon i {
    font-size: 1rem;
  }
  
  .expertise-detail h4 {
    font-size: 0.9rem;
  }
  
  .expertise-detail span {
    font-size: 0.75rem;
  }
  
  .cta-container {
    margin-top: 20px;
    gap: 10px;
  }
}
@media screen and (max-width: 360px) {
  .about-title {
    font-size: 1.6rem;
  }
  
  .profile-frame {
    width: 200px;
    height: 200px;
  }
  
  .experience-badge {
    transform: scale(0.9);
    right: -5px;
    bottom: 5px;
  }
  
  .bio-card {
    padding: 15px 12px;
  }
}
@media (max-width: 768px) {
  .profile-glow {
    animation: pulseGlow 4s infinite alternate 1s;
  }
  
  .title-underline::before, 
  .title-underline::after {
    animation: pulseEffect 3s infinite alternate 1.5s;
  }
  
  @keyframes shimmerEffect {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  .profile-glow,
  .title-underline::before,
  .title-underline::after,
  .bio-card::before {
    animation: none;
  }
  
  .about-title,
  .title-underline,
  .profile-container,
  .bio-container,
  .experience-badge {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
@media screen and (max-width: 768px) {
  .rest-all img,
  .rest-all p {
    animation-duration: 0.8s;
  }
}
.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 25px 0;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .cta-container {
    flex-direction: column;
    align-items: stretch;
  }
}
.bio-card {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.about-cta {
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .about-cta {
    white-space: normal;
  }
}


/* About Meenakshi Yadav Section - Enhanced Version */
:root {
  --bg-color: #000000; /* Black background */
  --text-color: #fff; /* White text */
  --accent-color: #b8870b; /* Golden accent color */
  --hover-color: #ff4500; /* Orange for hover effects */
  --border-color: #000;
  --secondary-text-color: #bbb; /* Light gray for secondary text */
  --card-bg: rgba(184, 135, 11, 0.05); /* Very subtle gold background */
  --glow-color: rgba(184, 135, 11, 0.3); /* Subtle golden glow */
}

/* Main About Section Container */
.about-my {
  background-color: var(--bg-color);
  margin: 80px auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

.about-my::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(184, 135, 11, 0.08), transparent 70%);
  z-index: 0;
}

.about-container {
  position: relative;
  z-index: 1;
  padding: 20px 0;
}

/* Header Styling */
.about-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.about-title {
  font-family: "Merriweather", serif;
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  opacity: 0;
  animation: fadeInDown 1s ease forwards 0.3s;
}

.title-underline {
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0 auto;
  position: relative;
  opacity: 0;
  animation: expandWidth 1.5s ease forwards 0.8s;
}

.title-underline::before, 
.title-underline::after {
  content: '';
  position: absolute;
  top: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--accent-color);
  opacity: 0;
  animation: pulseEffect 2s infinite alternate 1.5s;
}

.title-underline::before {
  left: -5px;
}

.title-underline::after {
  right: -5px;
}

/* Content Layout */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

/* Profile Image Styling - ENHANCED RESPONSIVENESS */
.profile-container {
  flex: 0 1 300px;
  position: relative;
  opacity: 0;
  animation: fadeInLeft 1s ease forwards 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}

.profile-frame {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 3px solid var(--accent-color);
  padding: 8px;
  background-color: var(--bg-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  /* Ensure consistent circular shape across all devices */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-frame:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(184, 135, 11, 0.3);
}

.my-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  transition: transform 0.7s ease;
  /* Ensure the image always fills the circular container properly */
  display: block;
}

.profile-frame:hover .my-img {
  transform: scale(1.08);
}

.profile-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  background: radial-gradient(circle at 50% 50%, var(--glow-color), transparent 70%);
  z-index: -1;
  opacity: 0;
  animation: pulseGlow 3s infinite alternate 1s;
  border-radius: 50%;
}

.experience-badge {
  position: absolute;
  bottom: 10px;
  right: -10px;
  background: linear-gradient(135deg, var(--accent-color), #97700d);
  border-radius: 50px;
  padding: 10px 20px;
  color: var(--text-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(20px);
  opacity: 0;
  animation: slideInBadge 1s ease forwards 1.2s;
  white-space: nowrap;
  min-width: fit-content;
}

.experience-years {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

.experience-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Bio Content Styling */
.bio-container {
  flex: 1 1 600px;
  opacity: 0;
  animation: fadeInRight 1s ease forwards 0.7s;
}

.bio-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid var(--accent-color);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  animation: shimmerEffect 4s infinite;
}

.bio-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  position: relative;
  color: var(--text-color);
}

.bio-text::first-letter {
  font-size: 2.5rem;
  color: var(--accent-color);
  font-weight: bold;
  float: left;
  margin-right: 8px;
  line-height: 1;
}

.bio-secondary {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--secondary-text-color);
  margin-top: 25px;
  border-left: 3px solid var(--accent-color);
  padding-left: 15px;
  font-style: italic;
}

/* Expertise Section */
.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 25px 0;
  justify-content: space-between;
}

.expertise-item {
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(184, 135, 11, 0.15);
}

.expertise-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(184, 135, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.expertise-icon i {
  color: var(--accent-color);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.expertise-item:hover .expertise-icon i {
  transform: scale(1.2);
}

.expertise-detail {
  display: flex;
  flex-direction: column;
}

.expertise-detail h4 {
  font-size: 1rem;
  margin: 0 0 5px 0;
  color: var(--text-color);
}

.expertise-detail span {
  font-size: 0.8rem;
  color: var(--secondary-text-color);
}

/* CTA Buttons */
.cta-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.about-cta {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  white-space: nowrap;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
  z-index: -1;
}

.about-cta:hover::before {
  left: 100%;
}

.about-cta:not(.secondary) {
  background-color: var(--accent-color);
  color: var(--bg-color);
  box-shadow: 0 5px 15px rgba(184, 135, 11, 0.3);
}

.about-cta:not(.secondary):hover {
  background-color: #b8870b;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(184, 135, 11, 0.4);
}

.about-cta.secondary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background-color: transparent;
}

.about-cta.secondary:hover {
  background-color: rgba(184, 135, 11, 0.1);
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from {
    opacity: 0;
    width: 0;
  }
  to {
    opacity: 1;
    width: 80px;
  }
}

@keyframes pulseEffect {
  from {
    transform: scale(1);
    opacity: 0.5;
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulseGlow {
  from {
    opacity: 0.2;
    transform: scale(0.9);
  }
  to {
    opacity: 0.4;
    transform: scale(1.1);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInBadge {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmerEffect {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply the animations to the elements */
.rest-all img {
  animation: slideInLeft 1.2s ease-out forwards;
  opacity: 0;
}

.rest-all p {
  animation: slideInRight 1.2s ease-out forwards;
  opacity: 0;
}

/* ENHANCED RESPONSIVE ADJUSTMENTS */

/* Large Desktop */
@media screen and (min-width: 1400px) {
  .about-my {
    max-width: 1400px;
    padding: 0 40px;
  }
  
  .about-title {
    font-size: 3rem;
  }
  
  .bio-text, .bio-secondary {
    font-size: 1.2rem;
  }
  
  .profile-frame {
    width: 320px;
    height: 320px;
  }
}

/* Desktop/Tablet */
@media screen and (max-width: 1200px) {
  .profile-frame {
    width: 260px;
    height: 260px;
  }
  
  .experience-badge {
    right: -5px;
    padding: 8px 16px;
  }
}

/* Tablet */
@media screen and (max-width: 992px) {
  .about-my {
    margin: 60px auto;
    padding: 0 15px;
  }
  
  .about-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .profile-container {
    margin: 0 auto;
    flex: none;
  }
  
  .profile-frame {
    width: 240px;
    height: 240px;
  }
  
  .experience-badge {
    right: 0;
    bottom: 15px;
  }
  
  .bio-card {
    padding: 25px;
  }
  
  .about-title {
    font-size: 2.2rem;
  }
  
  .expertise-list {
    justify-content: center;
  }
  
  .expertise-item {
    flex: 0 1 45%;
  }
  
  .cta-container {
    justify-content: center;
  }
  
  .about-cta {
    min-width: 200px;
    text-align: center;
  }
}

/* Mobile Large */
@media screen and (max-width: 768px) {
  .about-my {
    margin: 50px auto;
    padding: 0 15px;
  }
  
  .about-header {
    margin-bottom: 30px;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .profile-container {
    margin-bottom: 10px;
  }
  
  .profile-frame {
    width: 220px;
    height: 220px;
    border-width: 2px;
    padding: 6px;
  }
  
  .experience-badge {
    padding: 8px 14px;
    bottom: 10px;
    right: 0;
  }
  
  .experience-years {
    font-size: 1.3rem;
  }
  
  .experience-text {
    font-size: 0.75rem;
  }
  
  .bio-card {
    margin-top: 20px;
    padding: 20px;
  }
  
  .bio-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .bio-text::first-letter {
    font-size: 2.2rem;
  }
  
  .expertise-list {
    gap: 12px;
    flex-direction: column;
  }
  
  .expertise-item {
    flex: 0 1 100%;
    padding: 12px;
  }
  
  .cta-container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .about-cta {
    padding: 10px 20px;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
    white-space: normal;
  }
  
  .rest-all img,
  .rest-all p {
    animation-duration: 0.8s;
  }
}

/* Mobile Medium */
@media screen and (max-width: 580px) {
  .about-my {
    margin: 40px auto;
    padding: 0 12px;
  }
  
  .profile-frame {
    width: 200px;
    height: 200px;
  }
  
  .experience-badge {
    padding: 6px 12px;
    transform: scale(0.9);
    right: -5px;
    bottom: 8px;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
}

/* Mobile Small */
@media screen and (max-width: 480px) {
  .about-my {
    margin: 30px auto;
    padding: 0 10px;
  }
  
  .about-header {
    margin-bottom: 25px;
  }
  
  .about-title {
    font-size: 1.7rem;
  }
  
  .profile-container {
    margin: -10px auto 15px;
  }
  
  .profile-frame {
    width: 180px;
    height: 180px;
    border-width: 2px;
    padding: 5px;
  }
  
  .experience-badge {
    padding: 6px 10px;
    transform: scale(0.85);
    right: -8px;
    bottom: 5px;
  }
  
  .experience-years {
    font-size: 1.1rem;
  }
  
  .experience-text {
    font-size: 0.7rem;
  }
  
  .bio-card {
    padding: 18px 15px;
  }
  
  .bio-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .bio-text::first-letter {
    font-size: 2rem;
  }
  
  .bio-secondary {
    font-size: 0.9rem;
    line-height: 1.5;
    padding-left: 10px;
  }
  
  .expertise-icon {
    width: 38px;
    height: 38px;
  }
  
  .expertise-icon i {
    font-size: 1rem;
  }
  
  .expertise-detail h4 {
    font-size: 0.9rem;
  }
  
  .expertise-detail span {
    font-size: 0.75rem;
  }
  
  .cta-container {
    margin-top: 20px;
    gap: 10px;
  }
}

/* Mobile Extra Small */
@media screen and (max-width: 360px) {
  .about-title {
    font-size: 1.6rem;
  }
  
  .profile-frame {
    width: 160px;
    height: 160px;
  }
  
  .experience-badge {
    transform: scale(0.8);
    right: -10px;
    bottom: 3px;
  }
  
  .bio-card {
    padding: 15px 12px;
  }
  
  .profile-glow {
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
  }
}

/* Mobile Ultra Small */
@media screen and (max-width: 320px) {
  .about-my {
    padding: 0 8px;
  }
  
  .profile-frame {
    width: 150px;
    height: 150px;
  }
  
  .experience-badge {
    transform: scale(0.75);
    right: -12px;
  }
  
  .about-title {
    font-size: 1.5rem;
  }
}

/* Performance Optimizations */
@media (max-width: 768px) {
  .profile-glow {
    animation: pulseGlow 4s infinite alternate 1s;
  }
  
  .title-underline::before, 
  .title-underline::after {
    animation: pulseEffect 3s infinite alternate 1.5s;
  }
  
  @keyframes shimmerEffect {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }
}

/* Accessibility and Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .profile-glow,
  .title-underline::before,
  .title-underline::after,
  .bio-card::before {
    animation: none;
  }
  
  .about-title,
  .title-underline,
  .profile-container,
  .bio-container,
  .experience-badge {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Text wrapping and overflow handling */
.bio-card {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure proper spacing and alignment on all devices */
@media screen and (max-width: 768px) {
  .profile-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .experience-badge {
    position: absolute;
    z-index: 2;
  }
}



/* ------- Actual Page 2 -> Yashashish Foundation ------ */
/* Yashashish Foundation Section - Modern Design with Animations */
.yashashish-foundation {
  position: relative;
  background-color: var(--bg-color);
  padding: 80px 20px;
  margin: 60px auto;
  max-width: 1200px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(184, 135, 11, 0.1);
  border: 1px solid rgba(184, 135, 11, 0.3);
}

/* Title Styling with Animation */
.foundation-heading {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
  perspective: 800px;
}

.foundation-title {
  font-family: "Merriweather", serif;
  font-size: 2.8rem;
  color: var(--accent-color, #b8870b);
  display: block;
  position: relative;
  margin-bottom: 5px;
  opacity: 0;
  animation: titleFadeIn 1.2s ease forwards 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.foundation-title-shadow {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: rgba(184, 135, 11, 0.4);
  display: block;
  position: relative;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  animation: shadowFadeIn 1.5s ease forwards 0.8s;
}

/* Content Layout */
.foundation-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  position: relative;
}

/* Logo Section */
.foundation-logo-container {
  flex: 1;
  min-width: 300px;
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInFromLeft 1s ease forwards 0.5s;
}

.foundation-logo-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 400px;
}

.foundation-logo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 3px solid var(--accent-color, #b8870b);
  position: relative;
  z-index: 2;
  filter: contrast(1.1) brightness(1.05);
  transition: all 0.5s ease;
}

.foundation-logo:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(184, 135, 11, 0.3);
}

.logo-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(184, 135, 11, 0.3) 0%, transparent 70%);
  border-radius: 12px;
  z-index: 1;
  animation: pulseGlow 3s infinite alternate ease-in-out;
}

.foundation-badge {
  position: absolute;
  bottom: -15px;
  right: 20%;
  background-color: var(--bg-color);
  border: 2px solid var(--accent-color, #b8870b);
  border-radius: 50px;
  padding: 8px 18px;
  color: var(--accent-color, #b8870b);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 3;
  transform: translateY(20px);
  opacity: 0;
  animation: badgePopIn 0.6s ease forwards 1.2s;
}

/* Information Section */
.foundation-info {
  flex: 1.5;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInFromRight 1s ease forwards 0.8s;
}

.foundation-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--text-color, #fff);
  position: relative;
  padding-left: 18px;
  border-left: 3px solid var(--accent-color, #b8870b);
}

.foundation-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.highlight-item {
  flex: 1;
  min-width: 180px;
  background-color: rgba(184, 135, 11, 0.08);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(184, 135, 11, 0.2);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
  background-color: rgba(184, 135, 11, 0.12);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(184, 135, 11, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color, #b8870b);
  font-size: 1.2rem;
}

.highlight-text {
  font-weight: 500;
  color: var(--text-color, #fff);
  font-size: 0.95rem;
}

.foundation-mission {
  font-size: 1rem;
  line-height: 1.7;
  margin: 25px 0;
  color: var(--secondary-text-color, #bbb);
  font-style: italic;
}

.foundation-cta {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.foundation-button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-align: center;
}

.foundation-button.primary {
  background-color: var(--accent-color, #b8870b);
  color: var(--bg-color, #000);
  border: 2px solid var(--accent-color, #b8870b);
}

.foundation-button.primary:hover {
  background-color: transparent;
  color: var(--accent-color, #b8870b);
  transform: translateY(-3px);
}

.foundation-button.secondary {
  background-color: transparent;
  color: var(--text-color, #fff);
  border: 2px solid var(--text-color, #fff);
}

.foundation-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Background Elements */
.foundation-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.bg-particle {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(184, 135, 11, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0.5;
}

.bg-particle:nth-child(1) {
  top: 20%;
  left: 15%;
  width: 200px;
  height: 200px;
  animation: floatParticle 15s infinite alternate ease-in-out;
}

.bg-particle:nth-child(2) {
  bottom: 15%;
  right: 10%;
  width: 150px;
  height: 150px;
  animation: floatParticle 12s infinite alternate-reverse ease-in-out;
}

.bg-particle:nth-child(3) {
  top: 70%;
  left: 5%;
  width: 120px;
  height: 120px;
  animation: floatParticle 18s infinite alternate ease-in-out;
}

.bg-particle:nth-child(4) {
  top: 10%;
  right: 20%;
  width: 180px;
  height: 180px;
  animation: floatParticle 20s infinite alternate-reverse ease-in-out;
}

/* Animations */
@keyframes titleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shadowFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulseGlow {
  0% {
    opacity: 0.4;
    transform: scale(0.95);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes badgePopIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  70% {
    transform: translateY(-5px) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatParticle {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(20px, 20px);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .foundation-content {
    flex-direction: column;
  }
  
  .foundation-logo-container {
    margin-bottom: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .foundation-title {
    font-size: 2.4rem;
  }
  
  .foundation-highlights {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .yashashish-foundation {
    padding: 60px 15px;
    margin: 40px 15px;
  }
  
  .foundation-title {
    font-size: 2rem;
  }
  
  .foundation-title-shadow {
    font-size: 1rem;
  }
  
  .foundation-cta {
    flex-direction: column;
  }
  
  .foundation-button {
    width: 100%;
  }
  
  .highlight-item {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .foundation-title {
    font-size: 1.8rem;
  }
  
  .foundation-description {
    font-size: 1rem;
    padding-left: 12px;
  }
  
  .foundation-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* ------ Page2 ------- */

.page2 {
  display: flex;
  gap: 4%;
  max-width: 1400px;
  margin: 60px auto;
  padding: 40px;
  background: linear-gradient(135deg, rgba(184, 135, 11, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(184, 135, 11, 0.1);
  border: 1px solid rgba(184, 135, 11, 0.1);
}

.cols {
  flex: 1;
  opacity: 1;
  transition: all 0.6s ease-in-out;
}

.left-col {
  padding-right: 20px;
}

.right-col {
  padding-left: 20px;
  border-left: 2px solid rgba(184, 135, 11, 0.2);
}

.title {
  font-size: 2.2rem;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 30px;
  font-family: "Merriweather", serif;
}

.underline-text {
  display: inline-block;
  position: relative;
}

.underline-text::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--hover-color));
  border-radius: 2px;
  transition: width 0.6s ease-in-out;
}

.underline-text:hover::after {
  width: 100%;
}

/* Content Wrapper */
.content-wrapper {
  line-height: 1.8;
}

.intro-para {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.7;
}

.detail-para {
  font-size: 1rem;
  color: var(--secondary-text-color);
  margin-bottom: 18px;
  line-height: 1.7;
}

.closing-para {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 25px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.7;
}

/* Button Styling */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:hover {
  background: var(--accent-color);
  color: var(--bg-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 135, 11, 0.3);
}

/* Section Blocks */
.section-block {
  margin-bottom: 40px;
}

.section-block:last-child {
  margin-bottom: 0;
}

/* Articles Container */
.articles-container,
.achievements-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Article Styling */
.art1,
.achievement-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(184, 135, 11, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(184, 135, 11, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.art1::before,
.achievement-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-color), var(--hover-color));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.art1:hover,
.achievement-item:hover {
  background: rgba(184, 135, 11, 0.08);
  transform: translateX(8px);
  box-shadow: 0 10px 25px rgba(184, 135, 11, 0.15);
}

.art1:hover::before,
.achievement-item:hover::before {
  opacity: 1;
}

/* Date Badge */
.date-badge {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), #d4af37);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bg-color);
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 15px rgba(184, 135, 11, 0.3);
}

.achievement-badge {
  background: linear-gradient(135deg, var(--hover-color), #ff6b35);
}

.date-badge .month {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.date-badge .year {
  font-size: 1.1rem;
  font-weight: 800;
}

/* Article Content */
.article-content,
.achievement-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-title,
.achievement-title {
  font-size: 1.3rem;
  color: var(--accent-color);
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.achievement-title i {
  color: var(--hover-color);
}

.article-excerpt,
.achievement-desc {
  font-size: 0.95rem;
  color: var(--secondary-text-color);
  line-height: 1.6;
  margin: 0;
}

/* Read More Links */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

.read-more:hover {
  color: var(--hover-color);
  transform: translateX(5px);
}

.read-more i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(3px);
}

/* Achievements Section Specific */
.achievements-section {
  border-top: 2px solid rgba(184, 135, 11, 0.1);
  padding-top: 35px;
  margin-top: 35px;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 768px) {
  .page2 {
    flex-direction: column;
    gap: 30px;
    margin: 30px 20px;
    padding: 30px;
  }
  
  .right-col {
    padding-left: 0;
    border-left: none;
    border-top: 2px solid rgba(184, 135, 11, 0.2);
    padding-top: 30px;
  }
  
  .left-col {
    padding-right: 0;
  }
  
  .title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .art1,
  .achievement-item {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
  
  .date-badge {
    width: 100%;
    height: 60px;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  
  .date-badge .month,
  .date-badge .year {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .page2 {
    margin: 20px 10px;
    padding: 20px;
    gap: 25px;
  }
  
  .title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .intro-para {
    font-size: 1rem;
  }
  
  .detail-para,
  .closing-para {
    font-size: 0.9rem;
  }
  
  .article-title,
  .achievement-title {
    font-size: 1.1rem;
  }
  
  .article-excerpt,
  .achievement-desc {
    font-size: 0.85rem;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
  
  .art1,
  .achievement-item {
    padding: 15px;
  }
  
  .date-badge {
    height: 50px;
  }
  
  .achievements-section {
    padding-top: 25px;
    margin-top: 25px;
  }
}

/* Extra Small */
@media (max-width: 320px) {
  .page2 {
    margin: 15px 5px;
    padding: 15px;
  }
  
  .title {
    font-size: 1.3rem;
  }
  
  .art1,
  .achievement-item {
    padding: 12px;
    gap: 12px;
  }
}

/* ----- Page 3 ------- */
:root {
  --bg-color: #000; /* Black background */
  --light-bg: rgba(51, 51, 51, 0.1); /* Transparent gray for light backgrounds */
  --text-color: #fff; /* White text */
  --accent-color: #b8870b; /* Golden accent */
  --hover-color: #ff4500; /* Orange for hover effects */
  --secondary-text-color: #bbb; /* Light gray for secondary text */
  --error-color: #f44336; /* Red for error elements */
  --border-color: #ccc; /* Light border color */
}

.page3 {
  background-color: var(--light-bg);
  min-height: 100vh;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.page3:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.page3 h2 {
  padding-top: 10px;
  text-align: center;
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 30px;
  text-transform: uppercase;
  animation: fadeInDown 1s ease-out;
}

.hover-effect-2::after {
  content: "";
  width: 0%;
  height: 3.5px;
  background: var(--text-color);
  display: block;
  margin: auto;
  transition: 0.5s;
}

.hover-effect-2:hover::after {
  width: 20%;
}

.about-practices {
  padding: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  grid-auto-rows: minmax(100px, auto);
  color: var(--text-color);
}

.page3 img {
  width: 25vw;
  z-index: 2;
}

.practice {
  min-width: 200px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  background-color: var(--bg-color);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out;
}

.practice:hover {
  background-color: #262c3a;
  color: var(--text-color);
  transform: scale(1.05);
}

.practice .practice-content h3 {
  margin: 0;
  padding: 0;
  margin-top: 3px;
  font-weight: 550;
  font-style: italic;
  color: var (--accent-color);
  animation: slideInLeft 1s ease-out;
}

.practice .practice-content p {
  margin: 0;
  padding: 0;
  margin-top: 5px;
  font-weight: 300;
  color: var(--secondary-text-color);
  text-align: center;
  animation: slideInRight 1s ease-out;
}

@media (max-width: 768px) {
  .practice-content h3,
  .practice-content p {
    animation: fadeInUp 1s ease-out;
  }
}

.practice .img {
  border-radius: 8px;
  display: inline-block;
  padding: 8px;
}

.practice .img img {
  width: 65px;
  border-radius: 50%;
  transition: transform 0.8s ease;
  animation: zoomIn 1s ease-out;
}

.practice:hover .img img {
  transform: rotate(360deg);
}

.practice .read-more {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.practice:hover .read-more {
  color: var(--hover-color);
}

.read-more:hover {
  text-decoration: underline;
}

.practice4 .img img{
  height: 3.5rem;
  width: 3.5rem;
  /* border-radius: 80%; */
}

@media (max-width: 700px) {
  .page3 {
    padding: 20px;
  }

  .about-practices {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .practice {
    padding: 15px;
  }

  .practice .practice-content h3 {
    font-size: 1.5rem;
  }

  .practice .practice-content p {
    font-size: 1rem;
  }

  .practice .read-more {
    font-size: 1rem;
  }
}

/* -------- Page 3 -> Our Team --------- */
/* Our Team Section Styling */
.our-team {
  padding: 80px 0;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

/* Animated Background Effect */
.our-team::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(60deg, transparent, rgba(184, 135, 11, 0.05), transparent);
  transform: skewX(-30deg);
  animation: shimmer 8s infinite linear;
  pointer-events: none;
}

@keyframes shimmer {
  0% { transform: translateX(-50%) skewX(-30deg); }
  100% { transform: translateX(50%) skewX(-30deg); }
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading with animation */
.team-heading {
  font-family: "Merriweather", serif;
  font-size: 2.5rem;
  text-align: center;
  color: var(--text-color);
  margin-bottom: 60px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.team-heading.animate {
  opacity: 1;
  transform: translateY(0);
}

.team-heading span {
  color: var(--accent-color);
  position: relative;
}

.team-heading::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  transition: width 0.5s ease;
}

.team-heading:hover::after {
  width: 150px;
}

/* Team Grid Layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Team Member Card */
.team-member {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  perspective: 1000px;
}

.team-member.visible {
  opacity: 1;
  transform: translateY(0);
}

.member-card {
  height: 450px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
  cursor: pointer;
}

.member-card.flipped {
  transform: rotateY(180deg);
}

.member-front, .member-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(184, 135, 11, 0.3);
}

.member-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(10, 10, 10, 0.95));
}

/* Member Image Style */
.member-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.member-card:hover .member-img img {
  transform: scale(1.05);
}

/* Social Media Icons */
.member-social {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(184, 135, 11, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.member-img:hover .member-social {
  opacity: 1;
}

.member-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 18px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.member-img:hover .member-social a {
  opacity: 1;
  transform: translateY(0);
}

.member-social a:nth-child(1) { transition-delay: 0.1s; }
.member-social a:nth-child(2) { transition-delay: 0.2s; }
.member-social a:nth-child(3) { transition-delay: 0.3s; }

.member-social a:hover {
  background-color: var(--accent-color);
  color: black;
  transform: translateY(-5px);
}

/* Member Info */
.member-info {
  padding: 20px;
  text-align: center;
}

.member-info h3 {
  font-family: "Merriweather", serif;
  color: var(--accent-color);
  font-size: 1.4rem;
  margin: 0 0 5px;
  position: relative;
  display: inline-block;
}

.member-info h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.5s ease;
}

.member-card:hover .member-info h3::after {
  width: 100%;
}

.member-role {
  color: var(--text-color);
  font-weight: 500;
  margin: 10px 0 5px;
}

.member-location {
  color: var(--secondary-text-color);
  font-size: 0.9rem;
  margin: 5px 0 0;
}

.member-location i {
  color: var(--accent-color);
  margin-right: 5px;
}

/* Back of card */
.member-bio {
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.member-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Button Styles */
.team-btn {
  display: inline-block;
  padding: 10px 15px;
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
}

.team-btn:hover {
  background-color: var(--accent-color);
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(184, 135, 11, 0.4);
}

/* Team CTA Section */
.team-cta {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(184, 135, 11, 0.05), rgba(184, 135, 11, 0.1));
  border-radius: 10px;
  border: 1px solid rgba(184, 135, 11, 0.2);
  animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px rgba(184, 135, 11, 0.1); }
  100% { box-shadow: 0 0 20px rgba(184, 135, 11, 0.3); }
}

.team-cta p {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: black;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-30deg);
  transition: all 0.5s ease;
}

.cta-btn:hover {
  background-color: var(--hover-color);
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

.cta-btn:hover::before {
  left: 100%;
  color: white;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-heading {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 768px) {
  .our-team {
    padding: 60px 0;
  }
  
  .team-heading {
    font-size: 2rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .member-card {
    height: 420px;
  }
  
  .member-img {
    height: 250px;
  }
}

@media screen and (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .team-heading {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .member-card {
    height: 400px;
  }
  
  .member-img {
    height: 230px;
  }
  
  .our-team {
    padding: 40px 0;
  }
  
  .team-cta {
    padding: 20px;
  }
  
  .team-cta p {
    font-size: 1.1rem;
  }
}

/* Connect with Us */
.connect-with-us {
  margin: auto;
}

.connect-with-us h2 {
  text-align: center;
  font-size: 2.5rem;
  margin: 0;
  padding: 0;
  color: var(--accent-color);
}

form {
  padding-top: 15px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.contact-col div {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.contact-col div .fa {
  font-size: 28px;
  color: var(--error-color);
  margin: 10px;
  margin-right: 30px;
}

.contact-col div h5 {
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--secondary-text-color);
  font-weight: 400;
}

.contact-col input,
.contact-col textarea {
  width: 75%;
  padding: 15px;
  margin-bottom: 17px;
  outline: none;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.btn-2 {
  width: 100px;
  text-align: center;
  padding: 15px;
  border: 2px solid var(--accent-color);
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  margin-top: 15px;
  color: var(--bg-color);
  background-color: var(--accent-color);
}

.btn-2:hover {
  color: var(--accent-color);
  background-color: var(--bg-color);
}


/* ------ Footer -------- */
.footer {
  margin-top: 60px;
  background-color: #333;
  width: 100%;
  color: #ffffff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.footer .main-footer-part {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.footer .links {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer .links a {
  color: #fff;
  transition: color 0.3s ease;
}

.footer .links a:hover {
  color: #b8860b;
  text-decoration: underline;
}

.footer .icons {
  margin-top: 7px;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer .icons svg {
  width: 35px;
  height: 30px;
  transition: transform 0.3s ease;
}

.footer .icons svg:hover {
  transform: scale(1.1);
}

.footer .logo {
  margin-top: 1.5rem;
}

.footer .space {
  width: 100%;
  height: 30px;
}

.footer .line {
  background-color: grey;
  width: 100%;
  height: 2px;
}

.footer .space-2 {
  height: 15px;
}

@media (max-width: 700px) {
  .footer {
    padding: 20px;
  }

  .footer .main-footer-part {
    flex-direction: column;
    align-items: center;
  }

  .footer .icons {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .about-my {
    padding: 30px;
    margin: 30px 20px;
  }

  .about-my h3 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .rest-all {
    flex-direction: column;
    gap: 30px;
  }

  .my-img {
    width: 200px;
    height: 200px;
  }

  .rest-all p {
    padding: 20px;
    font-size: 1rem;
  }
}

/* ...existing code... */

.our-team {
  background-color: var(--bg-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.our-team:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.team {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  color: var(--text-color);
  flex-wrap: wrap;
  justify-content: center;
}

.team-col {
  min-height: 60vh;
  min-width: 21vw;
  background-color: var(--light-bg);
  border-radius: 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  overflow: hidden;
  margin-bottom: 20px;
}

.team-col:hover {
  transform: scale(1.05);
  box-shadow: 0px 18px 25px rgba(0, 0, 0, 0.2);
}

.team-col img {
  height: 30vh;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.team-col:hover img {
  transform: scale(1.05);
}

.details {
  padding: 0px 10px;
}

.team-col .name {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 20px;
}

.designation,
.location {
  font-size: 15px;
  margin-top: 10px;
  color: var(--secondary-text-color);
}

.contacts {
  font-size: 17px;
  padding-top: 25px;
  color: var(--text-color);
}

.connect-with-us {
  background-color: var(--bg-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.connect-with-us:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

form {
  padding-top: 15px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.contact-col input,
.contact-col textarea {
  width: 75%;
  padding: 15px;
  margin-bottom: 17px;
  outline: none;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.btn-2 {
  width: 100px;
  text-align: center;
  padding: 15px;
  border: 2px solid var(--accent-color);
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  margin-top: 15px;
  color: var(--bg-color);
  background-color: var(--accent-color);
}

.btn-2:hover {
  color: var(--accent-color);
  background-color: var(--bg-color);
}

/* Footer */

:root {
  --footer-bg: #000000;
  --footer-text: #fff;
  --footer-accent: #b8870b;
  --footer-hover: #ff4500;
  --footer-border: #333;
  --footer-secondary: #bbb;
}

.footer {
  position: relative;
  background-color: var(--footer-bg);
  color: var(--footer-text);
  overflow: hidden;
  margin-top: 80px;
}

.footer-wave {
  width: 100%;
  line-height: 0;
  transform: translateY(5px); 
}

.footer-wave svg path {
  fill: var(--footer-accent);
  opacity: 0.2;
  transition: all 0.5s ease;
}

.footer:hover .footer-wave svg path {
  opacity: 0.3;
  animation: waveMove 3s ease-in-out infinite alternate;
}

@keyframes waveMove {
  0% {
    d: path("M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z");
  }
  100% {
    d: path("M0,160L48,176C96,192,192,224,288,224C384,224,480,192,576,192C672,192,768,224,864,240C960,256,1056,256,1152,234.7C1248,213,1344,171,1392,149.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z");
  }
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 5% 30px;
  position: relative;
  z-index: 2;
}

.footer-section {
  flex: 1;
  min-width: 280px;
  margin-bottom: 30px;
  padding: 0 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.footer-section:hover {
  transform: translateY(-5px);
}


.logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--footer-accent);
  transition: transform 0.5s ease;
}

.logo-container:hover .footer-logo {
  transform: rotate(360deg);
}

.company-name {
  margin-left: 15px;
  font-size: 1.5rem;
  color: var(--footer-accent);
  font-family: "Merriweather", serif;
}

.about-text {
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--footer-secondary);
}

.contact-info {
  font-size: 0.9rem;
}

.contact-info div {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: var(--footer-accent);
  margin-right: 10px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}


.quick-links h2 {
  color: var(--footer-accent);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: "Merriweather", serif;
  position: relative;
}

.quick-links h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--footer-accent);
  transition: width 0.3s ease;
}

.quick-links:hover h2::after {
  width: 100px;
}

.links ul {
  list-style: none;
  padding: 0;
}

.links ul li {
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.links ul li:hover {
  transform: translateX(5px);
}

.footer-link {
  color: var(--footer-secondary);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-link:hover {
  color: var(--footer-hover);
}

.link-icon {
  margin-right: 10px;
  color: var(--footer-accent);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.footer-link:hover .link-icon {
  transform: scale(1.2);
}


.connect h2 {
  color: var(--footer-accent);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: "Merriweather", serif;
  position: relative;
}

.connect h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--footer-accent);
  transition: width 0.3s ease;
}

.connect:hover h2::after {
  width: 100px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(184, 135, 11, 0.1);
  color: var(--footer-text);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--footer-accent);
  transform: scale(0);
  transition: transform 0.5s ease;
  border-radius: 50%;
  z-index: -1;
}

.social-icon:hover {
  color: #000;
}

.social-icon:hover::before {
  transform: scale(1);
}

.social-icon i {
  font-size: 18px;
  position: relative;
  z-index: 1;
}


.newsletter {
  margin-top: 20px;
}

.newsletter h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--footer-text);
}

.newsletter form {
  display: flex;
  flex-wrap: wrap;
}

.newsletter input {
  flex: 1;
  min-width: 150px;
  padding: 10px 15px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--footer-text);
  border-radius: 4px 0 0 4px;
  outline: none;
  transition: background-color 0.3s ease;
}

.newsletter input:focus {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-subscribe {
  background-color: var(--footer-accent);
  color: #000;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-subscribe:hover {
  background-color: var(--footer-hover);
  color: #fff;
}


.footer-bottom {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 20px 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(184, 135, 11, 0.3);
  position: relative;
  z-index: 2;
}

.copyright {
  font-size: 0.9rem;
  color: var(--footer-secondary);
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  color: var(--footer-secondary);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--footer-hover);
}


.footer-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--footer-accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatUp 15s infinite ease-in-out;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  left: 25%;
  animation-delay: 2s;
  animation-duration: 18s;
}

.particle:nth-child(3) {
  left: 40%;
  animation-delay: 5s;
  animation-duration: 15s;
}

.particle:nth-child(4) {
  left: 60%;
  animation-delay: 3s;
  animation-duration: 20s;
}

.particle:nth-child(5) {
  left: 75%;
  animation-delay: 7s;
  animation-duration: 13s;
}

.particle:nth-child(6) {
  left: 90%;
  animation-delay: 9s;
  animation-duration: 16s;
}

@keyframes floatUp {
  0% {
    bottom: -20px;
    opacity: 0.3;
    width: 5px;
    height: 5px;
  }
  50% {
    opacity: 0.6;
    width: 8px;
    height: 8px;
  }
  100% {
    bottom: 100%;
    opacity: 0;
    width: 3px;
    height: 3px;
  }
}
@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    width: 100%;
    margin-bottom: 40px;
    padding: 0;
  }
  
  .footer-section:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .copyright {
    margin-bottom: 15px;
  }
  
  .footer-nav {
    justify-content: center;
  }
  
  .logo-container {
    justify-content: center;
  }
  
  .quick-links h2, .connect h2 {
    text-align: center;
  }
  
  .quick-links h2::after, .connect h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  
  .newsletter form {
    flex-direction: column;
  }
  
  .newsletter input {
    border-radius: 4px;
    margin-bottom: 10px;
  }
  
  .btn-subscribe {
    border-radius: 4px;
    width: 100%;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-my, .Yashashish {
    padding: 20px;
    margin: 20px;
  }

  .rest-all, .rest-all-yash {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .my-img {
    width: 150px;
    height: 150px;
  }

  .yash-logo {
    max-width: 100%;
  }
}

/* ...existing code... */


/* ================================
   PAGE 2 LAYOUT FIX
================================ */

/* Main container - make it flex column */
.page2 {
    display: flex;
    flex-direction: column;
    gap: 6%;
    margin-left: 5%;
    margin-right: 5%;
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}

/* Columns wrapper - this holds left and right columns */
.page2-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 6%;
    width: 100%;
}

/* Keep your existing column styles */
.page2-columns .left-col {
    flex: 1;
    min-width: 300px;
}

.page2-columns .right-col {
    flex: 1;
    min-width: 300px;
}

/* ================================
   HORIZONTAL DIVIDER
================================ */
.section-divider {
    width: 100%;
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 20%, rgba(184, 135, 11, 0.5) 50%, var(--accent-color) 80%, transparent 100%);
    margin: 50px 0 40px 0;
}

/* ================================
   ACHIEVEMENTS SECTION - FULL WIDTH
================================ */
.achievements-section-full {
    width: 100%;
    padding: 20px 0;
}

.achievements-section-full > .title {
    text-align: center;
    margin-bottom: 35px;
    font-size: 30px;
    color: var(--accent-color);
    font-weight: bold;
    position: relative;
}

/* ================================
   WRAPPER - STRETCH ITEMS
================================ */
.achievements-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: stretch;
}

/* ================================
   LEFT - PHOTO SECTION (WIDER ON LAPTOP)
================================ */
.achievements-photo-section {
    width: 400px; /* INCREASED from 300px - Wider on laptop */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.committee-photo {
    background-color: var(--bg-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(184, 135, 11, 0.2);
    border: 2px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.committee-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(184, 135, 11, 0.3);
}

.committee-photo img {
    width: 100%;
    flex: 1;
    object-fit: cover;
    display: block;
    min-height: 350px; /* INCREASED from 300px */
}

.committee-photo .photo-caption {
    margin: 0;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    background: rgba(184, 135, 11, 0.15);
    border-top: 2px solid var(--accent-color);
    flex-shrink: 0;
}

/* ================================
   RIGHT - ACHIEVEMENTS CONTENT
================================ */
.achievements-content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Individual Achievement Card */
.achievement-card {
    background-color: var(--bg-color);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
    border: 1px solid var(--accent-color);
    border-left: 5px solid var(--accent-color);
    display: flex;
    flex-direction: row;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(184, 135, 11, 0.25);
}

/* Date Badge */
.achievement-date {
    background: rgba(184, 135, 11, 0.15);
    border-bottom: 3.5px solid var(--accent-color);
    color: var(--text-color);
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    flex-shrink: 0;
    min-width: 65px;
    height: fit-content;
}

.achievement-date .month {
    display: block;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
}

.achievement-date .year {
    display: block;
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.9;
}

/* Achievement Info */
.achievement-info {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

/* Icon */
.achievement-icon {
    width: 50px;
    height: 50px;
    background: rgba(184, 135, 11, 0.2);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    background: var(--accent-color);
    color: var(--bg-color);
}

.achievement-icon.icc {
    background: rgba(184, 135, 11, 0.1);
}

.achievement-card:hover .achievement-icon.icc {
    background: var(--accent-color);
    color: var(--bg-color);
}

/* Details */
.achievement-details {
    flex: 1;
}

.achievement-details h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    font-family: "Merriweather", serif;
}

.achievement-details .location {
    display: block;
    font-size: 13px;
    color: var(--secondary-text-color);
    margin-bottom: 12px;
    font-weight: 500;
}

.achievement-details p {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: var(--secondary-text-color);
    line-height: 1.7;
}

.achievement-details p strong {
    color: var(--text-color);
}

/* Meta - Order & Link */
.achievement-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(184, 135, 11, 0.3);
}

.order-ref {
    font-size: 13px;
    color: var(--secondary-text-color);
}

.order-ref i {
    color: var(--accent-color);
    margin-right: 6px;
}

.view-order {
    font-size: 13px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 8px 15px;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
}

.view-order:hover {
    color: var(--bg-color);
    background-color: var(--accent-color);
}

.view-order i {
    margin-right: 5px;
}

/* ================================
   RESPONSIVE - TABLET
================================ */
@media screen and (max-width: 992px) {
    .page2-columns {
        gap: 25px;
    }
    
    .achievements-wrapper {
        gap: 30px;
    }
    
    .achievements-photo-section {
        width: 320px; /* Slightly smaller on tablet */
    }
    
    .committee-photo img {
        min-height: 300px;
    }
}

/* ================================
   RESPONSIVE - MOBILE
================================ */
@media screen and (max-width: 768px) {
    .page2-columns {
        flex-direction: column;
    }
    
    .page2-columns .left-col,
    .page2-columns .right-col {
        width: 100%;
        min-width: 100%;
    }
    
    .section-divider {
        margin: 35px 0 30px 0;
    }
    
    /* Stack photo and content vertically */
    .achievements-wrapper {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }
    
    .achievements-photo-section {
        width: 100%;
    }
    
    .committee-photo {
        flex: none;
    }
    
    .committee-photo img {
        height: 380px; /* INCREASED - Taller on mobile */
        flex: none;
        min-height: auto;
        object-position: top center;
    }
    
    /* Stack card elements */
    .achievement-card {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .achievement-date {
        align-self: flex-start;
    }
    
    .achievement-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .achievement-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ================================
   RESPONSIVE - SMALL MOBILE
================================ */
@media screen and (max-width: 480px) {
    .achievements-section-full {
        padding: 15px 0;
    }
    
    .achievement-card {
        padding: 15px;
    }
    
    .achievement-details h4 {
        font-size: 16px;
    }
    
    .achievement-details p {
        font-size: 13px;
    }
    
    .achievement-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .committee-photo img {
        height: 320px; /* INCREASED from 200px - Still taller on small mobile */
    }
    
    .view-order {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   NAVBAR STYLES
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184, 135, 11, 0.3);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name-1 {
    font-family: "Merriweather", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.2;
}

.company-tagline {
    font-size: 0.85rem;
    color: var(--secondary-text-color);
    font-weight: 400;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: none;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 3px 0;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 100px 30px 40px;
    border-left: 1px solid rgba(184, 135, 11, 0.3);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    margin-bottom: 5px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
}

.mobile-nav.active ul li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav.active ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active ul li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active ul li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active ul li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active ul li:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.active ul li:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav.active ul li:nth-child(7) { transition-delay: 0.4s; }

.mobile-nav ul li a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
    color: var(--accent-color);
    background: rgba(184, 135, 11, 0.1);
    border-left-color: var(--accent-color);
    transform: translateX(5px);
} 

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
} 

/* ============================================
   RESPONSIVE NAVBAR
   ============================================ */
@media (max-width: 1024px) {
    .navbar {
        padding: 15px 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .navbar {
        padding: 12px 20px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 10px 15px;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .company-name-1 {
        font-size: 1rem;
    }

    .company-tagline {
        font-size: 0.75rem;
    }

    .mobile-nav {
        width: 100%;
        right: -100%;
        padding: 90px 20px 30px;
    }

    .mobile-toggle {
        width: 35px;
        height: 35px;
    }

    .mobile-toggle span {
        width: 24px;
        height: 2.5px;
    }
}

@media (max-width: 400px) {
    .company-tagline {
        display: none;
    }

    .company-name-1 {
        font-size: 0.95rem;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }
}

/* ================================
   CAMPUS PLACEMENT SECTION
================================ */
.campus-placement-section {
    width: 100%;
    padding: 20px 0;
    margin-top: 30px;
}

.campus-placement-section > .title {
    text-align: center;
    margin-bottom: 35px;
    font-size: 30px;
    color: var(--accent-color);
    font-weight: bold;
    position: relative;
}

/* Wrapper - Photo Left, Content Right */
.placement-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: stretch; /* Changed to stretch for equal height */
    background-color: var(--bg-color);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--accent-color);
    box-shadow: 0 8px 30px rgba(184, 135, 11, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.placement-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(184, 135, 11, 0.25);
}

/* ================================
   LEFT - PHOTO (TALLER ON LAPTOP)
================================ */
.placement-photo {
    width: 400px; /* Wider */
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(184, 135, 11, 0.2);
    transition: transform 0.3s ease;
    display: flex; /* For image to fill */
}

.placement-photo:hover {
    transform: scale(1.02);
}

.placement-photo img {
    width: 100%;
    height: 380px; /* INCREASED from 280px - Taller on laptop */
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.placement-photo:hover img {
    transform: scale(1.05);
}

/* ================================
   RIGHT - CONTENT
================================ */
.placement-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
}

/* Badge */
.placement-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 135, 11, 0.15);
    border: 1px solid var(--accent-color);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    width: fit-content;
}

.placement-badge i {
    color: var(--accent-color);
    font-size: 16px;
}

.placement-badge span {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Title */
.placement-content h4 {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    font-family: "Merriweather", serif;
}

/* Description */
.placement-content p {
    margin: 0 0 20px 0;
    font-size: 15px;
    color: var(--secondary-text-color);
    line-height: 1.8;
}

.placement-content p strong {
    color: var(--text-color);
}

/* Highlights List */
.placement-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.placement-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.placement-highlights li i {
    color: var(--accent-color);
    font-size: 16px;
}

/* CTA Buttons */
.placement-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.placement-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.placement-btn:not(.outline) {
    background: var(--accent-color);
    color: var(--bg-color);
    border: 2px solid var(--accent-color);
}

.placement-btn:not(.outline):hover {
    background: transparent;
    color: var(--accent-color);
}

.placement-btn.outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.placement-btn.outline:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

/* ================================
   RESPONSIVE - TABLET
================================ */
@media screen and (max-width: 992px) {
    .placement-wrapper {
        gap: 30px;
        padding: 25px;
    }
    
    .placement-photo {
        width: 320px;
    }
    
    .placement-photo img {
        height: 320px; /* Slightly shorter on tablet */
    }
    
    .placement-content h4 {
        font-size: 22px;
    }
    
    .placement-highlights {
        grid-template-columns: 1fr;
    }
}

/* ================================
   RESPONSIVE - MOBILE
================================ */
@media screen and (max-width: 768px) {
    .campus-placement-section {
        padding: 15px 0;
    }
    
    .placement-wrapper {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
        align-items: flex-start;
    }
    
    .placement-photo {
        width: 100%;
    }
    
    .placement-photo img {
        height: 300px;
        object-position: top center;
    }
    
    .placement-content h4 {
        font-size: 20px;
    }
    
    .placement-content p {
        font-size: 14px;
    }
    
    .placement-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .placement-cta {
        flex-direction: column;
    }
    
    .placement-btn {
        justify-content: center;
        width: 100%;
    }
}

/* ================================
   RESPONSIVE - SMALL MOBILE
================================ */
@media screen and (max-width: 480px) {
    .placement-wrapper {
        padding: 15px;
    }
    
    .placement-photo img {
        height: 250px;
    }
    
    .placement-content h4 {
        font-size: 18px;
    }
    
    .placement-badge {
        padding: 6px 12px;
    }
    
    .placement-badge span {
        font-size: 11px;
    }
    
    .placement-highlights li {
        font-size: 13px;
    }
    
    .placement-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}