@charset "utf-8";
/* CSS Document */
/* Base Styles */
:root {
    --color-primary: #4f46e5;
    --color-primary-dark: #4338ca;
    --color-secondary: #818cf8;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-background: #ffffff;
    --color-background-alt: #f9fafb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: var(--color-text);
}

	ul{
list-style-type: none;
}
	
a{
	text-decoration: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--color-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
	width: 250px;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    border: 1px solid var(--color-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
	width: 250px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.875rem;
    }

    .section-header p {
        font-size: 1.125rem;
    }
}



/* Services Section Styles */
.services {
    padding: 6rem 0;
    background-color: var(--color-background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--color-background-alt);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card i {
    width: 3rem;
    height: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--color-text-light);
}



/* Navbar Styles */
.navbar {
background-color: #1e1b4b;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
padding: 1rem 0;
}

.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
display: flex;
align-items: center;
color: white;
}

.logo-icon {
width: 2rem;
height: 2rem;
color: #818cf8;
margin-right: 0.5rem;
}

.logo span {
font-size: 1.25rem;
font-weight: 600;
}

.nav-links {
display: flex;
align-items: center;
gap: 1.5rem;
}
.nav-links li a {
text-decoration: none;
color: white;
transition: color 0.3s;
list-style: none;
}

.nav-links a {
color: white;
text-decoration: none;
padding: 0.5rem;
border-radius: 0.375rem;
transition: background-color 0.2s;
}

.nav-links a:hover {
background-color: rgba(255, 255, 255, 0.1);
text-decoration: underline;
}
/* Mobile Styles */
.nav-toggle {
-webkit-tap-highlight-color: transparent;
background: none;
border: none;
cursor: pointer;
display: none;
position: relative;
width: 30px;
height: 30px;
}
.nav-toggle .line {
position: absolute;
width: 100%;
height: 3px;
background-color: white;
transition: transform 0.3s, opacity 0.3s;
right: 5px;
}
.nav-toggle .line:nth-child(1) {
top: 0;
}

.nav-toggle .line:nth-child(2) {
top: 50%;
transform: translateY(-50%);
}

.nav-toggle .line:nth-child(3) {
bottom: 0;
}

.nav-toggle.cross .line {
top: 50%;
left: 50%;
position: absolute;
width: 30px;
height: 3px;
background-color: white;
}

.nav-toggle.cross .line:nth-child(1) {
transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle.cross .line:nth-child(2) {
opacity: 0;
}

.nav-toggle.cross .line:nth-child(3) {
transform: translate(-50%, -50%) rotate(-45deg);
}

/* Responsive Styles */
@media (max-width: 768px) {
.nav-links {
display: none;
flex-direction: column;
position: absolute;
top: 60px;
right: 0;
width: 100%;
text-align: center;
padding: 1rem 0;
background-color: #1e1b4b;
}

.nav-links.active {
display: flex;
}

.nav-toggle {
display: flex;
flex-direction: column;
justify-content: space-between;
-webkit-tap-highlight-color: transparent;
}
}

@media (max-width: 480px) {
.logo {
font-size: 1.2rem;
}
}



/* Hero Carousel Styles */

.hero-carousel {
    position: relative;
    overflow: hidden;
    background: var(--color-background);
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.hero-slide {
    min-width: 100%;
    text-align: center;
    padding: 8rem 0 6rem;
    background: linear-gradient(to bottom, #1e1b4b, #312e81);
    color: white;
}

.hero-slide h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-slide p {
    font-size: 1.25rem;
    color: #c7d2fe;
    margin-bottom: 2rem;
}


/* Default styles for the hero buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between buttons */
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    padding: 10px 20px; /* Adjust padding as needed */
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero-slide h1 {
        font-size: 2rem;
    }

    .hero-slide p {
        font-size: 1rem;
    }

    
	.hero-buttons {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center; /* Center align */
        gap: 15px; /* Increase space between buttons */
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 80%; /* Make buttons more standard width */
        max-width: 300px; /* Optional max width to avoid excessively large buttons */
        padding: 12px 16px; /* Adjust padding for a balanced look */
        font-size: 14px; /* Slightly smaller font size */
    }
}


/* Featured Section Styles */
.featured-section {
    padding: 50px 0;
    text-align: center;
}

.featured-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    gap: 20px;
}

/* Responsive Columns */
@media (min-width: 320px) and (max-width: 767px) {
    .grid {
        grid-template-columns: 1fr; /* 1 column for mobile */
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .grid {
        grid-template-columns: 1fr 1fr; /* 2 columns for tablet */
		align-items: stretch; /* Ensures uniform height */
    }
}

@media (min-width: 1024px) {
    .grid {
        grid-template-columns: 1fr 1fr 1fr; /* 3 columns for desktop */
    }
}

.card {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    height: auto;
    display: block;
}

.card-content {
    padding: 20px;
    text-align: left;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 0.9rem;
    color: #657;
}


.footer {
    background-color: #1e1b4b;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand .logo i {
    width: 2rem;
    height: 2rem;
    color: #818cf8;
    margin-right: 0.5rem;
}

.footer-brand p {
    color: #c7d2fe;
}

.footer-links h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
	color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #c7d2fe;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #312e81;
    color: #c7d2fe;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-grid {
        gap: 2rem;
    }
}




