 /* 1. FONT IMPORT & SETUP */
        @import url('https://api.fontshare.com/v2/css?f[]=satoshi@700,500,400&display=swap');

        /* 2. CSS RESET & ROOT VARIABLES */
        :root {
            --dark-blue: #071c35;
            --gold: #e19e91;
            --light-gray-bg: #f4f5f9;
            --card-dark-blue: #10183c;
            --text-light: #e0e0e0;
            --border-color: rgba(255, 255, 255, 0.1);
            --border-radius-sm: 8px;
            --border-radius-md: 12px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Satoshi', sans-serif;
            background-color: #fff;
            color: var(--dark-blue);
            overflow-x: hidden;
        }

        /* 3. UTILITY & ANIMATION CLASSES */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 30px 0;
        }

        h2.section-title {
            font-size: 2.4rem;
            font-weight: 400;
            color: var(--dark-blue);
            margin-bottom: 22px;
            text-align: center;
        }

        .btn {
            padding: 16px 32px;
            border: none;
            border-radius: var(--border-radius-sm);
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background-color: var(--gold);
            color: #fff;
        }

        .btn-primary:hover {
            background-color: #e0961e;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(249, 168, 38, 0.3);
        }
        
        /* Animation classes for Intersection Observer */
        .fade-in-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* 4. HEADER & NAVIGATION */
        .main-header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            padding: 20px 0;
            background: linear-gradient(180deg, rgba(12, 19, 47, 0.5) 0%, rgba(12, 19, 47, 0) 100%);
        }

        .main-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
        }

        .logo img {
            height: 40px;
        }

        .main-nav ul {
            list-style: none;
            display: flex;
            gap: 35px;
        }

        .main-nav a {
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
        }
        
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold);
            transition: width 0.3s ease;
        }

        .main-nav a:hover::after, .main-nav a.active::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .header-actions .btn-outline {
            color: white;
            border: 1px solid white;
            padding: 10px 20px;
            border-radius: var(--border-radius-sm);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .header-actions .btn-outline:hover {
            background-color: white;
            color: var(--dark-blue);
        }

        /* 5. HERO SECTION */
        .hero {
            height: 100vh;
            min-height: 700px;
            /* Desktop Background Image */
            background-image: url('images/top22.jpg');
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            background-attachment: fixed; /* Parallax Effect for Desktop */
            display: flex;
            align-items: center;
            color: #fff;
            position: relative;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(0 0 0 / 21%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 6rem;
            font-weight: 700;
        }

        .hero-content .subtitle {
            font-size: 1.75rem;
            font-weight: 500;
            margin: 10px 0 30px;
        }

        .hero-info {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .hero-info span {
            border: 1px solid rgba(255,255,255,0.5);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 1.2rem;
            background-color: #0000004a;
        }
        
        .breadcrumbs {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            margin-top: 50px;
            font-size: 0.9rem;
        }
        
        .breadcrumbs i {
            font-size: 1.2rem;
        }
        
        .breadcrumbs span {
            opacity: 0.7;
        }

        /* 6. PROJECT DETAILS SECTION */
        .project-details {
            background-color: #fff;
        }
        
        .details-wrapper {
            display: flex;
            gap: 50px;
            align-items: flex-start;
        }
        
        .details-description {
            flex: 2;
        }

        .details-description h3 {
            font-size: 1.5rem;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .details-description p {
            line-height: 1.8;
            color: #555;
        }

        .details-summary-card {
            flex: 1;
            background-color: var(--dark-blue);
            color: #fff;
            padding: 40px;
            border-radius: var(--border-radius-md);
            position: sticky;
            top: 100px;
        }

        .details-summary-card h3 {
            font-size: 2rem;
            margin-bottom: 30px;
        }
        
        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 20px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .summary-item:last-of-type {
            border-bottom: none;
        }
        
        .summary-item .label {
            color: var(--text-light);
            font-weight: 400;
        }
        
        .summary-item .value {
            font-weight: 700;
        }

        .details-summary-card .btn {
            width: 100%;
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        /* 7. TABS (for Gallery & Floor Plans) */
        .tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            border: 1px solid #e0e0e0;
            border-radius: var(--border-radius-sm);
            overflow: hidden;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }
        
        .tab-button {
            padding: 15px 40px;
            cursor: pointer;
            background-color: var(--light-gray-bg);
            color: var(--dark-blue);
            border: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .tab-button.active {
            background-color: var(--dark-blue);
            color: #fff;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        /* 8. GALLERY SECTION */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--border-radius-md);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        
        .gallery-item img:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        /* 9. FLOOR PLANS SECTION */
        .floor-plans {
             background-color: var(--light-gray-bg);
        }
        
        .floor-plan-viewer {
            display: flex;
            gap: 30px;
            background: #fff;
            padding: 30px;
            border-radius: var(--border-radius-md);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .floor-plan-viewer img {
            max-width: 100%;
            border-radius: var(--border-radius-sm);
        }

        /* 10. PAYMENT PLANS SECTION */
        .payment-plan-wrapper {
             text-align: center;
        }

        .payment-plan-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        
        .payment-card {
            background-color: var(--light-gray-bg);
            padding: 40px;
            border-radius: var(--border-radius-md);
            width: 280px;
            text-align: center;
        }

        .payment-card .percentage {
            font-size: 3rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .payment-card .description {
            font-weight: 500;
            color: #555;
        }

        /* 11. FEATURES & AMENITIES SECTION */
        .features {
            background-color: var(--light-gray-bg);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 40px 20px;
            text-align: center;
        }

        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        
        .feature-item img {
            height: 50px;
            width: 50px;
            object-fit: contain;
        }
        
        .feature-item span {
            font-weight: 500;
        }

        /* 12. LOCATION SECTION */
        .location-map iframe {
            width: 100%;
            height: 500px;
            border: 0;
            border-radius: var(--border-radius-md);
        }
        
        /* 13. SIMILAR PROJECTS SECTION */
        .similar-projects {
            background-color: var(--light-gray-bg);
        }
        
        .slider-wrapper {
            position: relative;
        }

        .slider-container {
            overflow: hidden;
        }
        
        .slider-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease-in-out;
        }

        .project-card {
            flex: 0 0 calc(33.333% - 20px);
            background: #fff;
            border-radius: var(--border-radius-md);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .card-image {
            height: 250px;
            position: relative;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .card-tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgb(203 37 80 / 95%);
            color: #fff;
            padding: 5px 12px;
            border-radius: 5px;
            font-size: 0.8rem;
        }
        
        .card-content {
            padding: 25px;
        }
        
        .card-content h4 {
            font-size: 1.25rem;
            margin-bottom: 10px;
        }

        .card-content .price {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 15px;
        }
        
        .card-location {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #555;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .card-buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .card-buttons .btn {
            flex: 1;
            padding: 12px;
            font-size: 0.9rem;
        }

        .btn-secondary {
            background-color: #eef0f3;
            color: var(--dark-blue);
        }
        .btn-secondary:hover {
            background-color: #dfe3e8;
        }
        
        .slider-controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: calc(100% + 80px);
            left: -40px;
            display: flex;
            justify-content: space-between;
        }
        
        .slider-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #fff;
            color: var(--dark-blue);
            border: 1px solid #e0e0e0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .slider-arrow:hover {
            background: var(--dark-blue);
            color: #fff;
        }

        /* 14. FOOTER */
        footer {
            background-color: #000000;
            color: var(--text-light);
            padding: 80px 0 30px;
            background-image: url('images/footer-bg.svg');
            background-repeat: no-repeat;
            background-position: bottom center;
            background-size: cover;
        }
        
        .footer-top {
            background-color:#e19e9100;
            border: 1px solid #e19e91;
            border-radius: var(--border-radius-md);
            padding: 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 60px;
        }

        .footer-top h3 {
            font-size: 1.8rem;
            max-width: 300px;
        }
        
        .footer-form {
            display: flex;
            gap: 15px;
            width: 60%;
        }

        .footer-form input {
            flex: 1;
            padding: 16px;
            border: 1px solid var(--border-color);
            background-color: transparent;
            border-radius: var(--border-radius-sm);
            color: #fff;
            font-size: 1rem;
        }
        
        .footer-form input::placeholder {
            color: #aaa;
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            gap: 50px;
        }
        
        .footer-about {
            flex: 1;
            max-width: 250px;
        }
        
        .footer-about .logo img {
            height: 40px;
            margin-bottom: 20px;
        }
        
        .social-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        .social-icons a {
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--gold);
            color: var(--dark-blue);
        }
        
        .footer-links {
            flex: 3;
            display: flex;
            justify-content: space-between;
            gap: 40px;
        }

        .footer-links h4 {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--gold);
        }
        
        .footer-bottom-bar {
            border-top: 1px solid var(--border-color);
            margin-top: 50px;
            padding-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            color: #aaa;
        }

        /* 15. RESPONSIVENESS - MEDIA QUERIES */

        /* Tablet View (e.g., iPads) */
        @media (max-width: 1024px) {
            h2.section-title {font-size: 2.1rem;}
            .hero-content h1 { font-size: 4.5rem; }
            
            .details-wrapper { flex-direction: column; }
            .details-summary-card { 
                position: static; 
                width: 100%; 
                margin-top: 40px;
            }

            .project-card { 
                flex: 0 0 calc(50% - 15px); 
            }
            .slider-track {
                padding-bottom: 20px; /* Add space for scrollbar if it appears */
            }

            .footer-top { 
                flex-direction: column; 
                gap: 30px; 
                text-align: center; 
                padding: 40px 25px;
            }
            .footer-form { 
                flex-direction: column; 
                width: 100%; 
            }
        }

        /* Mobile View (e.g., iPhones, Android phones) */
        @media (max-width: 768px) {
            section {padding: 20px 0;}
            
            .main-header .container { padding: 0 20px; }
            .main-nav, .header-actions .btn-outline { 
                display: none; /* Hide nav and button for simplicity */
            }
            .main-header .container { justify-content: center; } /* Center logo */
            
            /* --- HERO IMAGE SWAP FOR MOBILE --- */
            .hero {
                /* Mobile Background Image */
                background-image: url('images/top22.jpg'); 
                background-attachment: scroll; /* 'fixed' can be jumpy on mobile, 'scroll' is smoother */
                min-height: 650px; /* Adjust height for smaller screens */
            }

            .hero-content { text-align: center; }
            .hero-content h1 { font-size: 3.5rem; }
            .hero-content .subtitle { font-size: 1.25rem; }
            .hero-info { justify-content: center; }
            .breadcrumbs { justify-content: center; gap: 5px 10px; }
            
            .tab-button {
                padding: 12px 20px;
                font-size: 0.9rem;
            }

            .floor-plan-viewer { flex-direction: column; padding: 20px; }
            
            .payment-plan-cards { 
                flex-direction: column; 
                align-items: center; 
            }

            .location-map iframe {
                height: 400px;
            }

            /* Make slider horizontally scrollable on mobile */
            .slider-container {
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -ms-overflow-style: none;  /* IE and Edge */
                scrollbar-width: none;  /* Firefox */
            }
            .slider-container::-webkit-scrollbar {
                display: none; /* Hide scrollbar for Chrome, Safari, Opera */
            }
            .slider-track {
                justify-content: flex-start;
            }
            .project-card {
                flex: 0 0 85%; /* Each card takes up 85% of the screen */
                scroll-snap-align: start;
            }
            .slider-controls { 
                display: none; 
            }

            .footer-top h3 { font-size: 1.5rem; }

            .footer-bottom { 
                flex-direction: column; 
                text-align: center; 
            }
            .footer-about { 
                max-width: 100%; 
                margin-bottom: 40px; 
            }
            .social-icons { 
                justify-content: center; 
            }
            .footer-links { 
                flex-direction: column; 
                gap: 30px;
                align-items: center;
            }
            .footer-links .links-col {
                width: 100%;
            }

            .footer-bottom-bar { font-size: 0.8rem; }
        }
        
         /* 16. MODAL STYLES */
        .modal {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000; display: flex;
            align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none;
            transition: opacity 0.3s ease-in-out;
        }
        .modal.active { opacity: 1; pointer-events: all; }
        .modal-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background-color: rgba(12, 19, 47, 0.8); cursor: pointer; z-index: 1;
        }
        .modal-content {
            position: relative; z-index: 2; background: #fff; border-radius: var(--border-radius-md);
            max-width: 900px; width: 100%; display: flex; overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2); transform: scale(0.95);
            transition: transform 0.3s ease-in-out;
        }
        .modal.active .modal-content { transform: scale(1); }
        .modal-close {
            position: absolute; top: 15px; right: 15px; background: transparent; border: none;
            font-size: 1.8rem; color: #888; cursor: pointer; z-index: 10;
        }
        .modal-close:hover { color: #333; }
        .modal-info { flex-basis: 45%; background-color: var(--dark-blue); color: #fff; padding: 50px; display: flex; flex-direction: column; justify-content: center; }
        .modal-info h3 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 40px; }
        .modal-developer { display: flex; align-items: center; gap: 20px; }
        .modal-developer img { height: 60px; width: 60px; background: #fff; padding: 5px; border-radius: var(--border-radius-sm); }
        .modal-developer-name span { display: block; }
        .modal-developer-name span:first-child { font-weight: 700; }
        .modal-developer-name span:last-child { font-size: 0.9rem; opacity: 0.7; }
        .modal-image { flex-basis: 45%; background: url('images/01.jpeg') no-repeat center center; background-size: cover; }
        .modal-form-container { flex-basis: 55%; padding: 50px; }
        #brochureModal .modal-form-container { text-align: center; }
        #brochureModal .modal-form-container h3 { font-size: 2rem; margin-bottom: 15px; }
        #brochureModal .modal-form-container p { color: #666; margin-bottom: 30px; }
        
        .form-group { margin-bottom: 20px; position: relative; } /* Added position relative for potential error messages */
        
        .modal-form-container input[type="text"],
        .modal-form-container input[type="email"],
        .modal-form-container input[type="tel"] {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius-sm);
            font-size: 1rem;
            font-family: 'Satoshi', sans-serif;
            height: 52px; /* Set a consistent height */
        }

        /* --- START: CSS FOR intl-tel-input --- */
        .iti {
            width: 100%;
        }
        .iti__tel-input {
            /* This will inherit most styles from the rule above */
            padding-left: 95px !important; /* Make space for the flag dropdown + dial code */
        }
        /* --- END: CSS FOR intl-tel-input --- */
        
        .consent-group { display: flex; gap: 10px; align-items: flex-start; margin: 25px 0; }
        .consent-group label { font-size: 0.8rem; color: #666; line-height: 1.5; }
        .consent-group input[type="checkbox"] { margin-top: 3px; }
        .modal-form-container .btn { width: 100%; }

        /* 17. RESPONSIVENESS */
        @media (max-width: 768px) {
            .hero { background-image: url('images/top22.jpg'); background-attachment: scroll; }
            .details-wrapper { flex-direction: column; }
            .details-summary-card { position: static; width: 100%; margin-top: 40px; }
            /* Modal Responsiveness */
            .modal-content { flex-direction: column; max-height: 90vh; overflow-y: auto; }
            .modal-info, .modal-image { display: none; }
            .modal-form-container { padding: 40px 25px; }
        }
        
        

/* Container for the arrow */
.scroll-down-link {
  position: absolute;
  bottom: -7rem; /* 2rem from the bottom */
  left: 50%;
  transform: translateX(-50%); /* Centers the link horizontally */
  cursor: pointer;
}

/* The Arrow Shape (created with borders) */
.scroll-down-arrow {
  display: block;
  width: 20px;
  height: 20px;
  
  /* Create a chevron shape using borders */
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  
  /* Hide the top and left borders */
  border-top: 0;
  border-left: 0;

  /* Rotate the square to make it a chevron */
  transform: rotate(45deg);
}


/* Add this to your CSS file */

/* 1. Define the animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
    opacity: 1;
  }
  50% {
    transform: translateY(15px) rotate(45deg);
    opacity: 0.7;
  }
}

/* 2. Apply the animation to the arrow */
.scroll-down-arrow {
  /* ... (keep the previous styles) ... */
  animation: bounce 2s infinite; /* name, duration, iteration */
  animation-timing-function: ease-in-out;
}

@keyframes bounce-svg {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.scroll-down-link svg {
  animation: bounce-svg 2s infinite ease-in-out;
}




/* Sticky "Register Now" Button */
.sticky-cta-button {
  /* --- Positioning and Initial State (Hidden) --- */
  position: fixed;
  top: 76%;
  right: -200px; /* Start completely off-screen to the right */
  transform: translateY(-50%); /* Vertically center it */
  z-index: 1000; /* Ensure it's on top of other content */
  opacity: 0; /* Start fully transparent */
  font-size: 12px;
  visibility: hidden; /* Hide from screen readers and interaction */
  
  /* Smooth transition for all properties */
  transition: all 0.4s ease-in-out;

  /* --- Visual Styling --- */
  background-color: #216d60; /* A nice, vibrant CTA color */
  color: white;
  padding: 11px 9px;
  text-decoration: none;
  font-weight: lighter;
  
  /* Vertical text orientation */
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 2px;
  text-transform: uppercase;

  /* Rounded corners on the left side */
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  box-shadow: -3px 3px 12px rgba(0, 0, 0, 0.25);
}

/* --- The Visible State --- */
/* We will add this class with JavaScript */
.sticky-cta-button.visible {
  right: 0; /* Slide it into view */
  opacity: 1; /* Make it fully visible */
  visibility: visible; /* Make it accessible and interactive */
}



.pulse-button {
  padding: 10px 21px;
  background-color: #0fae93;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  position: relative; /* Needed for pseudo-elements if used for border */
  overflow: hidden; /* Important for containing expanding shadows/borders */

  /* Apply the animation */
  animation: pulseBorder 2s infinite alternate; /* 'alternate' makes it smooth */
}

@keyframes pulseBorder {
  0% {
    box-shadow: 0 0 0 0 #05a387; /* Initial state: no shadow */
  }
  50% {
    box-shadow: 0 0 0 15px rgba(0, 123, 255, 0); /* Expanded, fading shadow */
  }
  100% {
    box-shadow: 0 0 0 0 #05a387; /* Return to initial state */
  }
}



.float:hover {
  background-color: #2EE59D;
  box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
  color: #fff;
  transform: translateY(-7px);
}

.my-float{
	margin-top:16px;
}

.floattel{
	position:fixed;
	width:60px;
	height:60px;
	bottom:5px;
	right:90px;
	background-color:#32bcce;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-floattel{
	margin-top:16px;
}

.floattel:hover {
  background-color: #32bcce;
  box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
  color: #fff;
  transform: translateY(-7px);
}


.floatte2{
	display:none;
}

@media only screen and (max-width: 1023px) {
 
 .floatte2{
	 display:block;
	 position:fixed;
	 width:60px;
	 height:60px;
	 bottom:5px;
	 /* right: 158px; */
	 background-color: #007bff;
	 color:#FFF;
	 border-radius: 0 5px 5px 0;
	 text-align:center;
	 font-size:30px;
	 /* box-shadow: 2px 2px 3px #999; */
	 z-index:100;
}

.my-floatte2{
	margin-top:16px;
}
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:5px;
	right: 0px;
	background-color:#25d366;
	color:#FFF;
	border-radius: 5px 0 0 5px;
	text-align:center;
	font-size:30px;
	box-shadow: 2px 2px 3px #999;
	z-index:100;
	animation: btn-pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
}


@keyframes btn-pulse {
    0% {
        box-shadow: 2px 3px 7px transparent;
    }
    20% {
        box-shadow: 2px 3px 7px #25d366;        
    }
    100% {
        box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);
    }  
}


/* ============================================= */
/* CSS for the Animated Border Button            */
/* ============================================= */

/* 1. The Main Button Styles */
.animated-border-button {
    /* Positioning and Layout */
    position: relative; /* Essential for the animation effect */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Space between icon and text */
    
    /* Sizing and Appearance - This will override .btn-primary styles */
    padding: 18px 36px;
    border: none; /* Remove any default borders */
    border-radius: 50px; /* The pill shape */
    background: #000; /* The black background */
    color: white !important; /* Text and icon color */
    
    /* Font and Text */
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    
    /* This is crucial for the border effect */
    overflow: hidden; 
}

/* 2. The Rotating Border (The Magic) */
.animated-border-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 300%; /* Taller than wide to cover the pill shape ends */
    z-index: 1;

    /* A conic gradient creates the two white segments */
    background: conic-gradient(
        from 0deg,
        transparent 0deg 90deg,
        white 90deg 110deg, /* First white segment */
        transparent 110deg 270deg,
        white 270deg 290deg, /* Second white segment */
        transparent 290deg 360deg
    );

    /* The Animation */
    animation: rotateBorder 4s linear infinite;
}

/* 3. A "mask" to create the border thickness */
.animated-border-button::after {
    content: '';
    position: absolute;
    inset: 3px; /* This creates the border thickness */
    background: #000; /* Must match the button's background */
    border-radius: 50px;
    z-index: 2;
}

/* 4. The Content (Icon and Text) needs to be on top */
/* The > * selector targets the <i> icon and the text inside the button */
.animated-border-button > * {
    position: relative; /* Bring content above the pseudo-elements */
    z-index: 3;
}

/* 5. The Keyframe Animation for the rotation */
@keyframes rotateBorder {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}