 

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Space+Grotesk:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Great+Vibes&family=Dancing+Script:wght@400;700&family=Allura&family=Satisfy&family=Lobster&family=Sacramento&family=Kaushan+Script&family=Yellowtail&family=Parisienne&family=Cookie&family=Tangerine:wght@400;700&family=Alex+Brush&family=Rochester&family=Marck+Script&family=Mr+Dafoe&family=Bilbo&family=Arizonia&family=Euphoria+Script&family=Herr+Von+Muellerhoff&family=Petit+Formal+Script&family=Clicker+Script&family=Montez&family=Courgette&family=Homemade+Apple&family=Pinyon+Script&family=Mr+Bedfort&family=Milonga&family=Bilbo+Swash+Caps&family=Arima+Madurai:ital,wght@0,400;1,700&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Great+Vibes&family=Dancing+Script:wght@400;700&family=Allura&family=Satisfy&family=Lobster&family=Sacramento&family=Kaushan+Script&family=Yellowtail&family=Parisienne&family=Cookie&family=Tangerine:wght@400;700&family=Alex+Brush&family=Rochester&family=Marck+Script&family=Mr+Dafoe&family=Bilbo&family=Arizonia&family=Euphoria+Script&family=Herr+Von+Muellerhoff&family=Petit+Formal+Script&family=Clicker+Script&family=Montez&family=Courgette&family=Homemade+Apple&family=Pinyon+Script&family=Mr+Bedfort&family=Milonga&family=Bilbo+Swash+Caps&family=Arima+Madurai:ital,wght@0,400;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playball&display=swap');
        /* Base Styles */
        :root {
            --primary-color: #4361ee;
            --secondary-color: #3f37c9;
            --accent-color: #4895ef;
            --dark-color: #1b263b;
            --light-color: #f8f9fa;
            --text-color: #212529;
            --text-light: #6c757d;
            --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --border-radius: 12px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scrollbar-width: none;
        }

        body {
            font-family: 'Milonga', cursive; 
             line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-color);
            overflow-x: hidden;
            scrollbar-width: none;
            
        }
        body.modal-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
            height: 100%;

        }

        h1, h2, h3, h4 {
            line-height: 1.2;
            margin-bottom: 1rem;
            font-weight: 700;
            
        }

        h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
        h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
        h3 { font-size: clamp(1rem, 3.5vw, 1.5rem); }
        h4 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
        p { font-size: clamp(1rem, 2vw, 1.1rem); margin-bottom: 1.5rem; }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background-color: var(--primary-color);
            color: white;
            border-radius: var(--border-radius);
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }

        .btn-outline:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 1rem;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            color: var(--dark-color);
            font-family: 'Milonga', cursive;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            border-radius: 2px;
        }

        /* Scroll Animation Styles */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px) rotateX(20deg);
            }
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px) rotateY(20deg);
            }
            to {
                opacity: 1;
                transform: translateX(0) rotateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px) rotateY(-20deg);
            }
            to {
                opacity: 1;
                transform: translateX(0) rotateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8) rotate(5deg);
            }
            to {
                opacity: 1;
                transform: scale(1) rotate(0);
            }
        }

        @keyframes rotateInX {
            from {
                opacity: 0;
                transform: rotateX(90deg);
            }
            to {
                opacity: 1;
                transform: rotateX(0);
            }
        }

        /* Section Styles */
        section {/*
            min-height: 100vh;*/
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
            scrollbar-width: none;
            perspective: 1000px;
        }

        /* Hero Section - Fixed Animations */

        /* Cards Section */
        #cards-section {
            background-color: white;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
        }

        .card { 
            border-radius: var(--border-radius);
            overflow: hidden; 
            transition: var(--transition);
            justify-content: center;
            align-items: center;
            border-radius: 15px;
            background: rgba(241, 240, 240, 0.7);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }

        .card:hover {
            transform: translateY(-10px) rotateY(5deg);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .card-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }

        .card-content {
            padding: 1.5rem;
        }

        .card-content h3 {
            margin-bottom: 0.5rem;
        }

        .card-content p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Tabs Section */
        #tabs-section {
            background-color: #f8f9fa;
        }

        .tabs-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .tabs-header {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tab-btn {
            padding: 0.8rem;
            background-color: transparent;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            width:auto; 
            font-weight: 600;
            transition: var(--transition);
            color: var(--text-light);
        }

        .tab-btn.active {
            background-color: var(--primary-color);
            color: rgb(255, 255, 255);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        

        .tab-card {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }

        .tab-card ul {
            list-style-position: inside;
        }

        .tab-card li {
            margin-bottom: 0.5rem;
            padding-left: 0.5rem;
        }

        /* Gallery Section */
        #gallery-section {
            background-color: white;
        }

        .gallery-container {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .gallery-item {
            flex: 1 1 200px;
            max-width: 300px;
            height: 250px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

       

        /* FAQ Section */
        #faq-section {
            background-color: #f8f9fa;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1rem;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background-color: white;
        }

        .faq-question {
            width: 100%;
            padding: 1.5rem;
            text-align: left;
            background-color: var(--primary-color);
            color: white;
            border: none;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            background-color: var(--secondary-color);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: white;
        }

        .faq-item.active .faq-answer {
            padding: 1.5rem;
            max-height: 500px;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        /* Contact Section */
        #contact-section {
            background-color: white;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-family: inherit;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .footer-column h3 {
            color: white;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.8rem;
        }

        .footer-column a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }

        .footer-column a:hover {
            color: white;
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* Scroll Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            transform-style: preserve-3d;
            will-change: transform, opacity;
            
        }

        .animate-fade {
            transform: translateY(30px) rotateX(20deg);
        }

        .animate-left {
            transform: translateX(-100px) rotateY(20deg);
        }

        .animate-right {
            transform: translateX(100px) rotateY(-20deg);
        }

        .animate-scale {
            transform: scale(0.8) rotate(5deg);
        }

        

        .is-visible {
            opacity: 1;
            transform: translateY(0) rotateX(0) rotateY(0) scale(1);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .container {
                padding: 0 1.5rem;
            }
        }

        @media (max-width: 992px) {
            section {
                padding: 5rem 0;
            }

            .tab-cards {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }


            .tabs-header {
                flex-direction: column;
                align-items: stretch;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            .tab-btn {
                width: 100%;
            }

            .contact-form {
                padding: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 1rem;
            }

            section {
                padding: 4rem 0;
            }

            .cards-grid {
                grid-template-columns: repeat (2,1fr);
            }
 
            .gallery-item {
                flex: 1 1 100%;
                max-width: 100%;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            footer {
            padding: 2rem;
        }

        }

        @media (max-width: 400px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.75rem; }
            h3 { font-size: 1.5rem; }
            h4 { font-size: 1.25rem; }
            p { font-size: 1rem; }

            .section-title {
                margin-bottom: 2rem;
            }

            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
             
            .btn {
                padding: 0.7rem 1.5rem;
            }
            .tab-btn {
                width: auto;
            }
        }   @keyframes pulse-fast {
          
             0% { background-size: 100% 100%; }
            30% { background-size: 180% 120%; }
            60% { background-size: 120% 180%; }
            100% { background-size: 100% 100%; }
        }
        :root {
         
            --glass-blur: 19px;
            --glass-border: 1px solid rgba(255, 255, 255, 0.25);
            --transition-speed: 0.6s;
            --marble-size: 300%;
        }

        .hero { 
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--text-color);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow-x: hidden;
            perspective: 1000px;
        }

        .hero-container {
             
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem 1rem;
            position: relative;
            z-index: 2; 
            height :auto;
        }

        .hero-content {
            position: relative;
            background: rgba(31, 5, 66, 0.404); 
            backdrop-filter: blur(12px);
            border-radius: 24px;
            border: var(--glass-border);
            padding: 4rem;
            width: 100%;
            max-width: 1000px;
            text-align: center;
            overflow: hidden;
            box-shadow:0 12px 40px rgba(0, 0, 0, 0.3),inset 0 0 0 1px rgba(255, 255, 255, 0.1);
            transform-style: preserve-3d;
            opacity: 0;
            transform: translateY(30px) rotateX(15deg);
            animation: fadeInUp 1.2s cubic-bezier(0.16, 0.81, 0.32, 1) forwards;
            animation-delay: 0.4s;
        }

        

        .welcome-note {
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            opacity: 0;
            filter: blur(8px);
            transform: translateZ(20px);
            animation: blurIn 1s ease-out forwards;
            animation-delay: 0.8s;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }

        .slogan {
            font-weight: 400;
            margin-bottom: 3rem;
            opacity: 0;
            filter: blur(8px);
            transform: translateZ(10px);
            animation: blurIn 1s ease-out forwards;
            animation-delay: 1.1s;
            text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
        }

        .cta-button {
            background: rgba(255, 255, 255, 0.15);
            border: var(--glass-border);
            color: whitesmoke;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 500;
            border-radius: 12px;
            cursor: pointer;
            transition: all var(--transition-speed) ease;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            margin-bottom: 3rem;
            opacity: 0;
            transform: scale(0.9) translateZ(0);
            animation: fadeInScale 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
            animation-delay: 1.4s;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .cta-button:hover {
            background: rgba(80, 82, 218, 0.25);
            transform: scale(1.05) translateZ(10px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
        }

        .cta-button::after {
            content: '';
            position: absolute;
            top: 0; 
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(136, 128, 238, 0.2), 
                transparent);
            transform: translateX(-100%);
            transition: transform 1s ease;
        }

        .cta-button:hover::after {
            transform: translateX(100%);
        }

        .advanced-clock {
            font-family: 'Inter', monospace;
            font-weight: 300;
            opacity: 0;
            transform: translateZ(5px);
            animation: fadeIn 1s ease-out forwards;
            animation-delay: 1.7s;
        }

        .clock-time {
            font-size: 3rem;
            letter-spacing: 3px;
            font-weight: 300;
            background: linear-gradient(90deg, #fff, #e0e0ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(101, 117, 255, 0.5);
            margin-bottom: 0.5rem;
        }

        .clock-date {
            font-size: 1.1rem;
            opacity: 0.8;
            letter-spacing: 1px;
        }

        .clock-milliseconds {
            font-size: 0.9rem;
            opacity: 0.6;
            margin-top: 0.3rem;
        }

        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            filter: blur(5px);
            animation: float 15s infinite linear;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0);
            }
        }

        @keyframes blurIn {
            to {
                filter: blur(0);
                opacity: 1;
            }
        }

        @keyframes fadeInScale {
            to {
                opacity: 1;
                transform: scale(1) translateZ(10px);
            }
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0);
            }
            50% {
                transform: translate(50px, 50px);
            }
        }

        @keyframes marbleRotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* 3D Tilt Effect */
        .hero-content {
            transition: transform 0.8s cubic-bezier(0.03, 0.98, 0.52, 0.99);
        }

        /* Responsive adjustments - 10 breakpoints */
        @media (max-width: 1600px) {
            .hero-content {
                padding: 3.5rem;
            }
        }

        @media (max-width: 1400px) {
            :root {
                --glass-blur: 14px;
                --marble-size: 250%;
            }
            .clock-time {
                font-size: 2.7rem;
            }
        }

        @media (max-width: 1200px) {
            .hero-content {
                padding: 3rem;
            }
            .clock-time {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 992px) {
            :root {
                --glass-blur: 12px;
                --marble-size: 200%;
            }
            .hero-content {
                padding: 2.5rem;
            }
            .welcome-note {
                font-size: 1.8rem;
            }
            .slogan {
                font-size: 1.2rem;
            }
            .clock-time {
                font-size: 2.1rem;
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                padding: 2rem;
            }
            .welcome-note {
                font-size: 1.6rem;
            }
            .slogan {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }
            .clock-time {
                font-size: 1.8rem;
            }
            .clock-date {
                font-size: 1rem;
            }
            .cta-button {
                padding: 0.9rem 2rem;
                font-size: 1rem;
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 576px) {
            :root {
                --glass-blur: 10px;
            }
            .hero-content {
                padding: 1.8rem;
            }
            .welcome-note {
                font-size: 1.4rem;
            }
            .slogan {
                font-size: 1rem;
            }
            .clock-time {
                font-size: 1.6rem;
            }
            .clock-date {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content {
                padding: 1.5rem;
            }
            .welcome-note {
                font-size: 1.3rem;
            }
            .slogan {
                font-size: 0.95rem;
            }
            .clock-time {
                font-size: 1.4rem;
                letter-spacing: 2px;
            }
            .clock-date {
                font-size: 0.85rem;
            }
            .cta-button {
                padding: 0.8rem 1.8rem;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 400px) {
            .hero-content {
                padding: 1.2rem;
            }
            .welcome-note {
                font-size: 1.2rem;
            }
            .slogan {
                font-size: 0.9rem;
            }
            .clock-time {
                font-size: 1.2rem;
            }
            .clock-date {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 360px) {
            .welcome-note {
                font-size: 1.1rem;
            }
            .slogan {
                font-size: 0.85rem;
            }
            .clock-time {
                font-size: 1.1rem;
                letter-spacing: 1px;
            }
            .cta-button {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 320px) {
            .hero-content {
                padding: 1rem;
            }
            .welcome-note {
                font-size: 1rem;
            }
            .slogan {
                font-size: 0.8rem;
            }
            .clock-time {
                font-size: 1rem;
            }
            .clock-date {
                font-size: 0.75rem;
            }
        }
        
        :root {
            --link-bg: rgba(15, 23, 42, 0.95);
            --link-text: rgba(255, 255, 255, 0.9);
            --link-accent: #7a6ff0;
            --link-hover: rgba(255, 255, 255, 0.1);
            --link-border: 1px solid rgba(255, 255, 255, 0.08);
            --link-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
            --font-small: clamp(0.7rem, 1.5vw, 0.9rem);
            --font-medium: clamp(0.8rem, 2vw, 1rem);
            --font-large: clamp(0.9rem, 2.5vw, 1.1rem);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .link-bar-container {
            position: sticky;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--link-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-top: var(--link-border);
            box-shadow: var(--link-shadow);
            z-index: 1000;
            padding: 0.5rem 1rem;
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
            height: auto;
        }

        .link-bar {
            display: inline-flex;
            gap: 0.5rem;
            height: 100%;
            align-items: center;
            padding: 0.5rem 0;
        }

        .link-item {
            display: inline-flex;
            align-items: center;
            padding: 0.6rem 1rem;
            border-radius: 8px;
            color: var(--link-text);
            text-decoration: none;
            font-size: var(--font-medium);
            font-weight: 500;
            transition: var(--transition);
            height: 100%;
            flex-shrink: 0;
        }

        .link-item i {
            margin-right: 0.5rem;
            font-size: var(--font-large);
            transition: var(--transition);
        }

        .link-item:hover {
            background: var(--link-hover);
            color: white;
        }

        .link-item:hover i {
            color: var(--link-accent);
            transform: translateY(-2px);
        }

        .link-item.active {
            background: rgba(122, 111, 240, 0.1);
            color: var(--link-accent);
        }

        .link-item.active i {
            color: var(--link-accent);
        }

        /* Responsive Adjustments */
        @media (max-width: 1600px) {
            .link-item {
                padding: 0.5rem 0.9rem;
            }
        }

        @media (max-width: 1440px) {
            .link-item {
                font-size: var(--font-small);
            }
        }

        @media (max-width: 1280px) {
            .link-bar {
                gap: 0.4rem;
            }
            
            .link-item {
                padding: 0.5rem 0.8rem;
            }
            
            .link-item i {
                margin-right: 0.4rem;
            }
        }

        @media (max-width: 1024px) {
            .link-item {
                padding: 0.5rem 0.7rem;
            }
        }

        @media (max-width: 900px) {
            .link-bar-container {
                padding: 0.5rem;
            }
            
            .link-item {
                padding: 0.5rem 0.6rem;
                font-size: var(--font-small);
            }
            
            .link-item i {
                font-size: var(--font-medium);
            }
        }

        @media (max-width: 768px) {
            .link-bar {
                gap: 0.3rem;
            }
            
            .link-item {
                padding: 0.4rem 0.5rem;
            }
            
            .link-item i {
                margin-right: 0.3rem;
            }
        }

        @media (max-width: 640px) {
            .link-item {
                padding: 0.4rem;
                font-size: 0.7rem;
            }
            
            .link-item i {
                font-size: 0.9rem;
                margin-right: 0.2rem;
            }
        }

        @media (max-width: 480px) {
            .link-bar-container {
                padding: 0.3rem;
            }
            
            .link-item {
                padding: 0.3rem;
                font-size: 0.65rem;
            }
            
            .link-item i {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 400px) {
            .link-item {
                padding: 0.3rem 0.2rem;
                font-size: 0.6rem;
            }
            
            .link-item i {
                font-size: 0.7rem;
                margin-right: 0.1rem;
            }
        }

        @media (max-width: 360px) {
            .link-item {
                font-size: 0.55rem;
            }
        }

        /* Hide scrollbar but keep functionality */
        .link-bar-container::-webkit-scrollbar {
            height: 0;
            background: transparent;
        }
   
        :root {
            --bg: #d5dae2;
            --shadow-dark: #a3b1c6;
            --shadow-light: #ffffff;
            --primary: #6c5ce7;
            --text: #2d3436;
        }
        
   
        .neumorphic-container {
            width: 100%;
            max-width: 900px;
            background: var(--bg);
            border-radius: 20px;
            box-shadow: 
                8px 8px 15px var(--shadow-dark),
                -8px -8px 15px var(--shadow-light);
            overflow: hidden;
        }
        
        .tabs {
            display: flex;
            background: var(--bg);
            border-bottom: 1px solid rgba(163, 177, 198, 0.3);
        }
        
        .tab {
            padding: 1rem 1.5rem;
            cursor: pointer;
            position: relative;
            font-weight: 500;
            color: #666;
            transition: all 0.3s ease;
        }
        
        .tab.active {
            color: var(--primary);
        }
        
        .tab.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary);
            border-radius: 3px 3px 0 0;
        }
        
        .tab-content {
            display: none;
            padding: 2rem;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .profile-section {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .profile-img {
            width: 200px;
            height: 200px;
            border-radius: 15px;
            object-fit: cover;
            box-shadow: 
                8px 8px 15px var(--shadow-dark),
                -8px -8px 15px var(--shadow-light);
            flex-shrink: 0;
        }
        
        .about-text {
            flex: 1;
            min-width: 250px;
        }
        
        .about-title {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .info-card {
            background: var(--bg);
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 
                5px 5px 10px var(--shadow-dark),
                -5px -5px 10px var(--shadow-light);
            transition: all 0.3s ease;
        }
        
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 
                8px 8px 15px var(--shadow-dark),
                -8px -8px 15px var(--shadow-light);
        }
        
        .info-icon {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .info-label {
            font-size: 0.8rem;
            color: #666;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .info-value {
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .skills-container {
            margin-top: 2rem;
        }
        
        .skills-title {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .skill-tag {
            background: var(--bg);
            padding: 0.7rem 1.2rem;
            border-radius: 50px;
            box-shadow: 
                3px 3px 6px var(--shadow-dark),
                -3px -3px 6px var(--shadow-light);
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .skill-icon {
            color: var(--primary);
        }
        
        @media (max-width: 768px) {
            .profile-section {
                flex-direction: column;
                align-items: center;
            }
            
            .profile-img {
                width: 150px;
                height: 150px;
            }
            
            .about-title {
                text-align: center;
                font-size: 1.5rem;
            }
            
            .info-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .tab-content {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            /* body {
                padding: 1rem;
            }*/
            
            .neumorphic-container {
                border-radius: 15px;
            }
            
            .tabs {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .tab {
                padding: 0.8rem 1rem;
                font-size: 0.9rem;
            }
            
            .profile-img {
                width: 120px;
                height: 120px;
            }
            
            .about-title {
                font-size: 1.3rem;
            }
            
            .about-text {
                font-size: 0.9rem;
            }
            
            .info-grid {
                grid-template-columns: 1fr;
            }
            

            .info-card {
                padding: 1rem;
            }
            
            .info-icon {
                font-size: 1.2rem;
            }
            
            .info-label, .info-value {
                font-size: 0.8rem;
            }
            
            .skill-tag {
                padding: 0.5rem 1rem;
                font-size: 0.7rem;
            }
        }

    /* About Section - Fancy Style */
    .fancy-about {
        background: #9aabbd;
        position: relative;
        overflow: hidden;
    }
    
    .fancy-about::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 200%;
        background: radial-gradient(circle, rgba(67,97,238,0.08) 0%, rgba(0,0,0,0) 70%);
        z-index: 0;
    }
    
    .about-content {
        display: flex;
        align-items: center;
        gap: 4rem;
        position: relative;
        z-index: 1;
    }
    
    .about-text {
        flex: 1;
    }
    
    .about-image {
        flex: 1;
        position: relative;
    }
    
    .highlight-text {
        font-size: 1.5rem;
        color: var(--accent-color);
        margin-bottom: 2rem;
        font-weight: 600;
        position: relative;
        display: inline-block;
    }
    
    .highlight-text::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    }
    
    .fancy-list {
        list-style: none;
        margin: 2rem 0;
    }
    
    .fancy-list li {
        margin-bottom: 1rem;
        position: relative;
        padding-left: 2rem;
        color: var(--text-color);
    }
    
    .fancy-list i {
        color: var(--primary-color);
        position: absolute;
        left: 0;
        top: 4px;
    }
    
    .image-wrapper {
        position: relative;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        transform-style: preserve-3d;
    }
    
    .team-image {
        width: 100%;
        height: auto;
        display: block;
        border-radius: var(--border-radius);
        transform: translateZ(20px);
        position: relative;
        z-index: 2;
    }
    
    .image-border {
        position: absolute;
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
        border: 3px solid var(--accent-color);
        border-radius: calc(var(--border-radius) + 10px);
        z-index: 1;
        opacity: 0.3;
    }
    
    .floating-shape {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
        opacity: 0.15;
        filter: blur(30px);
        z-index: 0;
    }
    
    .shape-1 {
        width: 200px;
        height: 200px;
        top: -50px;
        right: -50px;
        animation: float 8s ease-in-out infinite;
    }
    
    .shape-2 {
        width: 150px;
        height: 150px;
        bottom: -30px;
        left: -30px;
        animation: float 6s ease-in-out infinite reverse;
    }
    
    .btn-gradient {
        background:rgba(0, 0, 255, 0.158);
        position: relative;
        overflow: hidden;
        border: 1px solid blueviolet;
    }
    
    .btn-gradient::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: 0.5s;
    }
    
    .btn-gradient:hover::before {
        left: 100%;
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateY(0) rotate(0deg);
        }
        50% {
            transform: translateY(-20px) rotate(5deg);
        }
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
        .about-content {
            flex-direction: column;
            gap: 3rem;
        }
        
        .about-text, .about-image {
            flex: none;
            width: 100%;
        }
        
        .about-image {
            max-width: 600px;
            margin: 0 auto;
        }
    }

    
        :root {
            --b1g: #e0e3ec;
            --pggsdark: #a3b1c6;
            --pggtextslight: #ffffff;
            --pgg: #07553b;
            --pggtext: #2b2d42;
        }
        
        /* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: var(--bg);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        */
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            width: 100%;
            max-width: 1200px;
        }
        
        .skill-card {
            background: var(--b1g);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 
                8px 8px 15px var(--pggsdark),
                -8px -8px 15px var(--pggtextslight);
            transition: all 0.3s ease;
            border: none;
        }
        
        .skill-card:hover {
            transform: translateY(-5px);
            box-shadow: 
                12px 12px 20px var(--pggsdark),
                -12px -12px 20px var(--pggtextslight);
        }
        
        .card-icon {
            width: 60px;
            height: 60px;
            background: var(--b1g);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 
                5px 5px 10px var(--pggsdark),
                -5px -5px 10px var(--pggtextslight);
            margin-bottom: 20px;
            color: var(--pgg);
            font-size: 1.5rem;
        }
         .card-icon:hover i {
            transform: translateY(-9px);
        
        } .card-icon i {
            transition: all 0.3s ease;;
        }
        
        .card-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--pggtext);
        }
        
        .card-description {
            color: var(--pggtext);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 25px;
            opacity: 0.8;
        }
        
        .view-more {
            display: inline-block;
            width: 100%;
            padding: 12px;
            background: var(--b1g);
            color: var(--pgg);
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            box-shadow: 
                5px 5px 10px var(--pggsdark),
                -5px -5px 10px var(--pggtextslight);
        }
        
        .view-more:hover {
            color: white;
            background: var(--pgg);
            box-shadow: 
                inset 3px 3px 5px rgba(0,0,0,0.1),
                inset -3px -3px 5px rgba(255,255,255,0.2);
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
            overflow:hidden;
        }
        
        .modal.active {
            display: flex;
        }
        
        .modal-content {
            background: var(--b1g);
            border-radius: 20px;
            width: 90%;
            max-width: 600px;
            max-height: 100vh;
            overflow-y: auto;
            scrollbar-width: none;
            /*padding: 30px;*/
            flex-direction: column;
            position: relative;
            box-shadow: 
                15px 15px 30px black,
                -15px -15px 30px white;
            animation: modalFadeIn 0.4s ease;
        }
        
        @keyframes modalFadeIn {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px; 
            border-bottom: 1px solid rgba(0,0,0,0.1);
            background: #f5f5f5;
            border-radius: 20px 20px 0 0;
            position: sticky;
            top: 0;
            padding: 15px 20px;
            z-index: 10;
            flex-shrink: 0;
        }
        
        .modal-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--pgg);
        }
        
        .close-btn {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--pggtext);
        }
        .modal-body{
        padding: 20px;
        overflow-y: auto;
        max-height: calc(80vh - 70px);
        flex-grow: 1;    }

        @keyframes modalFadeIn {
            from{transform: translate(-50px); opacity: 0;}
            to{transform: translate(0); opacity: 1;}
        }        
        .modal-body ul {
            list-style-type: none;
        }
        
        .modal-body li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
        }
        
        .modal-body li:last-child {
            border-bottom: none;
        }
        
        .modal-body li i {
            margin-right: 10px;
            color: var(--pgg);
            width: 20px;
            text-align: center;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .card-container {
                grid-template-columns: 1fr;
            }
            .skill-card {
                padding: 25px;
            }
            .card-title {
                font-size: 1.3rem;
            }
        }


        :root {
            --card-width: 300px;
            --card-height: 300px;
            --mobile-card-width: 260px;
            --mobile-card-height: 360px;
            --small-mobile-card-width: 220px;
            --small-mobile-card-height: 320px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
        
        .testimonials-section {
            padding: 8vw 5vw;
            position: relative;
            backdrop-filter: blur(5px);
        }
        
        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: -1;
        }
        
        .section-tittle {
            text-align: center;
            margin-bottom: 6vw;
            font-size: clamp(1.8rem, 4vw, 3rem);
            color: white;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-tittle::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 3px;
            background: linear-gradient(90deg, #ff8a00, #e52e71);
            bottom: -10px;
            left: 20%;
            border-radius: 3px;
        }
        
        .testimonials-container {
            display: flex;
            gap: 30px;
            padding: 20px;
            width: max-content;
            animation: scroll 50s linear infinite;
        }
        
        .testimonial-card {
            width: var(--card-width);
            height: var(--card-height);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(23, 57, 112, 0.966);
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.4s ease;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                rgba(0, 60, 255, 0.1) 0%, 
                rgba(46, 229, 174, 0.1) 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(57, 5, 126, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .testimonial-card:hover::before {
            opacity: 1;
        }
     
        
        .client-name {
            font-size: 1.0rem;
            font-weight: 600;
            color: white;
            margin-bottom: 5px;
            text-align: center;
        }
        
        .client-position {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            text-align: center;
            font-style: italic;
        }
        
        .testimonial-text {
            font-size: 0.80rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 25px;
            text-align: center;
            flex-grow: 1;
            position: relative;
        }
        
        .testimonial-text::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: -10px;
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.1);
            font-family: serif;
            line-height: 1;
        }
        
        .rating {
            color: #003cff;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        
        .project-info {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            text-align: center;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            width: 100%;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-1 * (var(--card-width) + 30px) * 20));
            }
        }
        
        .testimonials-wrapper {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }
        
        .testimonials-wrapper::before,
        .testimonials-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100px;
            z-index: 2;
        }
        
        .testimonials-wrapper::before {
            left: 0;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
        }
        
        .testimonials-wrapper::after {
            right: 0;
            background: linear-gradient(to left, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
        }
        
        @media (max-width: 1200px) {
            .testimonial-card {
                width: calc(var(--card-width) * 0.95);
                height: calc(var(--card-height) * 0.95);
            }
        }
        
        @media (max-width: 992px) {
            .testimonial-card {
                width: calc(var(--card-width) * 0.9);
                height: calc(var(--card-height) * 0.9);
                padding: 25px;
            }
            
            .testimonials-container {
                gap: 25px;
            }
            
            .client-image {
                width: 70px;
                height: 70px;
            }
            
            .testimonial-text {
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 768px) {
            .testimonial-card {
                width: var(--mobile-card-width);
                height: var(--mobile-card-height);
                padding: 20px;
            }
            
            .client-image {
                width: 60px;
                height: 60px;
            }
            
            .client-name {
                font-size: 1.2rem;
            }
            
            .testimonial-text {
                font-size: 0.85rem;
            }
            
            .testimonials-wrapper::before,
            .testimonials-wrapper::after {
                width: 50px;
            }
        }
        
        @media (max-width: 576px) {
            .testimonial-card {
                width: var(--small-mobile-card-width);
                height: var(--small-mobile-card-height);
                padding: 15px;
            }
            
            .client-image {
                width: 50px;
                height: 50px;
            }
            
            .client-name {
                font-size: 0.75rem;
            }
            
            .client-position {
                font-size: 0.75rem;
            }
            
            .testimonial-text {
                font-size: 0.8rem;
            }
            
            .rating {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 400px) {
            .testimonial-card {
                width: calc(var(--small-mobile-card-width) * 0.95);
                height: calc(var(--small-mobile-card-height) * 0.95);
            }
            
            .testimonials-container {
                gap: 15px;
            }
        }
        

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
    .testimonials-section {
        padding: 6vw 10vw;
    }
}

/* Standard Desktop (1200px - 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
    .testimonial-card {
        width: calc(var(--card-width) * 0.98);
        height: calc(var(--card-height) * 0.98);
    }
}

/* Small Desktop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .testimonial-card {
        width: calc(var(--card-width) * 0.95);
        height: calc(var(--card-height) * 0.95);
    }
    
    .client-name {
        font-size: 0.9rem;
    }
    
    .testimonial-text {
        font-size: 0.92rem;
    }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .testimonial-card {
        width: calc(var(--card-width) * 0.9);
        height: calc(var(--card-height) * 0.9);
        padding: 25px;
    }
    
    .testimonials-container {
        gap: 25px;
    }
    
    .client-image {
        width: 70px;
        height: 70px;
    }
    
    .client-name {
        font-size: 0.9rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .rating {
        font-size: 1.1rem;
    }
}

/* Tablet Portrait (600px - 767px) */
@media (max-width: 767px) and (min-width: 600px) {
    .testimonial-card {
        width: var(--mobile-card-width);
        height: var(--mobile-card-height);
        padding: 22px;
    }
    
    .client-image {
        width: 65px;
        height: 65px;
    }
    
    .client-name {
        font-size: 0.8rem;
    }
    
    .client-position {
        font-size: 0.8rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .rating {
        font-size: 1.05rem;
    }
    
    .testimonials-wrapper::before,
    .testimonials-wrapper::after {
        width: 60px;
    }
}

/* Large Mobile (480px - 599px) */
@media (max-width: 599px) and (min-width: 480px) {
    .testimonial-card {
        width: var(--small-mobile-card-width);
        height: var(--small-mobile-card-height);
        padding: 18px;
    }
    
    .client-image {
        width: 55px;
        height: 55px;
    }
    
    .client-name {
        font-size: 0.75rem;
    }
    
    .client-position {
        font-size: 0.75rem;
    }
    
    .testimonial-text {
        font-size: 0.8rem;
    }
    
    .rating {
        font-size: 1rem;
    }
    
    .testimonial-text::before {
        font-size: 3.5rem;
    }
    
    .testimonials-wrapper::before,
    .testimonials-wrapper::after {
        width: 40px;
    }
}

/* Medium Mobile (400px - 479px) */
@media (max-width: 479px) and (min-width: 400px) {
    .testimonial-card {
        width: calc(var(--small-mobile-card-width) * 0.95);
        height: calc(var(--small-mobile-card-height) * 0.95);
        padding: 16px;
    }
    
    .client-image {
        width: 50px;
        height: 50px;
    }
    
    .client-name {
        font-size: 0.7rem;
    }
    
    .testimonial-text {
        font-size: 0.78rem;
    }
    
    .testimonial-text::before {
        font-size: 3rem;
    }
    
    .testimonials-container {
        gap: 18px;
    }
}

/* Small Mobile (360px - 399px) */
@media (max-width: 399px) and (min-width: 360px) {
    .testimonial-card {
        width: var(--tiny-mobile-card-width);
        height: var(--tiny-mobile-card-height);
        padding: 14px;
    }
    
    .client-image {
        width: 45px;
        height: 45px;
    }
    
    .client-name {
        font-size: 0.7rem;
    }
    
    .client-position {
        font-size: 0.7rem;
    }
    
    .testimonial-text {
        font-size: 0.75rem;
        line-height: 1.6;
    }
    
    .rating {
        font-size: 0.95rem;
    }
    
    .project-info {
        font-size: 0.7rem;
    }
    
    .testimonials-container {
        gap: 15px;
    }
}

/* Extra Small Mobile (320px - 359px) */
@media (max-width: 359px) and (min-width: 320px) {
    .testimonial-card {
        width: calc(var(--tiny-mobile-card-width) * 0.9);
        height: calc(var(--tiny-mobile-card-height) * 0.9);
        padding: 12px;
    }
    
    .client-image {
        width: 40px;
        height: 40px;
    }
    
    .client-name {
        font-size: 0.75rem;
    }
    
    .testimonial-text {
        font-size: 0.72rem;
    }
    
    .rating {
        font-size: 0.9rem;
    }
    
    .testimonials-container {
        gap: 12px;
    }
}

/* Tiny Mobile (below 320px) */
@media (max-width: 319px) {
    .testimonial-card {
        width: calc(var(--tiny-mobile-card-width) * 0.85);
        height: calc(var(--tiny-mobile-card-height) * 0.85);
        padding: 10px;
    }
    
    .client-image {
        width: 36px;
        height: 36px;
    }
    
    .client-name {
        font-size: 0.7rem;
    }
    
    .testimonial-text {
        font-size: 0.7rem;
    }
    
    .testimonial-text::before {
        font-size: 2.5rem;
    }
    
    .testimonials-wrapper::before,
    .testimonials-wrapper::after {
        width: 20px;
    }
}

/* Pause animation on hover */
.testimonials-container:hover {
    animation-play-state: running;
}
    

  .chat-container {
    width: 400px;
    height: 600px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .chat-header {
    background-color: #075e54;
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
  }
  .chat-header img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
  }
  .online-dot {
    width: 12px;
    height: 12px;
    background-color: #4caf50;
    border-radius: 50%;
    position: absolute;
    top: 16px;
    left: 52px;
    border: 2px solid #075e54;
  }
  .chat-header h3 {
    margin: 0;
    font-size: 18px;
    flex-grow: 1;
  }
  .chat-body {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .message-container {
    display: flex;
    align-items: flex-end;
    gap: 10px;
  }
  .message {
    max-width: 70%;
    padding: 10px 15px;
    border-radius: 15px;
    word-wrap: break-word;
    font-size: 14px;
    position: relative;
  }
  .bot-message {
    background-color: #ece5dd;
  }
  .user-message {
    background-color: #dcf8c6;
    align-self: flex-end;
  }
  .timestamp {
    font-size: 10px;
    color: gray;
    margin-top: 2px;
    display: flex;
    justify-content: flex-end;
  }
  .read-receipt {
    font-size: 10px;
    color: #4fc3f7;
    margin-left: 5px;
  }
  .bot-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
  }
  .typing {
    font-style: italic;
    color: #888;
  }
  .chat-footer {
    display: flex;
    padding: 10px;
    gap: 5px;
    border-top: 1px solid #ddd;
  }
  .chat-footer input {
    flex: 1;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #ccc;
    outline: none;
  }
  .chat-footer button {
    padding: 8px 12px;
    border-radius: 20px;
    border: none;
    background-color: #075e54;
    color: white;
    cursor: pointer;
  }
  .chat-header button {
    padding: 6px 10px;
    border-radius: 15px;
    border: none;
    background-color: #128C7E;
    color: white;
    cursor: pointer;
    font-size: 12px;
  }
  .quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
    margin-bottom: 5px;
  }
  .quick-reply {
    background-color: #e5e5e5;
    border: none;
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  .quick-reply:hover {
    background-color: #d5d5d5;
  }
  .suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 5px;
  }
  .suggestion-chip {
    background-color: #075e54;
    color: white;
    border: none;
    border-radius: 18px;
    padding: 8px 15px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  .suggestion-chip:hover {
    background-color: #128C7E;
  }
  
  
        .containery {
            width: 100%;
            max-width: 1200px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 30px;
            color: #4a5568;
            font-size: 2.2rem;
            font-weight: 700;
            text-shadow: 3px 3px 6px rgba(163, 177, 198, 0.5), 
                         -3px -3px 6px rgba(255, 255, 255, 0.8);
        }
        
        .content-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .joke-section, .quote-section {
            flex: 1;
            min-width: 300px;
            max-width: 550px;
            background: #e0e5ec;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 10px 10px 20px rgba(181, 163, 198, 0.5), 
                       -10px -10px 20px rgba(255, 255, 255, 0.8);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            color: #4a5568;
        }
        
        .section-header i {
            font-size: 1.8rem;
            margin-right: 15px;
            text-shadow: 2px 2px 4px rgba(163, 177, 198, 0.5), 
                        -2px -2px 4px rgba(255, 255, 255, 0.8);
        }
        
        .section-header h2 {
            font-size: 1.8rem;
            font-weight: 600;
        }
        
        .joke-content {
            padding: 20px 0;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .joke-text {
            font-size: 1.4rem;
            line-height: 1.6;
            color: #4a5568;
            text-align: center;
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 15px;
            background: #e0e5ec;
            box-shadow: inset 5px 5px 10px rgba(163, 177, 198, 0.5), 
                       inset -5px -5px 10px rgba(255, 255, 255, 0.8);
            min-height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn1 {
            padding: 15px 25px;
            border: none;
            border-radius: 15px;
            background: #e0e5ec;
            box-shadow: 5px 5px 10px rgba(163, 177, 198, 0.5), 
                       -5px -5px 10px rgba(255, 255, 255, 0.8);
            color: #4a5568;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }
        
        .btn1:hover {
            box-shadow: inset 5px 5px 10px rgba(242, 240, 243, 0.5), 
                       inset -5px -5px 10px rgba(255, 255, 255, 0.8);
        }
        
        .btn i {
            margin-right: 10px;
        }
        
        .quote-content {
            padding: 20px 0;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .quote-text {
            font-size: 1.4rem;
            line-height: 1.6;
            color: #4a5568;
            text-align: center;
            margin-bottom: 20px;
            padding: 25px;
            border-radius: 15px;
            background: #e0e5ec;
            box-shadow: inset 5px 5px 10px rgba(163, 177, 198, 0.5), 
                       inset -5px -5px 10px rgba(255, 255, 255, 0.8);
            min-height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-style: italic;
        }
        
        .timer-container {
            text-align: center;
            margin: 20px 0;
        }
        
        .timer-label {
            font-size: 1rem;
            color: #4a5568;
            margin-bottom: 10px;
        }
        
        .timer {
            font-size: 1.8rem;
            font-weight: 700;
            color: #5e81ac;
            text-shadow: 2px 2px 4px rgba(163, 177, 198, 0.5);
            padding: 10px 20px;
            border-radius: 15px;
            background: #e0e5ec;
            box-shadow: inset 3px 3px 6px rgba(163, 177, 198, 0.5), 
                       inset -3px -3px 6px rgba(255, 255, 255, 0.8);
            display: inline-block;
            min-width: 150px;
        }
        
        /* Responsive Design */
        @media screen and (max-width: 1200px) {
            .content-wrapper {
                gap: 25px;
            }
            
            .joke-section, .quote-section {
                max-width: 500px;
            }
        }
        
        @media screen and (max-width: 992px) {
            .section-title {
                font-size: 2rem;
            }
            
            .joke-section, .quote-section {
                max-width: 450px;
                padding: 25px;
            }
            
            .joke-text, .quote-text {
                font-size: 1.3rem;
            }
        }
        
        @media screen and (max-width: 868px) {
            .content-wrapper {
                flex-direction: column;
                align-items: center;
            }
            
            .joke-section, .quote-section {
                width: 100%;
                max-width: 600px;
            }
        }
        
        @media screen and (max-width: 668px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-header h2 {
                font-size: 1.6rem;
            }
            
            .joke-text, .quote-text {
                font-size: 1.2rem;
                padding: 15px;
            }
            
            .btn1 {
                padding: 12px 20px;
                font-size: 1rem;
            }
            
            .timer {
                font-size: 1.6rem;
            }
        }
        
        @media screen and (max-width: 480px) {
          
            
            .section-title {
                font-size: 1.6rem;
                margin-bottom: 20px;
            }
            
            .joke-section, .quote-section {
                padding: 20px;
                border-radius: 15px;
            }
            
            .section-header {
                margin-bottom: 15px;
            }
            
            .section-header i {
                font-size: 1.5rem;
            }
            
            .section-header h2 {
                font-size: 1.4rem;
            }
            
            .joke-text, .quote-text {
                font-size: 1.1rem;
                min-height: 130px;
                margin-bottom: 20px;
            }
            
            .timer {
                font-size: 1.4rem;
                padding: 8px 16px;
            }
        }
        
        @media screen and (max-width: 360px) {
            .section-title {
                font-size: 1.4rem;
            }
            
            .joke-section, .quote-section {
                padding: 15px;
            }
            
            .joke-text, .quote-text {
                font-size: 1rem;
                min-height: 120px;
            }
            
            .btn {
                padding: 10px 16px;
                font-size: 0.9rem;
            }
            
            .timer {
                font-size: 1.2rem;
            }
        }
        
        /* Very small devices */
        @media screen and (max-width: 320px) {
            .section-header h2 {
                font-size: 1.2rem;
            }
            
            .joke-text, .quote-text {
                font-size: 0.95rem;
                padding: 12px;
            }
            
            .timer {
                font-size: 1.1rem;
                min-width: 130px;
            }
        }
        
        /* Large screens */
        @media screen and (min-width: 1600px) {
            .container {
                max-width: 1400px;
            }
            
            .joke-section, .quote-section {
                max-width: 650px;
            }
            
            .joke-text, .quote-text {
                font-size: 1.5rem;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.5s ease forwards;
        }


        /* Base Styles & Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --ppc: #0A174E;
            --ssc: #002366;
            --bgcc: #f0f2f5;
            --tcc: #2d3436;
            --tccg: #dfe6e9;
            --white: #ffffff;
            --cfshadow: 8px 8px 15px #d9d9d9, -8px -8px 15px #ffffff;
            --cfinset-shadow: inset 3px 3px 5px #d9d9d9, inset -3px -3px 5px #ffffff;
            --wwwww: all 0.3s ease;
        }


        /* container-3 Styles */
        .container-3 {
            width: 100%;
            max-width: 1200px;
            margin:  auto;
            display: grid;
            gap: 30px;
        }

        /* Information Section */
        .info-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .info-section h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--ppc);
            line-height: 1.2;
        }

        .info-section p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .services-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin: 20px 0;
        }

        .service-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }

        .service-item i {
            color: var(--ppc);
            margin-right: 10px;
            font-size: 0.9rem;
        }

        .social-proof {
            font-weight: bold;
            margin: 20px 0;
            color: var(--ppc);
        }

        .quick-contact {
            display: flex;
            gap: 15px;
            margin: 20px 0;
        }

        .quick-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bgcc);
            box-shadow: var(--cfshadow);
            color: var(--ppc);
            transition: var(--wwwww);
            text-decoration: none;
        }

        .quick-btn:hover {
            transform: translateY(-3px);
            box-shadow: 10px 10px 20px #d9d9d9, -10px -10px 20px #ffffff;
            color: whitesmoke;
            background:  rgb(9, 63, 126);
        }

         .quick-btn:hover i {
            transform: translateY(-5px);
        
        } .quick-btn i {
            transition: all 0.3s ease;;
        }
        .response-time {
            font-style: italic;
            margin: 10px 0;
        }

        .badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }

        .badge {
            padding: 5px 10px;
            background: var(--bgcc);
            box-shadow: var(--cfshadow);
            border-radius: 20px;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
        }

        .badge i {
            color: var(--ppc);
            margin-right: 5px;
        }

        .privacy-note {
            font-size: 0.9rem;
            color: #636e72;
        }

        .secure-form {
            display: flex;
            align-items: center;
            margin-top: 15px;
            font-size: 0.9rem;
        }

        .secure-form i {
            color: #00b894;
            margin-right: 8px;
        }

        /* Form Section */
        .form-section {
            background: var(--bgcc);
            border-radius: 20px;
            padding: 30px;
            box-shadow: var(--cfshadow);
            position: relative;
            overflow: hidden;
        }

        .form-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--ppc);
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group label.required:after {
            content: " *";
            color: #e74c3c;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            border: none;
            background: var(--bgcc);
            border-radius: 10px;
            box-shadow: var(--cfinset-shadow);
            transition: var(--wwwww);
            font-size: 1rem;
        }

        .form-control:focus {
            outline: none;
            box-shadow: var(--cfinset-shadow), 0 0 10px var(--ssc);
        }

        select.form-control {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 15px;
        }

        
        .checkbox-group {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }

        .checkbox-group input {
            margin-right: 10px;
            width: 18px;
            height: 18px;
            box-shadow: var(--cfinset-shadow);
            -webkit-appearance: none;
            appearance: none;
            border-radius: 4px;
            position: relative;
            cursor: pointer;
        }

        .checkbox-group input:checked::before {
            content: "✓";
            position: absolute;
            color: var(--ppc);
            font-weight: bold;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: var(--ppc);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--wwwww);
            box-shadow: 5px 5px 10px #d9d9d9, -5px -5px 10px #ffffff, 
                        inset 0 0 0 transparent;
            margin-top: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .submit-btn:hover {
            background: #353839;
            box-shadow: 5px 5px 10px #d9d9d9, -5px -5px 10px #ffffff, 
                        inset 3px 3px 5px rgba(0, 0, 0, 0.1);
        }

        .submit-btn i {
            margin-left: 8px;
            transition: var(--wwwww);
        }

        .submit-btn:hover i {
            transform: translatey(5px);
        }

        /* Overlay Styles */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: var(--wwwww);
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .overlay-content {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            max-width: 400px;
            width: 90%;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid var(--tccg);
            border-top-color: var(--ppc);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .container-3 {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .info-section h1 {
                font-size: 2rem;
            }

            .form-section {
                padding: 25px;
            }
        }

        @media (max-width: 768px) {
          

            .info-section h1 {
                font-size: 1.8rem;
            }

            .services-list {
                grid-template-columns: 1fr;
            }

            .form-title {
                font-size: 1.3rem;
            }

            .form-control {
                padding: 12px;
            }
        }

        @media (max-width: 600px) {
            .info-section h1 {
                font-size: 1.6rem;
            }

            .form-section {
                padding: 20px;
            }

            .form-control {
                padding: 10px;
                font-size: 0.9rem;
            }

            .submit-btn {
                padding: 12px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
           

            .info-section h1 {
                font-size: 1.4rem;
                margin-bottom: 15px;
            }

            .info-section p {
                font-size: 1rem;
            }

            .form-section {
                padding: 15px;
            }

            .form-title {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }

            .form-group label {
                font-size: 0.9rem;
            }

            .form-control {
                font-size: 0.85rem;
            }

            .submit-btn {
                font-size: 0.85rem;
            }

            .quick-contact {
                gap: 10px;
            }

            .quick-btn {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 400px) {
            .info-section h1 {
                font-size: 1.3rem;
            }

            .badges {
                flex-direction: column;
                align-items: flex-start;
            }

            .form-section {
                padding: 12px;
            }
        }

        @media (max-width: 360px) {
            .info-section h1 {
                font-size: 1.2rem;
            }

            .form-title {
                font-size: 1.1rem;
            }

            .form-control {
                padding: 8px;
            }
        }

        @media (max-width: 320px) {
            .info-section h1 {
                font-size: 1.1rem;
            }

            .info-section p {
                font-size: 0.9rem;
            }

            .service-item {
                font-size: 0.9rem;
            }

            .form-title {
                font-size: 1rem;
            }

            .form-group label {
                font-size: 0.85rem;
            }

            .form-control {
                font-size: 0.8rem;
            }
        }

        /* Additional small screen adjustments */
        @media (max-width: 280px) {
            .quick-contact {
                flex-wrap: wrap;
            }

            .form-section {
                padding: 10px;
            }
        }.dropdown-content {
      display: none;
      position: absolute;
      background: white;
      min-width: 180px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      padding: 10px 0;
      margin-top: 10px;
      z-index: 1;
      animation: fadeIn 0.3s ease;
    }

    .dropdown-content a {
      color: #333;
      padding: 10px 16px;
      text-decoration: none;
      display: block;
      transition: 0.2s;
      border-radius: 8px;
    }

    .dropdown-content a:hover {
      background: linear-gradient(135deg, #667eea, #764ba2);
      color: white;
    }

    .show {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }

  /* Floating shaky button */
  .floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #f3f3f5;
    color: #070e4e;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: shake 0.8s infinite;
    transition: transform 0.3s ease;
  }

  .floating-btn:hover {
    transform: scale(1.2);
    animation: none;
    box-shadow: 0 4px 15px rgba(6, 235, 36, 0.445);

  }

  @keyframes shake {
    0% { transform: translate(0, 0) rotate(0deg); }
    10% { transform: translate(-2px, 2px) rotate(-2deg); }
    20% { transform: translate(-2px, -2px) rotate(2deg); }
    30% { transform: translate(2px, 2px) rotate(0deg); }
    40% { transform: translate(2px, -2px) rotate(2deg); }
    50% { transform: translate(-2px, 2px) rotate(-2deg); }
    60% { transform: translate(-2px, -2px) rotate(0deg); }
    70% { transform: translate(2px, 2px) rotate(-2deg); }
    80% { transform: translate(2px, -2px) rotate(2deg); }
    90% { transform: translate(-2px, 2px) rotate(0deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
  }


    /* 1. Glowing Pulse Div */
        .c {
            animation: glowPulse 20s infinite;
        }

        @keyframes glowPulse {
            0%, 100% { box-shadow: 0 0 10px var(--color-1); }
            5% { box-shadow: 0 0 20px var(--color-2); }
            10% { box-shadow: 0 0 20px var(--color-3); }
            15% { box-shadow: 0 0 20px var(--color-4); }
            20% { box-shadow: 0 0 20px var(--color-5); }
            25% { box-shadow: 0 0 20px var(--color-6); }
            30% { box-shadow: 0 0 20px var(--color-7); }
            35% { box-shadow: 0 0 20px var(--color-8); }
            40% { box-shadow: 0 0 20px var(--color-9); }
            45% { box-shadow: 0 0 20px var(--color-10); }
            50% { box-shadow: 0 0 20px var(--color-11); }
            55% { box-shadow: 0 0 20px var(--color-12); }
            60% { box-shadow: 0 0 20px var(--color-13); }
            65% { box-shadow: 0 0 20px var(--color-14); }
            70% { box-shadow: 0 0 20px var(--color-15); }
            75% { box-shadow: 0 0 20px var(--color-16); }
            80% { box-shadow: 0 0 20px var(--color-17); }
            85% { box-shadow: 0 0 20px var(--color-18); }
            90% { box-shadow: 0 0 20px var(--color-19); }
            95% { box-shadow: 0 0 20px var(--color-20); }
        }
  :root {
            /* 20 distinct vibrant colors */
            --color-1: #ff0000; --color-2: #ff8000; --color-3: #ffff00;
            --color-4: #80ff00; --color-5: #00ff00; --color-6: #00ff80;
            --color-7: #00ffff; --color-8: #0080ff; --color-9: #0000ff;
            --color-10: #8000ff; --color-11: #ff00ff; --color-12: #ff0080;
            --color-13: #ff3366; --color-14: #ff6600; --color-15: #ffcc00;
            --color-16: #66ff00; --color-17: #00ffcc; --color-18: #0066ff;
            --color-19: #cc00ff; --color-20: #ff0066;
        }
  /* Responsive modal & close button */
  @media (max-width: 1400px) { .modal-content { font-size: 17px; } .close-btn { font-size:26px; top:14px; right:14px;} }
  @media (max-width: 1200px) { .modal-content { font-size: 16px; } .close-btn { font-size:24px; top:12px; right:12px;} }
  @media (max-width: 992px)  { .modal-content { font-size: 15px; width:50%; } .close-btn { font-size:22px; top:10px; right:10px;} }
  @media (max-width: 768px)  { .modal-content { font-size: 14px; width:60%; } .close-btn { font-size:20px; top:8px; right:8px;} }
  @media (max-width: 576px)  { .modal-content { font-size: 13px; width:80%; } .close-btn { font-size:18px; top:6px; right:6px;} }
  @media (max-width: 480px)  { .modal-content { font-size: 12px; width:85%; } .close-btn { font-size:16px; top:5px; right:5px;} }
  @media (max-width: 400px)  { .modal-content { font-size: 11px; width:90%; } .close-btn { font-size:14px; top:4px; right:4px;} }
  @media (max-width: 360px)  { .modal-content { font-size: 10px; width:95%; } .close-btn { font-size:12px; top:3px; right:3px;} }

  
        .container {
            width: 100%;
            max-width: 1200px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 30px;
            color: #4a5568;
            font-size: 2.2rem;
            font-weight: 700;
            text-shadow: 3px 3px 6px rgba(163, 177, 198, 0.5), 
                         -3px -3px 6px rgba(99, 87, 204, 0.637);
        }
        
        .timezones-section {
            background: #e0e5ec;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.5), 
                       -10px -10px 20px rgba(255, 255, 255, 0.8);
        }
        
        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            color: #4a5568;
        }
        
        .section-header i {
            font-size: 1.8rem;
            margin-right: 15px;
            text-shadow: 2px 2px 4px rgba(163, 177, 198, 0.5), 
                        -2px -2px 4px rgba(255, 255, 255, 0.8);
        }
        
        .section-header h2 {
            font-size: 1.8rem;
            font-weight: 600;
        }
        
        .g-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            width: 100%;
            max-width: 1200px;
        }
        .timezones-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            
        }
        
        .timezone-card {
            background: #e0e5ec;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 5px 5px 10px rgba(163, 177, 198, 0.5), 
                       -5px -5px 10px rgba(255, 255, 255, 0.8);
            text-align: center;
            transition: transform 0.3s ease;
            
        }
        
        .timezone-card:hover {
            transform: translateY(-5px);
            box-shadow: 8px 8px 15px rgba(163, 177, 198, 0.5), 
                       -8px -8px 15px rgba(255, 255, 255, 0.8);
        }
        
        .city-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: #4a5568;
            margin-bottom: 10px;
        }
        
        .time-display {
            font-size: 1.5rem;
            font-weight: 700;
            color: #5e81ac;
            margin-bottom: 5px;
            font-variant-numeric: tabular-nums;
        }
        
        .timezone-info {
            font-size: 0.9rem;
            color: #6b7280;
        }
        
        .current-time {
            text-align: center;
            margin-top: 30px;
            padding: 15px;
            border-radius: 15px;
            background: #e0e5ec;
            box-shadow: inset 3px 3px 6px rgba(163, 177, 198, 0.5), 
                       inset -3px -3px 6px rgba(255, 255, 255, 0.8);
        }
        
        .current-time-label {
            font-size: 1rem;
            color: #4a5568;
            margin-bottom: 5px;
        }
        
        .current-time-display {
            font-size: 1.8rem;
            font-weight: 700;
            color: #5e81ac;
        }
        
        /* Responsive Design */
        @media screen and (max-width: 1200px) {
            .g-grid,.timezones-grid {
                grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
            }
        }
        
        @media screen and (max-width: 992px) {
            .section-title {
                font-size: 2rem;
            }
            
            .timezones-section {
                padding: 25px;
            }
            
            .section-header h2 {
                font-size: 1.6rem;
            }
            
            .city-name {
                font-size: 1.1rem;
            }
            
            .time-display {
                font-size: 1.4rem;
            }
        }
        
        @media screen and (max-width: 868px) {
            .g-grid,.timezones-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 15px;
            }
            
            .timezone-card {
                padding: 15px;
            }
        }
        
        @media screen and (max-width: 668px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-header h2 {
                font-size: 1.5rem;
            }
            
            .g-grid,.timezones-grid {
                grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
            }
            
            .city-name {
                font-size: 1rem;
            }
            
            .time-display {
                font-size: 1.3rem;
            }
            
            .current-time-display {
                font-size: 1.6rem;
            }
        }
        
        @media screen and (max-width: 576px) {
            .g-grid,.timezones-grid {
                grid-template-columns: 1fr;
                max-width: 350px;
                margin: 0 auto;
            }
            
            .section-header {
                justify-content: center;
            }
        }
        
        @media screen and (max-width: 480px) {
            
               .g-grid,.timezones-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .section-title {
                font-size: 1.6rem;
                margin-bottom: 20px;
            }
            
            .timezones-section {
                padding: 20px;
                border-radius: 15px;
            }
            
            .section-header {
                margin-bottom: 20px;
            }
            
            .section-header i {
                font-size: 1.5rem;
            }
            
            .section-header h2 {
                font-size: 1.4rem;
            }
            
            .time-display {
                font-size: 1.2rem;
            }
            
            .current-time-display {
                font-size: 1.4rem;
            }
        }
        
        @media screen and (max-width: 400px) {
            .g-grid,.timezones-grid {
                gap: 12px;
            }
            
            .timezone-card {
                padding: 12px;
            }
            
            .city-name {
                font-size: 0.95rem;
            }
            
            .time-display {
                font-size: 1.1rem;
            }
            
            .timezone-info {
                font-size: 0.85rem;
            }
        }
        
        @media screen and (max-width: 360px) {
            .section-title {
                font-size: 1.4rem;
            }
            
            .timezones-section {
                padding: 15px;
            }
            
            .section-header h2 {
                font-size: 1.3rem;
            }
            
            .current-time-display {
                font-size: 1.3rem;
            }
        }
        
        @media screen and (max-width: 320px) {
            .section-header h2 {
                font-size: 1.2rem;
            }
            
            .city-name {
                font-size: 0.9rem;
            }
            
            .time-display {
                font-size: 1rem;
            }
            
            .current-time-display {
                font-size: 1.2rem;
            }
        }
        
        /* Large screens */
        @media screen and (min-width: 1600px) {
            .container {
                max-width: 1400px;
            }
            
            .g-grid,.timezones-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 25px;
            }
            
            .timezone-card {
                padding: 25px;
            }
            
            .city-name {
                font-size: 1.3rem;
            }
            
            .time-display {
                font-size: 1.7rem;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.5s ease forwards;
        }
        