/* Contact Section Styles */
.contact {
    padding: 6rem 0;
    background-color: var(--color-background-alt);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-primary);
}

.info-item h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--color-text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.main-h1{
	color: white;
}
h1, h2, h3 {
            font-weight: 500;
            color: #222;
        }

        h1 {
            font-size: 2em;
            margin-bottom: 1em;
        }

        h2 {
            font-size: 1.5em;
            margin-top: 1.5em;
            margin-bottom: 0.5em;
        }

        h3 {
            font-size: 1.2em;
            margin-top: 1em;
            margin-bottom: 0.5em;
        }

        p {
            margin-bottom: 1em;
        }

        strong {
            font-weight: bold;
        }

        ul {
            
            padding-left: 20px;
            margin-bottom: 1em;
        }

        @media (max-width: 768px) {
            
            h1 {
                font-size: 1.7em;
            }
            h2 {
                font-size: 1.3em;
            }
            h3 {
                font-size: 1.1em;
            }
        }

        @media (max-width: 480px) {
            
            h1 {
                font-size: 1.5em;
            }
            h2 {
                font-size: 1.2em;
            }
        }

/* Contact Section */
        .contact-section {
            padding: 5rem 2rem;
			max-width: 660px;
			z-index: 10001;
        }

        .contact-section h2 {
            text-align: center;
            color: #c44;
            margin-bottom: 3rem;
			
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 600px;
            margin: 0 auto;
			z-index: 10002;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
			color: #414040;
			z-index: 10002;
        }

        .contact-form input,
        .contact-form select,
        .contact-form textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .contact-form textarea {
            height: 150px;
        }

        .submit-btn {
            background-color: #007bff;
            color: #fff;
            padding: 1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .submit-btn:hover {
            background-color: #0056b3;
        }

        .form-status {
            text-align: center;
            font-size: 1rem;
            margin-top: 1rem;
        }

        .form-status.success {
            color: #28a745;
        }

        .form-status.error {
            color: #dc3545;
        }
		.contact-form {
      background-color: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      max-width: 600px;
      width: 100%;
      box-sizing: border-box;
    }

    h2 {
      text-align: center;
      color: #333;
    }

    .form-group {
      margin-bottom: 15px;
    }

    label {
      font-size: 16px;
      font-weight: bold;
      display: block;
      margin-bottom: 5px;
    }

    input, textarea {
      width: 100%;
      padding: 10px;
      font-size: 16px;
      border: 1px solid #ddd;
      border-radius: 4px;
      box-sizing: border-box;
    }

    textarea {
      resize: vertical;
      height: 120px;
    }

    button {
      
      color: white;
      padding: 10px 20px;
      font-size: 16px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      width: 100%;
    }

    button:hover {
      
    }

    /* Responsive design */
    @media (max-width: 768px) {
      .contact-form {
        padding: 15px;
      }

      label {
        font-size: 14px;
      }

      input, textarea, button {
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      .contact-form {
        padding: 10px;
      }

      label {
        font-size: 12px;
      }

      input, textarea, button {
        font-size: 12px;
      }
    }

/* Basic Styling for the Cookie Consent Popup */
        #cookie-consent-ck {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #ffffff;
            padding: 20px;
            text-align: center;
            z-index: 9999;
            box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
        }

        #cookie-consent-ck p {
            margin: 25px 0 0 0;
            font-size: 14px;
        }

        #cookie-consent-ck a {
            color: #007bff;
            text-decoration: none;
        }

        /* Default button styles */
        #cookie-consent-ck button {
            padding: 10px 10px;
            font-size: 17px;
            cursor: pointer;
            margin: 10px;
            border-radius: 5px;
            border: 2px solid #007bff;
            width: 200px;
            max-width: 100%;
        }

        /* "Accept All Cookies" button */
        #cookie-consent-ck #accept-cookies-ck {
            background-color: #007bff;
            color: white;
        }

        #cookie-consent-ck #accept-cookies-ck:hover {
            background-color: #0056b3;
            color: white;
        }

        /* "Decline" button */
        #cookie-consent-ck #decline-cookies-ck {
            background-color: white;
            color: #007bff;
        }

        #cookie-consent-ck #decline-cookies-ck:hover {
            background-color: #f0f0f0;
            color: #0056b3;
        }

        /* Hide popup by default */
        .hidden-ck {
            display: none;
        }

        /* Close Button Styling */
        #close-cookie-consent {
            position: absolute;
            top: -10px;
            right: 15px;
            background: none;
            border: none !important;
            color: #000 !important;
            cursor: pointer;
            z-index: 10000;
            width: 24px;
            height: 24px;
        }

        #close-cookie-consent svg {
            width: 24px;
            height: 24px;
            fill: #333;
        }

        #close-cookie-consent:hover svg {
            fill: red;
        }

