:root {
    --primary-color: #0056b3;
    --secondary-color: #00a86b;
    --text-color: #333;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
}



/* Header and Navigation */

/* Original navbar styles remain the same */
.navbar {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease; /* Changed from background-color to all */
    top: 0; /* Added initial position */
}

/* New class for scrolled state */
.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    top: -70px; /* Hides navbar by moving up */
    transition: all 0.3s ease;
}

/* Class to show navbar when scrolling down */
.navbar-show {
    top: 0;
}


/* Navigation Container */
.navbar-container {
    display: flex;
    justify-content: space-between; /* This ensures proper spacing */
    align-items: center;
    padding: 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    margin-right: auto; /* Pushes everything else to the right */
    z-index: 1001; /* Ensure it stays above other elements */
    /* Rest of your existing logo styles remain */
}


.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    margin-left: auto; /* This pushes the menu to the right */
}

.nav-menu li {
    position: relative;
    margin: 0 0.5rem;
}

/* Dropdown Menu - Position to the right */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0; /* Changed from left: 0 to right: 0 */
    top: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    min-width: 600px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 1rem;
    z-index: 1000;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}


.dropdown:hover .dropdown-content {
    display: grid;
}

.dropdown-column {
    padding: 0.5rem;
}

.dropdown-column h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.dropdown-column a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown-column a:hover {
    color: var(--primary-color);
}



.logo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    font-weight: 1000;
    text-decoration: none;
    display: inline-block;
    font-style: italic;
    background: transparent;
    letter-spacing: 2px;
}

.logo span {
    display: inline-block;
    transition: color 0.6s ease;
    position: relative;
}

.logo span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: currentColor;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover span::after {
    transform: scaleX(1);
}

@keyframes colorCycle {
    0%, 100% { color: #1a5f7a; }
    33% { color: #557153; }
    66% { color: #7a4069; }
}

.logo span:nth-child(1) {
    animation: colorCycle 8s infinite;
}

.logo span:nth-child(2) {
    animation: colorCycle 8s infinite 0.7s;
}

.logo span:nth-child(3) {
    animation: colorCycle 8s infinite 1.4s;
}

.logo:hover span {
    animation-play-state: paused;
    color: #2c3e50;
}


.nav-menu {
    display: flex;
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.navbar-toggle {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#vanta-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    color: #c7c9cc;;
    z-index: 1;
}

.hero h1 {
    color: #ffffff;
    font-size: 4rem;

}
.hero h2 {
    color: #c7a23d;
    font-size: 1.5rem;

}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #008c5a;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--white);
}

.about h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-item {
    text-align: center;
}

.about-item img {
    width: 80px;
    margin-bottom: 1rem;
}
.about-item i {
    font-size: 48px;
    color: #007bff; /* Change this to match your color scheme */
    margin-bottom: 15px;
}


.about-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: #f0f4f8;
   
}

.services h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    perspective: 1000px;
    
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front, .service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.service-card-front {
    background-color: var(--white);
}

.service-card-back {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    margin: 1rem 0;
}

.service-category {
    margin-bottom: 8rem;
}

.service-category h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}


/* Sub-service page styles */
.sub-service-page {
    padding-top: 60px; /* Adjust based on your header height */
    
}

.service-hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    
}

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}


.service-content {
    padding: 4rem 0;
    
}



.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-details h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-details p {
    margin-bottom: 1.5rem;
}
/* Service Page Enhancements */
.service-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.2);
    transition: transform 0.3s ease;
}

