/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Poppins:wght@500;700&display=swap');

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: none;
    z-index: 999;
    border: none;
    outline: none;
    background-color: #ffcc00;
    color: #212529;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.3s;
}

#backToTop:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

/* Navbar Styling */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right, #1a237e, #283593); /* Dark blue gradient */
    padding: 0 15px; /* Adjust padding to avoid increasing height */
    transition: all 0.3s ease;
    position: fixed; /* Fix the navbar at the top */
    top: 0; /* Stick to the top of the viewport */
    left: 0; /* Stick to the left edge */
    width: 100%; /* Stretch the navbar to full width */
    z-index: 1000; /* Ensure it stays above other elements */
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center content vertically */
}

.navbar-brand img {
    max-height: 70px; /* Ensure the logo fits within the navbar */
    width: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Space between logo and text */
}

.navbar-nav {
    margin-left: auto; /* Push the navigation links to the right */
    display: flex; /* Ensure proper alignment */
    align-items: center;
}

.nav-item .nav-link {
    color: white; /* White text color for links */
    font-size: 16px; /* Adjust font size */
    text-transform: uppercase; /* Optional: Make links uppercase */
    margin: 0 10px; /* Space between links */
    transition: color 0.3s ease;
}

.nav-item .nav-link:hover {
    color: #ffeb3b; /* Highlight link on hover */
}

.navbar-toggler {
    border: none; /* Remove border around toggler */
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
}

.navbar-brand {
    color: #ffffff !important;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffcc00;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #ffcc00 !important;
}






/* Hero Section */
.hero-section {
    background: url('./images/industry.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 250px 20px;
    position: relative;
    margin-bottom: 100px;
    overflow: hidden;
}



.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    animation: slideUp 1.5s ease-out forwards;
    opacity: 0; /* Initially hidden */
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    animation: slideUp 2s ease-out forwards;
    opacity: 0; /* Initially hidden */
    animation-delay: 0.5s; /* Start after the header animation */
}

.btn-warning {
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    background-color: #ffcc00;
    border: none;
    color: #212529;
    border-radius: 25px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-warning:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    animation-delay: 1s;
}

/* Animation Keyframes */
@keyframes slideUp {
    0% {
        transform: translateY(100px); /* Start below the viewport */
        opacity: 0;
    }
    100% {
        transform: translateY(0); /* End at the original position */
        opacity: 1;
    }
}


/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1d6a4b;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #ffcc00;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.about-section {
    background: url('./images/thought.jpg') no-repeat center center/cover;
    position: relative;
    color: #fff;
    padding: 100px 20px;
    margin-top: 50px;
    border-radius: 20px; /* Curved edges */
    overflow: hidden; /* Ensures content respects the border radius */
    scroll-margin-top: 100px; /* Offset to account for fixed navbar height */
}


.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay for better text readability */
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-section h2,
.about-section h3,
.about-section p {
    color: #fff; /* Ensure text is visible against the background */
}












/* Services Section Styling */
.services-section {
    background: linear-gradient(135deg, #ffffff, #f3f4f6);
    padding: 80px 0;
    color: #333;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    color: #444;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Services Grid Layout */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    padding: 20px;
}

/* Service Circle Styling */
.service-circle {
    position: relative;
    width: 200px;
    height: 200px;
    background: #ffffff;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0; /* Initially hidden */
    transform: translateY(-300px); /* Start off-screen */
    animation-fill-mode: forwards; /* Ensures final animation state is applied */
    transform-origin: bottom center;
}

/* Keyframes for bounce and fall animation */
@keyframes bounce-fall {
    0% {
        transform: translateY(-300px);
        opacity: 0;
    }
    30% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-50px);
    }
    70% {
        transform: translateY(0);
    }
    85% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
        opacity: 1; /* Ensure visibility stays */
    }
}

/* Individual Animation Delays */
.service-circle:nth-child(1) {
    animation: bounce-fall 2s ease-out 0.2s forwards;
}

.service-circle:nth-child(2) {
    animation: bounce-fall 2s ease-out 0.4s forwards;
}

.service-circle:nth-child(3) {
    animation: bounce-fall 2s ease-out 0.6s forwards;
}

.service-circle:nth-child(4) {
    animation: bounce-fall 2s ease-out 0.8s forwards;
}

.service-circle:nth-child(5) {
    animation: bounce-fall 2s ease-out 1s forwards;
}

.service-circle:nth-child(6) {
    animation: bounce-fall 2s ease-out 1.2s forwards;
}

/* Hover Effects */
.service-circle:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

