/* Global Styles */
        :root {
            --primary-blue: #0066cc;
            --dark-blue: #004d99;
            --light-blue: #e6f2ff;
            --white: #ffffff;
            --light-gray: #f5f5f5;
            --medium-gray: #e0e0e0;
            --dark-gray: #333333;
            --text-gray: #666666;
              --transition-time: 0.4s;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
              transition: background-color var(--transition-time) ease, 
              color var(--transition-time) ease,
              transform calc(var(--transition-time) * 0.8) ease;
        }
        
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Account for fixed header */
}
        html, body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
        body {
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--white);
            user-select: none;
            padding-top: 70px; /* For fixed header */
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 60px 0;
        }
        
        h1, h2, h3, h4 {
            margin-bottom: 20px;
            color: var(--dark-gray);
        }
        
        h1 {
            font-size: 2.2rem;
            font-weight: 700;
        }
        
        h2 {
            font-size: 1.8rem;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-blue);
        }
        
        p {
            margin-bottom: 15px;
            color: var(--text-gray);
            font-size: 1rem;
        }
        
        .cta {
  position: relative;
  margin: auto;
  padding: 11.5px 18px;
  transition: all 0.2s ease;
  border: 3px solid #8ff4ffc6;
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  right:0;
  display: block;
  border-radius: 9px;
  background: rgb(61, 103, 255);
  width: 40px;
  height: 45px;
  transition: all 0.6s ease;
}

.cta span {
  position: relative;
  font-family: Montserrat;
  font-size: 18px;
  color: white;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.cta svg {
  position: relative;
  top: 3px;
  margin-left: 0;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: rgb(255, 255, 255);
  stroke-width: 2;
  transform: translateX(6px);
  transition: all 0.5s ease;
}

.cta:hover:before {
  width: 100%;
  background: #1971dc;
}

.cta:hover svg {
  color: #fff;
  transform: translateX(-8px);
  transition: all 2s ease;
}

.cta:active {
  transform: scale(0.95);
  transition: all 2s ease;
}
        
/* Header Styles with Animation */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 10px 0;
            transition: all 0.3s ease;
        }
        
        .header-scrolled {
            padding: 5px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            text-decoration: none;
            transition: transform 0.3s ease;
        }
        
        .logo:hover {
            transform: scale(1.05);
        }
        
        .logo img {
            height: 55px;
            margin-right: 10px;
            transition: transform 0.3s ease;
        }
        
        .logo:hover img {
            transform: rotate(5deg);
        }
        
        .logo span {
            color: #017EA0;
        }
        
        /* Contact Info in Header */
        .header-contact {
            display: flex;
            gap: 15px;
        }
        
        .header-contact a {
            color: var(--dark-gray);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            transform-origin: center;
        }
        
        .header-contact a:hover {
            color: var(--primary-blue);
            transform: scale(1.05);
        }
        
        .header-contact i {
            font-size: 1rem;
            transition: transform 0.3s ease;
        }
        
        .header-contact a:hover i {
            transform: rotate(15deg);
        }
        
        /* Animated Website Button */
        .button {
            position: relative;
            background: rgb(51, 51, 253);
            color: #fff;
            width: 12em;
            height: 3.890em;
            border: #2f4cf1 0.3em solid;
            border-radius: 33px;
            text-align: right;
            transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            overflow: hidden;
        }

        .button:hover {
            background-color: #2a3a6b;
            cursor: pointer;
            border-radius: 9px;
        }

        .button svg {
            width: 1.6em;
            margin: -0.2em 0.8em 1em;
            position: absolute;
            display: flex;
            transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .button:hover svg {
            transform: translateX(5px);
        }

        .tex {
            color: white;
            text-decoration: none;
            margin: 0 1.5em;
            transition: all 0.3s ease;
        }
        
        /* Hero Section with Animation */
        .hero {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: var(--white);
            padding: 100px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            animation: pulse 15s infinite linear;
            z-index: 0;
        }
        
        .hero .container {
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 2.5rem;
            animation: fadeInUp 0.8s ease both;
        }
        
        .hero p {
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
            animation: fadeInUp 0.8s ease 0.2s both;
        }
        
        .hero .cta {
            animation: fadeInUp 0.8s ease 0.4s both;
        }
        
/* About Section with Animation */
        .about {
            background-color: var(--light-gray);
        }
        
        .about-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-top: 30px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            width: 63%;
            align-self: center;
            border-radius: 9px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(0deg);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        
        .about-image:hover {
            transform: perspective(1000px) rotateY(5deg);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
                /* Features Section with Animation */
        .features {
            background-color: var(--white);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .feature-card {
            background-color: var(--white);
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            text-align: center;
            border-top: 4px solid var(--primary-blue);
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }
        .feature-card:nth-child(5) { animation-delay: 0.5s; }
        .feature-card:nth-child(6) { animation-delay: 0.6s; }
        .feature-card:nth-child(7) { animation-delay: 0.7s; }
        
        .feature-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 2.2rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
            transition: transform 0.3s ease, color 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.2) rotate(5deg);
            color: var(--dark-blue);
        }
        
        .feature-card h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }
        
        .feature-card:hover h3 {
            color: var(--primary-blue);
        }
        
        .feature-card p {
            font-size: 0.95rem;
        }
        
        /* Contact Section */
        .contact {
            background-color: var(--light-gray);
        }
        
        .contact-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-top: 30px;
        }
        
        .contact-form {
            flex: 1;
            background-color: var(--white);
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        /* Replace the existing floating input styles with these new styles */
.inputGroup {
  font-family: 'Segoe UI', sans-serif;
  margin: 1em 0 1em 0;
  position: relative;
  padding-top: 15px;
  width: 100%;
}

.inputGroup input,
.inputGroup textarea {
  font-size: 100%;
  padding: 0.8em;
  outline: none;
  border: 2px solid rgb(200, 200, 200);
  background-color: transparent;
  border-radius: 20px;
  width: 100%;
  transition: all 0.3s ease;
}

.inputGroup textarea {
  min-height: 100px;
  resize: vertical;
}

.inputGroup label {
  font-size: 100%;
  position: absolute;
  left: 0;
  padding: 0.8em;
  border-radius: 11px;
  margin-left: 0.5em;
  pointer-events: none;
  transition: all 0.3s ease;
  color: rgb(100, 100, 100);
}

.inputGroup :is(input:focus, input:valid, textarea:focus, textarea:valid)~label {
  transform: translateY(-50%) scale(.9);
  margin: 0em;
  margin-left: 1.3em;
  color: rgb(0, 0, 0, 0.7);
  padding: 0.4em;
  background-color: #e8e8e8;
}

.inputGroup :is(input:focus, input:valid, textarea:focus, textarea:valid) {
  border-color: var(--primary-blue);
}

/* Textarea specific adjustments */
.inputGroup textarea {
  padding-top: 1.2em;
}

.inputGroup textarea:focus ~ label,
.inputGroup textarea:valid ~ label {
  transform: translateY(-60%) scale(.9);
}
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info h3 {
            margin-bottom: 15px;
            color: var(--primary-blue);
            font-size: 1.3rem;
        }
        
        .contact-details {
            margin-bottom: 25px;
        }
        
        .contact-details p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            font-size: 0.95rem;
        }
        
        .contact-details i {
            margin-right: 10px;
            color: var(--primary-blue);
            font-size: 1rem;
        }
        
