 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Times New Roman', Times, serif;
 }

 :root {
     --primary-color: #07aa79;
     --secondary-color: #05584d;
     --accent-color: #f59e0b;
     --text-dark: #1f2937;
     --text-light: #6b7280;
     --bg-light: #f8fafc;
     --bg-white: #ffffff;
     --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
     --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
     --border-radius: 12px;
     --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

 [data-theme="dark"] {
     --text-dark: #f9fafb;
     --text-light: #d1d5db;
     --bg-light: #111827;
     --bg-white: #1f2937;
     --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.4);
 }

 body {
     font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
     line-height: 1.6;
     color: var(--text-dark);
     background: var(--bg-light);
     transition: var(--transition);
 }

 /* Navigation */
 .navbar {
     position: fixed;
     top: 0;
     width: 100%;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     z-index: 1000;
     padding: 1rem 0;
     transition: var(--transition);
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 [data-theme="dark"] .navbar {
     background: rgba(31, 41, 55, 0.95);
 }

 .nav-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 2rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     font-size: 1.5rem;
     font-weight: 700;
     background: var(--gradient);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .nav-links {
     display: flex;
     list-style: none;
     gap: 2rem;
 }

 .nav-links a {
     text-decoration: none;
     color: var(--text-dark);
     font-weight: 500;
     transition: var(--transition);
     position: relative;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--gradient);
     transition: var(--transition);
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 .theme-toggle {
     background: none;
     border: 2px solid var(--primary-color);
     color: var(--primary-color);
     padding: 0.5rem 1rem;
     border-radius: 50px;
     cursor: pointer;
     transition: var(--transition);
     font-weight: 500;
 }

 .theme-toggle:hover {
     background: var(--primary-color);
     color: white;
     transform: scale(1.05);
 }

 .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     font-size: 1.5rem;
     cursor: pointer;
     color: var(--text-dark);
 }

 /* From Uiverse.io by LightAndy1 */
 .group {
     display: flex;
     line-height: 28px;
     align-items: center;
     position: relative;
     max-width: 190px;
 }

 /* Hero Section */
 .hero {
     height: 100vh;
     background-image: url(./images/digital-nomad-t.jpg);
     background-repeat: no-repeat;
     background-size: cover;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: white;
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="g"><stop offset="20%" stop-opacity=".1"/><stop offset="50%" stop-opacity=".05"/><stop offset="100%" stop-opacity="0"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23g)"/></svg>');
 }

 .hero-content {
     max-width: 800px;
     z-index: 2;
     position: relative;
 }

 .hero h1 {
     font-size: 3.5rem;
     font-weight: 700;
     margin-bottom: 1rem;
     opacity: 0;
     animation: slideUp 1s ease-out 0.5s forwards;
 }

 .hero p {
     font-size: 1.2rem;
     margin-bottom: 2rem;
     opacity: 0;
     animation: slideUp 1s ease-out 0.8s forwards;
 }

 .typing-text {
     border-right: 2px solid white;
     animation: blink 1s infinite;
 }

 .cta-button {
     background: rgba(255, 255, 255, 0.2);
     color: rgb(12, 12, 12);
     border: 2px solid white;
     padding: 1rem 2rem;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 50px;
     cursor: pointer;
     transition: var(--transition);
     text-decoration: none;
     display: inline-block;
     opacity: 0;
     animation: slideUp 1s ease-out 1.1s forwards;
 }

 .cta-button:hover {
     background: white;
     color: var(--primary-color);
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }

 /* Sections */
 .section {
     padding: 5rem 0;
     max-width: 1200px;
     margin: 0 auto;
     padding-left: 2rem;
     padding-right: 2rem;
 }

 .section-title {
     text-align: center;
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 3rem;
     background: var(--gradient);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 /* Services Section */
 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .service-card {
     background: var(--bg-white);
     padding: 2rem;
     border-radius: var(--border-radius);
     box-shadow: var(--shadow);
     text-align: center;
     transition: var(--transition);
     opacity: 0;
     transform: translateY(50px);
 }

 .service-card.animate {
     opacity: 1;
     transform: translateY(0);
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: var(--shadow-hover);
 }

 .service-icon {
     width: 80px;
     height: 80px;
     background: var(--gradient);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem;
     font-size: 2rem;
     color: white;
 }

 .service-card h3 {
     font-size: 1.5rem;
     margin-bottom: 1rem;
     color: var(--text-dark);
 }

 .service-card p {
     color: var(--text-light);
     line-height: 1.6;
 }

 /* About Section */
 .about-content {
     display: grid;
     grid-template-columns: 1fr;
     gap: 4rem;
     align-items: center;
     margin-top: 3rem;
 }

 .about-text {
     opacity: 0;
     transform: translateX(-50px);
     transition: var(--transition);
 }

 .about-text.animate {
     opacity: 1;
     transform: translateX(0);
 }

 .about-text h3 {
     font-size: 2rem;
     margin-bottom: 1rem;
     color: var(--text-dark);
 }

 .about-text p {
     color: var(--text-light);
     margin-bottom: 1.5rem;
     font-size: 1.1rem;
 }

 .team-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .team-card {
     background: var(--bg-white);
     padding: 2rem;
     border-radius: var(--border-radius);
     text-align: center;
     box-shadow: var(--shadow);
     transition: var(--transition);
     opacity: 0;
     transform: translateY(30px);
 }

 .team-card.animate {
     opacity: 1;
     transform: translateY(0);
 }

 .team-card:hover {
     transform: translateY(-5px);
 }

 .team-avatar {
     width: 100px;
     height: 100px;
     border-radius: 50%;
     background: var(--gradient);
     margin: 0 auto 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     color: white;
     font-weight: 700;
 }

 /* Blog Section */
 .blog-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .blog-card {
     background: var(--bg-white);
     border-radius: var(--border-radius);
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: var(--transition);
     opacity: 0;
     transform: translateY(50px);
 }

 .blog-card.animate {
     opacity: 1;
     transform: translateY(0);
 }

 .blog-card:hover {
     transform: translateY(-10px);
     box-shadow: var(--shadow-hover);
 }

 .blog-card img {
     width: 100%;
     height: 180px;
     /* Adjust height as needed */
     object-fit: cover;
     display: block;
 }

 .blog-content {
     padding: 1.5rem;
 }

 .blog-card h3 {
     font-size: 1.3rem;
     margin-bottom: 1rem;
     color: var(--text-dark);
 }

 .blog-card p {
     color: var(--text-light);
     margin-bottom: 1.5rem;
     line-height: 1.6;
 }

 .read-more-btn {
     background: var(--gradient);
     color: white;
     border: none;
     padding: 0.75rem 1.5rem;
     border-radius: 25px;
     cursor: pointer;
     transition: var(--transition);
     font-weight: 500;
 }

 .read-more-btn:hover {
     transform: scale(1.05);
     box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
 }

 /* Modal */
 .modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.8);
     z-index: 2000;
     backdrop-filter: blur(5px);
 }

 .modal-content {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     background: var(--bg-white);
     padding: 2rem;
     border-radius: var(--border-radius);
     max-width: 600px;
     width: 90%;
     max-height: 80vh;
     overflow-y: auto;
     animation: modalSlideIn 0.3s ease-out;
 }

 .close-modal {
     position: absolute;
     top: 1rem;
     right: 1rem;
     background: none;
     border: none;
     font-size: 1.5rem;
     cursor: pointer;
     color: var(--text-light);
 }

 /* Animations */
 @keyframes slideUp {
     from {
         opacity: 0;
         transform: translateY(50px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes blink {

     0%,
     50% {
         border-color: transparent;
     }

     51%,
     100% {
         border-color: white;
     }
 }

 @keyframes modalSlideIn {
     from {
         opacity: 0;
         transform: translate(-50%, -60%);
     }

     to {
         opacity: 1;
         transform: translate(-50%, -50%);
     }
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .mobile-menu-btn {
         display: block;
     }

     .nav-links {
         display: none;
         position: absolute;
         top: 100%;
         left: 0;
         width: 100%;
         background: var(--bg-white);
         flex-direction: column;
         padding: 2rem;
         box-shadow: var(--shadow);
     }

     .nav-links.active {
         display: flex;
     }

     .hero h1 {
         font-size: 2.5rem;
     }

     .hero p {
         font-size: 1rem;
     }

     .about-content {
         grid-template-columns: 1fr;
         gap: 2rem;
     }

     .section-title {
         font-size: 2rem;
     }

     .services-grid,
     .blog-grid,
     .team-grid {
         grid-template-columns: 1fr;
     }
 }

 /* Scroll indicator */
 .scroll-indicator {
     position: fixed;
     top: 0;
     left: 0;
     width: 0%;
     height: 3px;
     background: var(--gradient);
     z-index: 1001;
     transition: width 0.1s ease;
 }