 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
     line-height: 1.6;
     color: #2d2d2d;
     background: #ffffff;
 }

 /* Navigation Styles */
 .navbar {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(20px);
     border-bottom: 1px solid rgba(255, 105, 180, 0.1);
     padding: 5px 0;
     z-index: 1000;
     transition: all 0.4s ease;
 }

 .navbar.floating {
     top: 20px;
     left: 50%;
     transform: translateX(-50%);
     width: 1000px;
     min-width: 300px;
     max-width: 90%;
     border-radius: 50px;
     border: 1px solid rgba(255, 105, 180, 0.2);
     box-shadow: 0 10px 40px rgba(255, 105, 180, 0.2);
     padding: 12px 0;
 }

 .nav-container {
     max-width: 1500px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     padding-left: 25px;
     width: 200px;
     height: auto;
 }

 .nav-menu {
     display: flex;
     align-items: center;
     list-style: none;
     gap: 30px;
     margin: 0;
 }

 .nav-menu a {
     color: #2d2d2d;
     text-decoration: none;
     font-weight: 500;
     padding: 8px 16px;
     border-radius: 25px;
     transition: all 0.3s ease;
 }

 .nav-menu a:hover {
     color: #ff1493;
     background: rgba(255, 105, 180, 0.1);
 }

 .hamburger {
     display: none;
     flex-direction: column;
     cursor: pointer;
     padding: 5px;
 }

 .hamburger span {
     width: 25px;
     height: 3px;
     background: #ff1493;
     margin: 3px 0;
     transition: 0.3s;
     border-radius: 2px;
 }

 .hamburger.active span:nth-child(1) {
     transform: rotate(-45deg) translate(-5px, 6px);
 }

 .hamburger.active span:nth-child(2) {
     opacity: 0;
 }

 .hamburger.active span:nth-child(3) {
     transform: rotate(45deg) translate(-5px, -6px);
 }

 /* Mobile Menu */
 .mobile-menu {
     position: fixed;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100vh;
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(20px);
     z-index: 999;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     transition: left 0.3s ease;
 }

 .mobile-menu.active {
     left: 0;
 }

 .mobile-menu ul {
     list-style: none;
     text-align: center;
 }

 .mobile-menu ul li {
     margin: 20px 0;
 }

 .mobile-menu ul li a {
     color: #2d2d2d;
     text-decoration: none;
     font-size: 2rem;
     font-weight: 600;
     padding: 15px 30px;
     border-radius: 15px;
     transition: all 0.3s ease;
     display: block;
 }

 .mobile-menu ul li a:hover {
     color: #ff1493;
     background: rgba(255, 105, 180, 0.1);
 }

 /* WhatsApp Button */
 .whatsapp-btn {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #25d366, #128c7e);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 1001;
     box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
     transition: all 0.3s ease;
     text-decoration: none;
 }

 .whatsapp-btn:hover {
     transform: scale(1.1);
     box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
 }

 .whatsapp-btn svg {
     width: 30px;
     height: 30px;
     fill: white;
 }

 /* Hero Section */
 .hero {
     min-height: 100vh;
     display: flex;
     align-items: center;
     background: linear-gradient(135deg, #ffffff 0%, #ffeef8 50%, #fff0f5 100%);
     padding-top: 100px;
     position: relative;
 }

 .hero-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 30px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .hero-content h1 {
     font-size: clamp(2.5rem, 5vw, 4rem);
     font-weight: 900;
     margin-bottom: 20px;
     color: #2d2d2d;
     line-height: 1.2;
 }

 .hero-content h1 .highlight {
     background: linear-gradient(135deg, #ff69b4, #ff1493);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .floating-card {
     position: absolute;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(20px);
     padding: 20px;
     border-radius: 20px;
     box-shadow: 0 15px 40px rgba(255, 105, 180, 0.15);
     border: 1px solid rgba(255, 105, 180, 0.1);
     animation: floatCard 3s ease-in-out infinite;
 }

 .floating-card-1 {
     top: 20px;
     left: -20px;
     animation-delay: 0s;
 }

 .floating-card-2 {
     bottom: 30px;
     right: -30px;
     animation-delay: 1.5s;
 }

 @keyframes floatCard {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-10px);
     }
 }

 .floating-card h4 {
     color: #ff1493;
     font-size: 14px;
     margin-bottom: 5px;
 }

 .floating-card p {
     color: #666;
     font-size: 12px;
     margin: 0;
 }

 @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);
     }
 }

 .hero-content p {
     font-size: 1.2rem;
     color: #666;
     margin-bottom: 30px;
     line-height: 1.7;
 }

 .hero-buttons {
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
     justify-content: center;
 }

 .btn {
     padding: 15px 30px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     border: none;
     cursor: pointer;
 }

 .btn-primary {
     background: linear-gradient(135deg, #ff69b4, #ff1493);
     color: white;
     box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 35px rgba(255, 105, 180, 0.4);
 }

 .btn-secondary {
     background: transparent;
     color: #ff1493;
     border: 2px solid #ff69b4;
 }

 .btn-secondary:hover {
     background: #ff69b4;
     color: white;
     transform: translateY(-3px);
 }

 .hero-image {
     position: relative;
 }

 .hero-image img {
     width: 100%;
     height: 400px;
     object-fit: cover;
     border-radius: 20px;
     box-shadow: 0 20px 50px rgba(255, 105, 180, 0.2);
 }

 /* Services Section */
 .services {
     padding: 100px 30px;
     background: #ffffff;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .section-title {
     text-align: center;
     font-size: 2.5rem;
     font-weight: 800;
     margin-bottom: 20px;
     color: #2d2d2d;
 }

 .section-title .highlight {
     background: linear-gradient(135deg, #ff69b4, #ff1493);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .section-subtitle {
     text-align: center;
     font-size: 1.2rem;
     color: #666;
     margin-bottom: 60px;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .service-card {
     background: #ffffff;
     padding: 40px 30px;
     border-radius: 20px;
     border: 2px solid rgba(255, 105, 180, 0.1);
     transition: all 0.3s ease;
     text-align: center;
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 50px rgba(255, 105, 180, 0.15);
     border-color: rgba(255, 105, 180, 0.3);
 }

 .service-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #ff69b4, #ff1493);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     margin: 0 auto 20px;
     color: white;
 }

 .service-card h3 {
     font-size: 1.4rem;
     font-weight: 700;
     margin-bottom: 15px;
     color: #2d2d2d;
 }

 .service-card p {
     color: #666;
     line-height: 1.6;
 }

 /* Stats Section */
 .stats {
     padding: 80px 30px;
     background: linear-gradient(135deg, #fff5fa 0%, #ffeef8 100%);
 }

 .stats-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 40px;
     text-align: center;
 }

 .stat-item {
     background: rgba(255, 255, 255, 0.8);
     padding: 30px 20px;
     border-radius: 20px;
     border: 1px solid rgba(255, 105, 180, 0.1);
 }

 .stat-number {
     font-size: 3rem;
     font-weight: 900;
     background: linear-gradient(135deg, #ff69b4, #ff1493);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 10px;
 }

 .stat-label {
     font-size: 1rem;
     color: #666;
     font-weight: 500;
 }

 /* Contact Section */
 .contact {
     padding: 100px 30px;
     background: #ffffff;
     text-align: center;
 }

 .contact-content {
     max-width: 600px;
     margin: 0 auto;
     background: linear-gradient(135deg, #fff5fa 0%, #ffeef8 100%);
     padding: 50px 40px;
     border-radius: 20px;
     border: 1px solid rgba(255, 105, 180, 0.1);
 }

 .contact h2 {
     font-size: 2.5rem;
     font-weight: 800;
     margin-bottom: 20px;
     color: #2d2d2d;
 }

 .contact h2 .highlight {
     background: linear-gradient(135deg, #ff69b4, #ff1493);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .contact p {
     font-size: 1.1rem;
     color: #666;
     margin-bottom: 30px;
     line-height: 1.7;
 }

 /* Footer */
 footer {
     background: #f8f9ff;
     color: #666;
     text-align: center;
     padding: 40px 20px;
     border-top: 1px solid rgba(255, 105, 180, 0.1);
 }

 /* Mobile Responsive */
 @media (max-width: 768px) {
     .navbar {

         padding: 15px 0;
     }

     .navbar.floating {
         width: calc(100% - 40px);
         padding: 10px 0;
     }

     .nav-container {
         padding: 0 20px;
     }

     .nav-menu {
         display: none;
     }

     .hamburger {
         display: flex;
     }

     .logo {
         font-size: 20px;
     }

     .hero {
         padding-top: 80px;
     }

     .hero-container {
         grid-template-columns: 1fr;
         gap: 40px;
         text-align: center;
         padding: 0 20px;
     }

     .hero-image {
         order: -1;
     }

     .hero-image img {
         height: 250px;
     }

     .hero-content h1 {
         font-size: 2.2rem;
     }

     .hero-buttons {
         justify-content: center;
         flex-direction: column;
         align-items: center;
     }

     .btn {
         width: 100%;
         max-width: 280px;
     }

     .services,
     .contact {
         padding: 60px 20px;
     }

     .stats {
         padding: 60px 20px;
     }

     .services-grid {
         grid-template-columns: 1fr;
         gap: 25px;
     }

     .stats-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
     }

     .section-title {
         font-size: 2rem;
     }

     .contact h2 {
         font-size: 2rem;
     }

     .contact-content {
         padding: 30px 25px;
         margin: 0 10px;
     }

     .whatsapp-btn {
         bottom: 20px;
         right: 20px;
         width: 55px;
         height: 55px;
     }

     .whatsapp-btn svg {
         width: 25px;
         height: 25px;
     }
 }

 @media (max-width: 480px) {
     .nav-container {
         padding: 0 15px;
     }

     .hero-container {
         padding: 0 15px;
     }

     .services,
     .stats,
     .contact {
         padding: 50px 15px;
     }

     .stats-grid {
         grid-template-columns: 1fr;
     }

     .hero-content h1 {
         font-size: 1.8rem;
     }

     .section-title {
         font-size: 1.7rem;
     }

     .contact h2 {
         font-size: 1.7rem;
     }

     .stat-number {
         font-size: 2.5rem;
     }
 }

 /* Header */
 .header {
     text-align: center;
     padding: 60px 20px 40px;
     position: relative;
     overflow: hidden;
 }

 .header::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
     animation: rotate 20s linear infinite;
 }

 @keyframes rotate {
     100% {
         transform: rotate(360deg);
     }
 }

 h1 {
     font-size: 3.5em;
     background: linear-gradient(135deg, #ff6b9d, #ff4d7d, #ff8fab);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 10px;
     animation: fadeInDown 1s ease;
     position: relative;
     z-index: 1;
 }

 .subtitle {
     color: #666;
     font-size: 1.2em;
     animation: fadeInUp 1s ease 0.3s both;
     position: relative;
     z-index: 1;
 }

 /* Filter Buttons */
 .filter-container {
     display: flex;
     justify-content: center;
     gap: 15px;
     margin: 40px 20px;
     flex-wrap: wrap;
     animation: fadeIn 1s ease 0.5s both;
 }

 .filter-btn {
     padding: 12px 30px;
     border: 2px solid #ff6b9d;
     background: white;
     color: #ff6b9d;
     border-radius: 30px;
     cursor: pointer;
     transition: all 0.3s ease;
     font-size: 1em;
     font-weight: 500;
     position: relative;
     overflow: hidden;
 }

 .filter-btn::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     width: 0;
     height: 0;
     background: linear-gradient(135deg, #ff6b9d, #ff8fab);
     border-radius: 50%;
     transform: translate(-50%, -50%);
     transition: width 0.5s ease, height 0.5s ease;
 }

 .filter-btn:hover::before {
     width: 300px;
     height: 300px;
 }

 .filter-btn:hover {
     color: white;
     transform: translateY(-2px);
     box-shadow: 0 10px 20px rgba(255, 107, 157, 0.3);
 }

 .filter-btn.active {
     background: linear-gradient(135deg, #ff6b9d, #ff8fab);
     color: white;
 }

 .filter-btn span {
     position: relative;
     z-index: 1;
 }

 /* Gallery Grid */
 .gallery {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 25px;
     padding: 20px;
     max-width: 1400px;
     margin: 0 auto;
 }

 .gallery-item {
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     background: white;
     box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
     animation: fadeInScale 0.6s ease forwards;
     opacity: 0;
     cursor: pointer;
 }

 .gallery-item:nth-child(1) {
     animation-delay: 0.1s;
 }

 .gallery-item:nth-child(2) {
     animation-delay: 0.2s;
 }

 .gallery-item:nth-child(3) {
     animation-delay: 0.3s;
 }

 .gallery-item:nth-child(4) {
     animation-delay: 0.4s;
 }

 .gallery-item:nth-child(5) {
     animation-delay: 0.5s;
 }

 .gallery-item:nth-child(6) {
     animation-delay: 0.6s;
 }

 .gallery-item:nth-child(7) {
     animation-delay: 0.7s;
 }

 .gallery-item:nth-child(8) {
     animation-delay: 0.8s;
 }

 .gallery-item:nth-child(9) {
     animation-delay: 0.9s;
 }

 @keyframes fadeInScale {
     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 .gallery-item:hover {
     transform: translateY(-10px) scale(1.02);
     box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
 }

 .gallery-item img {
     width: 100%;
     height: 250px;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .gallery-item:hover img {
     transform: scale(1.1);
 }

 .gallery-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(to top, rgba(255, 107, 157, 0.9), transparent);
     opacity: 0;
     transition: opacity 0.3s ease;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 20px;
 }

 .gallery-item:hover .gallery-overlay {
     opacity: 1;
 }

 .gallery-title {
     color: white;
     font-size: 1.4em;
     font-weight: bold;
     margin-bottom: 5px;
     transform: translateY(20px);
     transition: transform 0.3s ease;
 }

 .gallery-category {
     color: rgba(255, 255, 255, 0.9);
     font-size: 0.9em;
     transform: translateY(20px);
     transition: transform 0.3s ease 0.1s;
 }

 .gallery-item:hover .gallery-title,
 .gallery-item:hover .gallery-category {
     transform: translateY(0);
 }

 /* Lightbox */
 .lightbox {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.95);
     display: none;
     justify-content: center;
     align-items: center;
     z-index: 1000;
     animation: fadeIn 0.3s ease;
 }

 .lightbox.active {
     display: flex;
 }

 .lightbox-content {
     max-width: 90%;
     max-height: 90%;
     position: relative;
     animation: zoomIn 0.5s ease;
 }

 .lightbox-content img {
     width: 100%;
     height: auto;
     border-radius: 10px;
 }

 .close-lightbox {
     position: absolute;
     top: -40px;
     right: 0;
     color: white;
     font-size: 2em;
     cursor: pointer;
     transition: transform 0.3s ease;
 }

 .close-lightbox:hover {
     transform: rotate(90deg);
 }

 /* Animations */
 @keyframes fadeInDown {
     from {
         opacity: 0;
         transform: translateY(-30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 @keyframes zoomIn {
     from {
         opacity: 0;
         transform: scale(0.5);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 /* Floating decorative elements */
 .float-element {
     position: fixed;
     pointer-events: none;
     opacity: 0.1;
     animation: float 15s infinite ease-in-out;
 }

 .float-element:nth-child(1) {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #ff6b9d, #ff8fab);
     border-radius: 50%;
     top: 10%;
     left: 5%;
     animation-delay: 0s;
 }

 .float-element:nth-child(2) {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #ffb6c1, #ffc0cb);
     border-radius: 50%;
     top: 70%;
     right: 10%;
     animation-delay: 5s;
 }

 .float-element:nth-child(3) {
     width: 100px;
     height: 100px;
     background: linear-gradient(135deg, #ff8fab, #ffb6c1);
     border-radius: 50%;
     bottom: 10%;
     left: 10%;
     animation-delay: 10s;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0) rotate(0deg);
     }

     33% {
         transform: translateY(-30px) rotate(120deg);
     }

     66% {
         transform: translateY(30px) rotate(240deg);
     }
 }

 /* Responsive */
 @media (max-width: 768px) {
     h1 {
         font-size: 2.5em;
     }

     .gallery {
         grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     }
 }

 /* Loading state */
 .gallery-item.hidden {
     display: none;
 }

 /* Fade animation for filtering */
 .gallery-item.fade-out {
     animation: fadeOut 0.3s ease forwards;
 }

 @keyframes fadeOut {
     to {
         opacity: 0;
         transform: scale(0.8);
     }
 }

 .ceo{
    padding: 30px;
 }

 .teams{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;    
    gap: 20px;  
 }