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

 body {
     font-family: 'Inter', sans-serif;
     overflow-x: hidden;
 }

 h1,
 h2,
 h3 {
     font-family: 'Playfair Display', serif;
 }

 .w95 {
     width: 95%;
 }

 .w85 {
     width: 85%;
 }

 .w75 {
     width: 75%;
 }

 /* Custom Colors */
 :root {
     --primary: #FF6B9D;
     --secondary: #FFA500;
     --accent: #4ECDC4;
     --dark: #2C3E50;
     --light: #FFF5F7;
 }

 /* Smooth Scroll */
 html {
     scroll-behavior: smooth;
 }

 /* Animations */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-20px);
     }
 }

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

     to {
         transform: rotate(360deg);
     }
 }

 @keyframes slideInLeft {
     from {
         opacity: 0;
         transform: translateX(-50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes slideInRight {
     from {
         opacity: 0;
         transform: translateX(50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .animate-on-scroll {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.8s ease-out;
 }

 .animate-on-scroll.animated {
     opacity: 1;
     transform: translateY(0);
 }

 .float-animation {
     animation: float 3s ease-in-out infinite;
 }

 /* Gradient Text */
 .gradient-text {
     background: linear-gradient(135deg, #FF6B9D 0%, #FFA500 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 /* Mobile Menu */
 .mobile-menu {
     transform: translateX(100%);
     transition: transform 0.3s ease-in-out;
 }

 .mobile-menu.active {
     transform: translateX(0);
 }

 /* Parallax Effect */
 .parallax {
     background-attachment: fixed;
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
 }

 /* Card Hover Effect */
 .card-hover {
     transition: all 0.3s ease;
 }

 .card-hover:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 /* Counter Animation */
 .counter {
     font-size: 3rem;
     font-weight: 700;
     color: var(--primary);
 }

 /* Progress Bar */
 .progress-bar {
     width: 0;
     transition: width 1.5s ease-out;
 }

 /* Image Lazy Load Effect */
 img[loading="lazy"] {
     opacity: 0;
     transition: opacity 0.5s;
 }

 img[loading="lazy"].loaded {
     opacity: 1;
 }

 /* Custom Checkbox */
 .custom-checkbox {
     appearance: none;
     width: 20px;
     height: 20px;
     border: 2px solid var(--primary);
     border-radius: 4px;
     cursor: pointer;
     position: relative;
 }

 .custom-checkbox:checked {
     background-color: var(--primary);
 }

 .custom-checkbox:checked::after {
     content: '✓';
     position: absolute;
     color: white;
     font-size: 14px;
     top: -2px;
     left: 3px;
 }

 @media (max-width: 768px) {
     .hide {
         display: none;
     }
 }