/* Enhanced Map Section */
.map-section {
  padding: 35px 0;
  background-color: var(--light-gray);
}

.map-container-wrapper {
  position: relative;
  max-width: 1350px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-container-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.map-container {
  position: relative;
  height: 500px;
  width: 100%;
  border: none;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  padding: 30px;
  color: white;
  z-index: 10;
}

.map-address {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.map-address i {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--primary-blue);
}

.map-address-text h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: white;
}

.map-address-text p {
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.map-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  gap: 10px;
}

.map-control-btn {
  background: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.map-control-btn:hover {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .map-container {
    height: 400px;
  }
  
  .map-overlay {
    padding: 20px;
  }
  
  .map-address i {
    font-size: 1.2rem;
    margin-right: 10px;
  }
  
  .map-address-text h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .map-container {
    height: 300px;
  }
  
  .map-overlay {
    padding: 15px;
  }
  
  .map-controls {
    top: 10px;
    right: 10px;
  }
  
  .map-control-btn {
    width: 35px;
    height: 35px;
  }
}

        
/* Modern Footer Styles */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-info {
    flex: 1;
    min-width: 300px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 90px;
    width: auto;
}

.footer-titles {
    display: flex;
    flex-direction: column;
}

.footer-company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-description {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    max-width: 500px;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 200px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.CartBtn {
  width: 175px;
  height: 45px;
  border-radius: 12px;
  border: none;
  background-color: rgb(0, 76, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 0.5s;
  overflow: hidden;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.103);
  position: relative;
}

.IconContainer {
  position: absolute;
  left: -50px;
  width: 20px;
  height: 30px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition-duration: 0.5s;
}

.IconContainer i {
  font-size: 17px;
  color: white;
  transition-duration: 0.5s;
  }

.text {
  height: 100%;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  z-index: 1;
  transition-duration: 0.5s;
  font-size: 1.04em;
  font-weight: 800;
}

.CartBtn:hover .IconContainer {
  transform: translateX(70px);
  border-radius: 40px;
  transition-duration: 0.5s;
}

.CartBtn:hover .text {
  transform: translate(10px, 0px);
  transition-duration: 0.5s;
}

.CartBtn:active {
  transform: scale(0.95);
  transition-duration: 0.5s;
}

.Contact-us-btn {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  width: 175px;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--clr);
  color: #fff;
  border-radius: 12px;
  font-weight: 800;
  padding: 0.60rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.Contact-us-btn__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--clr);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.Contact-us-btn:hover {
  background-color: var(--primary-blue);
  color: #FFFFFF;
}

.Contact-us-btn:hover .Contact-us-btn__icon-wrapper {
  color: #000;
  background-color: #fff;
}

.Contact-us-btn__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.Contact-us-btn:hover .Contact-us-btn__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.Contact-us-btn:hover .Contact-us-btn__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}