/* Circle Content */
.circle-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 10px;
}

.circle-content img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.circle-content h5 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

/* Hover Overlay */
.circle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.8);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding: 15px;
    transform: translateY(0);
}

.service-circle:hover .circle-overlay {
    opacity: 1;
}

.circle-overlay p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-circle {
        width: 160px;
        height: 160px;
    }

    .circle-content img {
        width: 60px;
        height: 60px;
    }

    .circle-content h5 {
        font-size: 1rem;
    }

    .circle-overlay p {
        font-size: 0.8rem;
    }
}











  
  
  





  

/* Why Choose Us Section */
.why-choose-section {
    background: url('images/ai-generated-8605075.jpg') no-repeat center center/cover;
    padding: 60px 0;
    border-radius: 20px; /* Curved edges */
    overflow: hidden; /* Ensures content respects the border radius */
    margin-bottom: 40px; /* Adds space below the section */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d3c6a;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #ffcc00;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Flip Card Container */
.choose-card {
    perspective: 1000px; /* Enables 3D flipping */
    position: relative;
    width: 100%;
    height: 300px; /* Fixed height for the card */
}

/* Card Inner */
.choose-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out; /* Smooth flipping animation */
}

/* Flip on hover */
.choose-card:hover .choose-card-inner {
    transform: rotateY(180deg); /* Flip the card */
}

/* Front Side */
.choose-card-front,
.choose-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* Hide back when facing front */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Front Side */
.choose-card-front {
    background-color: #ffffff; /* White background */
    z-index: 2; /* Keep it above the back initially */
    transform: rotateY(0deg);
}

.choose-card-front img {
    width: 80%;
    height: 150px;
    object-fit: cover; /* Ensure the image fits the container */
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Back Side */
.choose-card-back {
    background: linear-gradient(135deg, #1d3c6a, #1da1f2); /* Gradient background */
    color: #fff; /* White text */
    transform: rotateY(180deg); /* Position for the back side */
}

.choose-card-back img {
    width: 80%;
    height: 150px;
    object-fit: cover; /* Ensure the image fits the container */
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Text on Back */
.choose-card-back h5 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4); /* Text shadow for attraction */
}

.choose-card-back p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.5;
}

/* Responsiveness */
@media (max-width: 768px) {
    .choose-card {
        height: 250px; /* Reduce height for smaller screens */
    }

    .choose-card-front img,
    .choose-card-back img {
        height: 120px; /* Adjust image height */
    }
}



/* Our Values Section */
.values-section {
    background: url('images/chess.jpg') no-repeat center center/cover;
    padding: 60px 0;
    border-radius: 20px; /* Curved edges */
    overflow: hidden; /* Ensures content respects the border radius */
}

.values-section .value-card {
    background: rgba(255, 255, 255, 0.9); /* Slight transparency for overlay effect */
    border: 1px solid #d1e7ff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.values-section .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.values-section .value-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.values-section h5 {
    font-size: 1.25rem;
    color: #1d3c6a;
    margin-bottom: 10px;
    font-weight: 600;
}

.values-section p {
    font-size: 0.95rem;
    color: #555555;
    flex-grow: 1;
}



/* Portfolio Section */
.portfolio-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}
section {
    margin-bottom: 100px; /* Add spacing between sections */
    scroll-margin-top: 80px; /* Ensure sections align with fixed navbar */
}


.portfolio-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 126, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

.tech-stack {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.tech-stack span {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h4 {
    color: #1a237e;
    margin-bottom: 15px;
    font-weight: 600;
}

.project-details ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.project-details ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #6c757d;
}

.project-details ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a237e;
}

.project-results {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.project-results span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a237e;
    font-weight: 500;
}

.project-results i {
    color: #ffcc00;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .portfolio-img {
        height: 200px;
    }

    .portfolio-info {
        padding: 20px;
    }

    .project-results {
        flex-direction: column;
        gap: 15px;
    }
}
/* Contact Us Section Container */

/* Contact Us Section Styling */
.contact-us-section {
    margin-top: 50px;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
}
section {
    margin-bottom: 50px;
}

/* Contact Us Header */
.contact-us-section h2 {
    font-size: 2rem; /* Adjust the size of the header */
    color: #1a237e; /* Keep the header color */
    margin-bottom: 10px; /* Add spacing below the header */
}

/* Description Text Below Header */
.contact-us-section p {
    font-size: 1.1rem; /* Adjust font size */
    color: #555; /* Softer text color */
    margin-bottom: 20px; /* Add space below the description */
}