/* Our work section */

/* Main Layout */
.website-showcase {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(to bottom right, #312e81, #7e22ce);
  overflow: hidden;
}

.showcase-background {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

/* Container */
.container-an {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
  position: relative;
  z-index: 1;
}

/* Header */
.header-an {
  text-align: center;
  margin-bottom: 4rem;
}

.title-an {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
}

.subtitle-an {
  font-size: 1.25rem;
  color: #e9d5ff;
  max-width: 32rem;
  margin: 0 auto;
}

/* Cart Icon */
.cart-icon-an {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 50;
}

.cart-button-an {
  background: white;
  padding: 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.cart-button-an:hover {
  background-color: #f3f4f6;
}

.cart-icon-svg-an {
  width: 24px;
  height: 24px;
  color: #7c3aed;
}

.cart-badge-an {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background-color: #ef4444;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Showcase Container */
.showcase-container {
  position: relative;
  height: 800px;
  margin: 0 auto;
  perspective: 1000px;
}

/* Website Card */
.website-card {
  position: absolute;
  width: 300px;
  transition: all 0.5s ease;
  cursor: pointer;
  user-select: none;
  will-change: transform;
  pointer-events: auto !important;
  /* Ensure proper stacking context */
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.card-content {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: scale(1);
  transition: transform 0.2s;
  position: relative;
  z-index: 1;
  height: 100%;
}

.card-content:hover {
  transform: scale(1.05);
}

.card-image-container {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
}

.card-image {
  width: 100%;
  height: 192px;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.card-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(124, 58, 237, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.view-details {
  color: white;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 2px solid white;
  border-radius: 0.25rem;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.card-image-container:hover .card-image {
  transform: scale(1.1);
}

.card-image-container:hover .card-image-overlay {
  opacity: 1;
}

.card-image-container:hover .view-details {
  transform: translateY(0);
}

.card-details {
  padding: 1rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
}

.card-industry {
  font-size: 0.875rem;
  color: #6b7280;
}

.card-price {
  font-size: 1.125rem;
  font-weight: bold;
  color: #7c3aed;
}

.demo-button {
  background: #7c3aed;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background-color 0.2s;
  z-index: 3;
  position: relative;
}

.demo-button:hover {
  background: #6d28d9;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 10000;
}

.modal-content {
  background: white;
  border-radius: 0.5rem;
  max-width: 42rem;
  width: 100%;
  padding: 1.5rem;
}

.modal.hidden {
  display: none;
}

/* Feature Icons */
.feature-icon {
  width: 20px;
  height: 20px;
  color: #7c3aed;
}

/* Responsive */
@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }
  
  .showcase-container {
    height: 600px;
  }
  
  .website-card {
    width: 250px;
  }
}

@media (max-width: 640px) {
  .container-an {
    padding: 2rem 1rem;
  }
  
  .showcase-container {
    height: 500px;
  }
}