.service-img:hover {
    transform: scale(1.02);
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features {
    margin-top: 1rem;
    list-style: none;
}

.service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

.service-hero {
    background: linear-gradient(135deg, #0056b3 0%, #003366 100%);
    padding: 6rem 0 4rem;
    text-align: center;
     
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}
 .cta-section {
            background-color: #f0f4f8;
            padding: 4rem 0;
            text-align: center;
            font-size: 1.2rem;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

/* Responsive adjustments */

    .service-hero h1 {
        font-size: 3rem;
    }
    
    .service-hero p {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h2 {
        font-size: 1.25rem;
    }



/* Technologies Section */
.technologies-section {
    padding: 1rem 0;
    background-color: #f8f9fa;
     margin-bottom: 3rem;
}

.section-title {
    text-align: center;
    
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tech-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tech-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}






.flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.flip-card-front {
    background-color: var(--white);
    color: var(--text-color);
}

.flip-card-back {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.flip-card-front img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.flip-card-front h4 {
    font-size: 1.2rem;
}

.flip-card-back p {
    margin-bottom: 1rem;
}

.learn-more {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.learn-more:hover {
    background-color: #008c5a;
}





.learn-more {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.learn-more:hover {
    background-color: #008c5a;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--white);
}

.contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info ul {
    list-style: none;
    margin-top: 1rem;
}

.contact-info li {
    margin-bottom: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid var(--gray);
    border-radius: 5px;
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #004494;
}

/* Footer */
footer {
    background-color: #333;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.template-showcase {
    margin-bottom: 4rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.template-showcase h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 2.5rem;
}

.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.slider {
    display: flex;
    height: 450px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    color: #333;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.slider-nav-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav-item.active {
    background-color: #007bff;
    transform: scale(1.2);
}





.scene {
    width: 300px;
    height: 300px;
    perspective: 1000px;
    margin: 50px auto;
  }
  
  .cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .cube__face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .cube__face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .cube__face:hover img {
    transform: scale(1.1);
  }
  
  .cube__face--front  { transform: rotateY(  0deg) translateZ(150px); }
  .cube__face--right  { transform: rotateY( 90deg) translateZ(150px); }
  .cube__face--back   { transform: rotateY(180deg) translateZ(150px); }
  .cube__face--left   { transform: rotateY(-90deg) translateZ(150px); }
  .cube__face--top    { transform: rotateX( 90deg) translateZ(150px); }
  .cube__face--bottom { transform: rotateX(-90deg) translateZ(150px); }
  
  .cube-nav {
    text-align: center;
    margin-top: 20px;
  }
  
  .cube-nav button {
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .zoomed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .zoomed img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
  }
  

/* Dropdown Navigation */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu-list {
    position: absolute;
    left: 100%;
    top: 0;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown-submenu:hover .dropdown-submenu-list {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li, 
.dropdown-submenu-list li {
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
}

.dropdown-menu li:hover, 
.dropdown-submenu-list li:hover {
    background-color: rgba(0, 86, 179, 0.1);
}

.dropdown-menu a, 
.dropdown-submenu-list a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.dropdown-menu a:hover, 
.dropdown-submenu-list a:hover {
    color: var(--primary-color);
}

/* Testimonials */
.testimonials {
    padding: 0rem 0;
    
    background-color: #f0f4f8;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
     margin-bottom: 3rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Enhanced Contact Section */
.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
}

.business-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.business-hours h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.form-note {
    font-size: 0.9rem;
    color: var(--gray);
}


  




/* Responsive Design */
@media (max-width: 768px) {
    .navbar-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .icon-bar {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--text-color);
        margin: 5px 0;
        transition: 0.4s;
    }

  

   
    .nav-item {
        margin: 2.5rem 0;
    }


  .navbar-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    /* Mobile dropdown handling */
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        background-color: transparent;
        padding: 0;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-column {
        padding: 0;
        margin-bottom: 1rem;
    }

    .dropdown-column h4 {
        margin-top: 1rem;
    }





    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-grid,
    .services-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
	.service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        text-align: center;
    }
    
    .service-image img {
        max-width: 100%;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-hero p {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h2 {
        font-size: 1.25rem;
    }

	
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: 1s ease-out 0s 1 slideInFromLeft;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: 1s ease-out 0s 1 slideInFromRight;
}