.contact-us {
    display: flex;
    justify-content: space-evenly; /* Distribute items evenly */
    align-items: stretch; /* Make all cards the same height */
    flex-wrap: wrap; /* Wrap to the next line if needed */
    max-width: 1200px; /* Limit the width of the container */
    margin: 0 auto; /* Center the container */
    gap: 20px; /* Add space between items */
}



/* Individual Contact Cards */
.contact-card {
    flex: 1 1 calc(25% - 20px); /* Make each card take up 25% of the row */
    text-align: center; /* Center the content */
    padding: 15px;
    border-radius: 10px;
    background: #f9f9f9; /* Optional background for the cards */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    min-width: 200px; /* Ensure a minimum width for smaller screens */
    max-width: 280px; /* Set a maximum width for each card */
    height: 200px; /* Set a fixed height for all cards */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
}

/* Icons */
.contact-card i {
    font-size: 2rem; /* Adjust icon size */
    color: #1a237e; /* Icon color */
    margin-bottom: 10px; /* Space below the icon */
}

/* Headings */
.contact-card h4 {
    font-size: 1.2rem; /* Adjust heading size */
    margin-bottom: 10px;
    color: #1a237e; /* Heading color */
}

/* Paragraphs */
.contact-card p {
    font-size: 1rem; /* Adjust text size */
    color: #555; /* Text color */
    margin: 5px 0;
    line-height: 1.5; /* Improve readability */
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .contact-card {
        flex: 1 1 calc(50% - 20px); /* Show 2 cards per row */
        height: auto; /* Let height adjust naturally on smaller screens */
    }
}

@media (max-width: 480px) {
    .contact-card {
        flex: 1 1 100%; /* Show 1 card per row */
        height: auto; /* Let height adjust naturally */
    }
}


/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .contact-card {
        flex: 1 1 calc(50% - 20px); /* Show 2 cards per row */
    }
}

@media (max-width: 480px) {
    .contact-card {
        flex: 1 1 100%; /* Show 1 card per row */
    }
}


/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .contact-card {
        flex: 1 1 calc(50% - 20px); /* 2 cards per row on small screens */
    }
}

@media (max-width: 480px) {
    .contact-card {
        flex: 1 1 100%; /* 1 card per row on very small screens */
    }
}


.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a237e, #283593);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-wrapper i {
    color: #ffffff;
    font-size: 1.5rem;
}

.contact-info-card h5 {
    color: #1a237e;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-card p {
    color: #6c757d;
    margin-bottom: 0;
}

.contact-info-card a {
    color: #1a237e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #ffcc00;
}

/* Social Media Section */

.social-media-section h5 {
    color: #1a237e; /* Example color */
    font-size: 1.5rem; /* Adjust size as needed */
    font-weight: bold;
    margin-bottom: 10px;
}

.social-media-section {
    margin-top: 3rem;
    padding-top: 2rem;
    margin-bottom: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}


.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1a237e, #283593);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #283593, #1a237e);
    color: #ffcc00;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-info-wrapper {
        padding: 2rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-info-wrapper {
        padding: 1.5rem;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Footer Styling */
/* Footer Section Styling */
.footer-section {
    background: linear-gradient(to right, #1a237e, #283593); /* Match header gradient */
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

.footer-section .footer-links a {
    color: #ffcc00;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-section .footer-links a:hover {
    color: #e6b800;
}


/* Animations */
@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-rise {
    animation: rise 1s ease-out forwards;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-section {
        padding: 120px 20px;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 20px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .navbar-nav .nav-link {
        margin: 0 0.3rem;
        font-size: 0.95rem;
    }

    .contact-section .contact-form {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 80px 20px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }

    .contact-section .contact-form {
        padding: 15px;
    }

    #backToTop {
        bottom: 20px;
        right: 20px;
    }
}

/* Contact Us Shortcut Button */
/* Vertical Contact Us Button */
.contact-shortcut {
    position: fixed;
    right: 0;
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for perfect centering */
    writing-mode: vertical-rl; /* Make the text vertical */
    background-color: #1d3c6a; /* Button background color */
    color: #ffffff; /* Text color */
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 10px 0 0 10px; /* Rounded edges on the left side */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    z-index: 1000; /* Ensure it appears above other elements */
    transition: background-color 0.3s, transform 0.3s;
}

.contact-shortcut:hover {
    background-color: #ffcc00; /* Highlight color */
    color: #1d3c6a; /* Text color on hover */
    transform: translateY(-50%) scale(1.05); /* Slightly enlarge on hover */
}