.footer-social-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Social Media Card Styles */
.card {
    width: fit-content;
    height: fit-content;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    gap: 20px;
}

.socialContainer {
    width: 52px;
    height: 52px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition-duration: 0.3s;
    border-radius: 30px;
}
/* Instagram */
.containerOne:hover {
  background: linear-gradient(
    55deg,#405de6,#5b51db, #b33ab4, #c135b4, #e1306c,#fd1f1f);
    transition-duration: 0.3s;
    transform: scale(1.2);
}

/* Facebook */
.containerTwo:hover {
    background-color: #1877F2;
    transition-duration: 0.3s;
    transform: scale(1.2);
}

/* LinkedIn */
.containerThree:hover {
    background-color: #0077B5;
    transition-duration: 0.3s;
    transform: scale(1.2);
}

/* WhatsApp */
.containerFour:hover {
    background-color: #25D366;
    transition-duration: 0.3s;
    transform: scale(1.2);
}

.socialContainer:active {
    transform: scale(0.9);
    transition-duration: 0.3s;
}

.socialSvg {
    width: 17px;
}

.socialSvg path {
    fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
    animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.footer-legal {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-contact {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-blue);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-actions {
        width: 100%;
    }
    
    .footer-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 10px;
    }
    
    .card {
        gap: 15px;
    }
    
    .socialContainer {
        width: 45px;
        height: 45px;
    }
}
.Credits {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-top: 15px;
}
 .Design {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-top: 15px;
}      
.Design span {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}
.Design span:hover {
  color: #f7f7f7;
  text-decoration: underline;
}
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .header-contact {
                display: none; /* Hide contact info in header on tablets */
            }
        }
        
        @media (max-width: 768px) {
            body {
                padding-top: 60px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.6rem;
            }
            
            .hero {
                padding: 80px 0 50px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .logo {
                font-size: 1.3rem;
            }
            
            .logo img {
                height: 40px;
            }
            
            .feature-card {
                padding: 20px;
            }
        }
        
        @media (max-width: 480px) {
            section {
                padding: 40px 0;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.4rem;
            }
            
            .btn {
                padding: 10px 25px;
                font-size: 0.9rem;
            }
            
            .feature-card {
                padding: 15px;
            }
            
            .feature-icon {
                font-size: 2rem;
            }
        }
                /* Keyframe Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: rotate(0deg) scale(1);
            }
            50% {
                transform: rotate(180deg) scale(1.2);
            }
            100% {
                transform: rotate(360deg) scale(1);
            }
        }
        /* Map & CTA Section */
.map-cta-section {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  border: 1px solid rgba(0, 240, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.button {
  position: relative;
  background: rgb(51, 51, 253);
  color: #fff;
  width: 12em;
  height: 3.890em;
  border: #2f4cf1 0.3em solid;
  border-radius: 33px;
  text-align: right;
  transition: all 0.6s ease;
}

.button:hover {
  background-color: #2a3a6b;
  cursor: pointer;
  border-radius: 9px;
}

.button svg {
  width: 1.6em;
  margin: -0.2em 0.8em 1em;
  position: absolute;
  display: flex;
  transition: all 0.6s ease;
}

.button:hover svg {
  transform: translateX(5px);
}

.text {
  color: white;
  text-decoration: none;
  margin: 0 1.5em
}
.text:hover {
  color: white;
}
.continue-application {
  --color: #fff;
  --background: #404660;
  --background-hover: #3A4059;
  --background-left: #2B3044;
  --folder: #F3E9CB;
  --folder-inner: #BEB393;
  --paper: #FFFFFF;
  --paper-lines: #BBC1E1;
  --paper-behind: #E1E6F9;
  --pencil-cap: #fff;
  --pencil-top: #275EFE;
  --pencil-middle: #fff;
  --pencil-bottom: #5C86FF;
  --shadow: rgba(13, 15, 25, .2);
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  padding: 17px 29px 17px 69px;
  transition: background 0.3s;
  color: var(--color);
  background: var(--bg, var(--background));
}

.continue-application > div {
  top: 0;
  left: 0;
  bottom: 0;
  width: 53px;
  position: absolute;
  overflow: hidden;
  border-radius: 5px 0 0 5px;
  background: var(--background-left);
}

.continue-application > div .folder {
  width: 23px;
  height: 27px;
  position: absolute;
  left: 15px;
  top: 13px;
}

.continue-application > div .folder .top {
  left: 0;
  top: 0;
  z-index: 2;
  position: absolute;
  transform: translateX(var(--fx, 0));
  transition: transform 0.4s ease var(--fd, 0.3s);
}

.continue-application > div .folder .top svg {
  width: 24px;
  height: 27px;
  display: block;
  fill: var(--folder);
  transform-origin: 0 50%;
  transition: transform 0.3s ease var(--fds, 0.45s);
  transform: perspective(120px) rotateY(var(--fr, 0deg));
}

.continue-application > div .folder:before, .continue-application > div .folder:after,
.continue-application > div .folder .paper {
  content: "";
  position: absolute;
  left: var(--l, 0);
  top: var(--t, 0);
  width: var(--w, 100%);
  height: var(--h, 100%);
  border-radius: 1px;
  background: var(--b, var(--folder-inner));
}

.continue-application > div .folder:before {
  box-shadow: 0 1.5px 3px var(--shadow), 0 2.5px 5px var(--shadow), 0 3.5px 7px var(--shadow);
  transform: translateX(var(--fx, 0));
  transition: transform 0.4s ease var(--fd, 0.3s);
}

.continue-application > div .folder:after,
.continue-application > div .folder .paper {
  --l: 1px;
  --t: 1px;
  --w: 21px;
  --h: 25px;
  --b: var(--paper-behind);
}

.continue-application > div .folder:after {
  transform: translate(var(--pbx, 0), var(--pby, 0));
  transition: transform 0.4s ease var(--pbd, 0s);
}

.continue-application > div .folder .paper {
  z-index: 1;
  --b: var(--paper);
}

.continue-application > div .folder .paper:before, .continue-application > div .folder .paper:after {
  content: "";
  width: var(--wp, 14px);
  height: 2px;
  border-radius: 1px;
  transform: scaleY(0.5);
  left: 3px;
  top: var(--tp, 3px);
  position: absolute;
  background: var(--paper-lines);
  box-shadow: 0 12px 0 0 var(--paper-lines), 0 24px 0 0 var(--paper-lines);
}

.continue-application > div .folder .paper:after {
  --tp: 6px;
  --wp: 10px;
}

.continue-application > div .pencil {
  height: 2px;
  width: 3px;
  border-radius: 1px 1px 0 0;
  top: 8px;
  left: 105%;
  position: absolute;
  z-index: 3;
  transform-origin: 50% 19px;
  background: var(--pencil-cap);
  transform: translateX(var(--pex, 0)) rotate(35deg);
  transition: transform 0.4s ease var(--pbd, 0s);
}

.continue-application > div .pencil:before, .continue-application > div .pencil:after {
  content: "";
  position: absolute;
  display: block;
  background: var(--b, linear-gradient(var(--pencil-top) 55%, var(--pencil-middle) 55.1%, var(--pencil-middle) 60%, var(--pencil-bottom) 60.1%));
  width: var(--w, 5px);
  height: var(--h, 20px);
  border-radius: var(--br, 2px 2px 0 0);
  top: var(--t, 2px);
  left: var(--l, -1px);
}

.continue-application > div .pencil:before {
  -webkit-clip-path: polygon(0 5%, 5px 5%, 5px 17px, 50% 20px, 0 17px);
  clip-path: polygon(0 5%, 5px 5%, 5px 17px, 50% 20px, 0 17px);
}

.continue-application > div .pencil:after {
  --b: none;
  --w: 3px;
  --h: 6px;
  --br: 0 2px 1px 0;
  --t: 3px;
  --l: 3px;
  border-top: 1px solid var(--pencil-top);
  border-right: 1px solid var(--pencil-top);
}

.continue-application:before, .continue-application:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  border-radius: 1px;
  background: var(--color);
  transform-origin: 9px 1px;
  transform: translateX(var(--cx, 0)) scale(0.5) rotate(var(--r, -45deg));
  top: 26px;
  right: 16px;
  transition: transform 0.3s;
}

.continue-application:after {
  --r: 45deg;
}

.continue-application:hover {
  --cx: 2px;
  --bg: var(--background-hover);
  --fx: -40px;
  --fr: -60deg;
  --fd: .15s;
  --fds: 0s;
  --pbx: 3px;
  --pby: -3px;
  --pbd: .15s;
  --pex: -24px;
}
