/* Base Styles */
:root {
    --primary-color:#00D0EC;
    --secondary-color: #f1faff;
    --accent-color:#4FD7E5;
    --text-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

html {
     scroll-behavior: smooth; /* Enables smooth scrolling */
	 overflow-x: hidden;
}

body {
    background-color: var(--secondary-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Header Styles */
/* Header Styling */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    background: #003f49;
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between image and text */
    font-size: 2rem;
    color: #00D0EC;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-img {
    height: 30px; /* Adjust based on your header size */
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: inline-block;
}

/* Navigation Links (Desktop) */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    padding: 5px 10px;
    transition: 0.3s;
}

/* Underline Effect */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #00D0EC;
    transition: 0.3s ease;
    box-shadow: 0 0 10px rgba(53, 214, 237, 0.7);
}

.nav-links a:hover::after {
    width: 100%;
}


/* Mobile Menu Button */
.menu-toggle {
    display: none;
    font-size: 2rem;
    color: #00D0EC;
    cursor: pointer;
}

/* Mobile Responsive Navigation */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none; /* Hide menu on small screens */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #003f49; 
        text-align: center;
        padding: 20px 0;
        transition: 0.3s ease-in-out;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: block; /* Show hamburger menu */
    }

    .nav-links.active {
        display: flex; /* Show menu when toggled */
    }
}


/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align content to the left */
    text-align: left;
    padding: 0 10%;
    background: url('hero_background.webp') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

/* Overlay using ::before */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 0; /* Ensure it's behind all content */
    pointer-events: none; /* Allow clicks to pass through */
}

/* Hero Content */
.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2; /* Must be higher than overlay */
    color: #ffffff; /* Ensure readable text */
}

/* Heading Styles */
.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ffffff; /* Use white for high contrast over dark overlay */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Optional: text shadow for clarity */
}

/* Paragraph Styles */
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f0f0f0; /* Light gray for readability */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Container for buttons */
.button-container {
    display: flex; /* Use flexbox for alignment */
    justify-content: flex-start; /* Align buttons to the left */
    gap: 20px; /* Add some space between the buttons */
    flex-wrap: nowrap; /* Prevent buttons from wrapping to the next line */
    margin: 0; /* Remove any default margin */
    padding: 0; /* Remove any padding */
    width: 100%; /* Ensure the container takes full width */
	z-index: 1; /* Ensure the button container is above the particles */
}

/* Base button styling */
.cta-button, .services-button {
    font-size: 1.1rem;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: 0.3s;
    padding: 20px;
    display: inline-block;
    min-width: 150px; /* Prevents buttons from becoming too small */
    text-align: center; /* Center the text inside */
	z-index: 2; /* Ensure buttons are clickable above other content */
}

/* Styling for the CTA button */
.cta-button {
    background: #003f49;
}

.cta-button:hover {
    background-color:#00B8D1;
}

/* Styling for the Services button */
.services-button {
    background:#00B8D1;
}

.services-button:hover {
    background-color: #003f49;
}

/* Responsive design */
@media (max-width: 768px) {
    .cta-button, .services-button {
        width: 45%; /* Make each button take up 45% of the container */
        padding: 15px; /* Slightly smaller padding for mobile */
        font-size: 1rem; /* Slightly smaller font size for mobile */
    }
}

@media (max-width: 480px) {
    .cta-button, .services-button {
        width: 45%; /* Keep the buttons at 45% width for very small screens */
        font-size: 0.9rem; /* Further reduce font size */
        padding: 12px; /* Smaller padding for very small screens */
    }
}


/* Sliding Animations */
.slide-left,
.slide-right {
  opacity: 0;
  transition: all 1s ease;
  will-change: transform, opacity;
  position: relative;
}

/* Slide in from left (reduced distance to avoid overflow) */
.slide-left {
  transform: translateX(-50px);
}

/* Slide in from right (reduced distance to avoid overflow) */
.slide-right {
  transform: translateX(50px);
}

/* Show when in viewport */
.slide-left.show,
.slide-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* Sections Scrolling Top Margin */
#about, #services, #portfolio, #numbers,#tech-stack, #testimonials, #contact {
  scroll-margin-top: 80px;
}

/* About AI Drive Section */
#about {
  padding: 40px 5%;
  background: linear-gradient(135deg, #002d2f 0%, #003f49 100%);
  border-radius: 0px;
  box-shadow: 0 10px 30px rgba(0, 145, 255, 0.25);
  color: #e2ecf5;
  max-width: 100%;
  margin: 0 auto 80px auto;
  text-align: left;
}

.about-section-title {
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
	color: #00D0EC;
}

.about-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background:#00D0EC;
}

/* Updated Flex container for vertical stacking */
.about-content {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 30px; /* Adjust spacing between image and text */
  margin-top: 40px;
}


/* Circular photo styling */
.about-photo img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(0, 73, 83, 0.08); /* Subtle teal tint */
  transition: transform 0.5s ease, box-shadow 0.5s ease, filter 0.5s ease, background 0.5s ease;
  box-shadow: 0 0 8px 2px #00d0ec66; /* Brighter teal outer glow before hover */
  filter: drop-shadow(0 0 4px #00d0ec33); /* Brighter glow before hover */
  cursor: default;
  user-select: none;
}

.about-photo img:hover {
  transform: scale(1.05) rotate(2deg);
  background: rgba(0, 208, 236, 0.08); /* Softer cyan tint */
  box-shadow: 0 0 25px 10px #00D0EC99; /* Even stronger glow on hover */
  filter: drop-shadow(0 0 20px #00D0EC77); /* Even more intense glow on hover */
}



/* Updated Text styling for left alignment */
.about-description {
  max-width: 700px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  line-height: 1.7;
  color: #cbd5e1;
  user-select: text;
  text-align: left; /* Align text to the left */
  margin-left: 0;   /* Optional: reset any center margin */
}


/* Emphasized words */
.about-description strong {
  color: #00D0EC;
  font-weight: 700;
}

/* CTA button */
.btn-consultation {
  display: inline-block;
  margin-top: 35px;
  padding: 14px 42px;
  background: #006f7a;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 50px;
  box-shadow: 0 0 25px 6px #003f49aa;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  user-select: none;
}

.btn-consultation:hover,
.btn-consultation:focus {
  background: #00D0EC;
  color: #003f49;
  box-shadow: 0 0 45px 14px #00D0ECcc;
  transform: scale(1.02);
  outline: none;
}




/* Responsive adjustments */
@media (max-width: 768px) {
  #about {
    padding: 50px 3%;
    text-align: center;
  }

  .about-content {
    flex-direction: column;
    gap: 40px;
  }

  .about-photo img {
    width: 220px;
    height: 220px;
  }

  .about-description {
    max-width: 100%;
    font-size: 1.1rem;
    line-height: 1.6;
  }
}

/* Founder Section */
#founder-section {
    padding: 40px 5%;
    background-color: #f1faff; /* Matches light blue tone */
    color: #003f49;
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0, 40, 85, 0.05);
}

/* Layout */
.founder-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}

/* Image */
.founder-image {
    flex: 1;
    min-width: 320px;
    text-align: center;
}

.founder-image img {
    width: 100%;
    max-width: 500px;
    height: 500px; /* Adjust height to crop bottom */
    object-fit: cover;
    object-position: center; /* Focus on top part, crop bottom */
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

/* Text */
.founder-text {
    flex: 1;
    min-width: 320px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
}

.founder-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #003f49;
}

.founder-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #00D0EC;
    margin-bottom: 1rem;
}

/* Button */
.founder-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 10px 20px;
    background: #003f49;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: 600;
    font-size: 1rem;
}

.founder-button:hover {
    background-color: #13a6ab;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(19, 166, 171, 0.6);
}

/* Responsive */
@media screen and (max-width: 900px) {
    .founder-content {
        flex-direction: column;
        align-items: center;
    }

    .founder-text,
    .founder-image {
        max-width: 100%;
    }

    .founder-name {
        font-size: 1.8rem;
    }

    .founder-title {
        font-size: 1.1rem;
    }

    /* 👇 Mobile-specific image height */
    .founder-image img {
        height: 360px; /* Adjust as needed for mobile */
    }
}


/* AI Online Presence Section */
#online-presence-section {
    padding: 20px 5%;
    background-color: #f1faff; /* Very light blue background */
    color: #003f49;
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0, 40, 85, 0.05);
}

/* Flex Container */
.online-presence-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}

/* Text Column */
.online-presence-text {
    flex: 1;
    min-width: 320px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
}

.online-presence-text ul {
    list-style: disc;
    padding-left: 20px;
    margin: 20px 0;
}

.online-presence-text li {
    margin-bottom: 12px;
}

/* Highlight Color */
.highlight-blue {
    color: #00D0EC;
    font-weight: 600;
}

/* Button Styling */
.online-presence-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 10px 20px;
    background: #003f49; /* Navy Blue */
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: 600;
    font-size: 1rem;
}

.online-presence-button:hover {
    background-color: #13a6ab; /* Turquoise on hover */
    color: #ffffff;
    box-shadow: 0 0 12px rgba(19, 166, 171, 0.6);
}

/* Image Column */
.online-presence-image {
    flex: 1;
    min-width: 320px;
    text-align: center;
}

.online-presence-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 40, 85, 0.1);
}

/* Responsive */
@media screen and (max-width: 900px) {
    .online-presence-content {
        flex-direction: column;
        align-items: center;
    }

    .online-presence-text,
    .online-presence-image {
        max-width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }
}


/* Sections Common Styles */
section {
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
	color: #003f49;
}


.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background:#00D0EC;
}

/* Services Grid */
#services {
    position: relative;
    overflow: hidden;
    background: #cceef1; /* Light Grey Background */
    padding: 40px 5%;
    text-align: center;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 50px 0;
}

/* Modern Service Card with Navy Blue Background */
.service-card {
  background: #003f49;
  padding: 50px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 208, 236, 0.2);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  color: #ffffff;
  z-index: 1;
}

/* Soft Overlay Effect */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  clip-path: ellipse(90% 60% at 50% -20%);
  z-index: 0;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-8px) scale(1.05);
  background: #0F5E67; /* Darker, more muted teal */
  box-shadow: 0 12px 30px rgba(18, 120, 130, 0.4);
  color: #003f49;
}

/* Icon Styling */
.service-card i {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: #00D0EC; /* Turquoise Accent */
    transition: transform 0.4s ease;
    z-index: 1;
    position: relative;
}

.service-card:hover i {
    transform: scale(1.1) rotateY(360deg);
}

/* Service Title */
.service-card h3 {
    font-size: 1.5rem;
    color: #00D0EC; /* Turquoise Text */
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

/* Service Description */
.service-card p {
    font-size: 1.1rem;
    color: #EDE7F6; /* Soft Contrast for Readability */
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .services-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        margin-bottom: 30px;
    }
}


/* Slider Section */
.ai_drive-slider-section {
  width: 100%;
  overflow: hidden;
  background-color: #f1faff;
  position: relative;
}

/* Image Slider Styling */
.about-photo-slider {
    position: relative;
    width: 100%; /* Full viewport width */
    height: 600px; /* Increased height */
    overflow: hidden;
    border-radius: 0; /* Optional: full-width feel */
    margin: 0 auto;
}

.about-photo-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-photo-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill the container and crop if needed */
    transition: transform 0.3s ease;
    border-radius: 0;
}

/* Hover effect for the images */
.about-photo-slider .slide img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about-photo-slider {
        height: 400px; /* Adjusted height for mobile */
    }
}


/* AI Software Development Process Section */
#development-process-section {
    padding: 40px 5%;
    background-color: #f1faff; /* Light background */
    color: #003f49; /* Dark text for readability */
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Flex Container */
#development-process-section .development-process-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}

/* Image Column */
#development-process-section .development-process-image {
    flex: 1;
    min-width: 320px;
    text-align: center;
}

#development-process-section .development-process-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 40, 85, 0.2);
}

/* Text Column */
#development-process-section .development-process-text {
    flex: 1;
    min-width: 320px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #003f49;
}

#development-process-section .development-process-text ol {
    list-style: decimal;
    padding-left: 20px;
    margin: 20px 0;
}

#development-process-section .development-process-text li {
    margin-bottom: 12px;
}

/* Turquoise Highlight */
#development-process-section .highlight-blue {
    color: #00D0EC;
    font-weight: 600;
}

/* Button: Navy Blue with Turquoise Hover */
#development-process-section .development-process-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 10px 20px;
    background: #003f49; /* Navy Blue */
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

#development-process-section .development-process-button:hover {
    background-color: #13a6ab; /* Turquoise on hover */
    color: #ffffff;
    box-shadow: 0 0 12px rgba(19, 166, 171, 0.6);
}

/* Responsive Design */
@media screen and (max-width: 900px) {
    #development-process-section .development-process-content {
        flex-direction: column;
        align-items: center;
    }

    #development-process-section .development-process-text,
    #development-process-section .development-process-image {
        max-width: 100%;
    }

    #development-process-section .section-title {
        font-size: 2rem;
    }
}


/* Portfolio Section */
#portfolio {
    padding: 40px 5%;
    background: #cceef1; /* Teal-themed light background */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* Portfolio Item */
.portfolio-item {
    background: linear-gradient(135deg, #003f49 30%, #00D0EC 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 208, 236, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: perspective(1000px) rotateY(0deg);
    text-decoration: none;
}

/* Unique Hover Effect */
.portfolio-item:hover {
    box-shadow: 0 15px 25px rgba(0, 208, 236, 0.3);
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(135deg, #0F5E67 30%, #00D0EC 100%);
    color: #FFFFFF;
}

/* Title */
.portfolio-item h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    transition: color 0.4s ease;
}

/* Portfolio Item Text */
.portfolio-item p {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}

/* Icon Styling */
.portfolio-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin: 0 auto;
    transition: transform 0.4s ease, color 0.4s ease;
    will-change: transform, color;
}

/* Hover Effect for Icon */
.portfolio-item:hover .portfolio-icon {
    transform: rotateY(360deg) scale(1.1);
    color: var(--primary-color);
}

/* Decorative Overlay */
.portfolio-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(-20deg);
    transition: left 0.5s ease-in-out;
}

.portfolio-item:hover::before {
    left: 100%;
}

/* Website badge/link */
.website-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.9rem;
    color: rgba(237, 231, 246, 0.85);
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.website-link:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Focus accessibility */
.portfolio-item:focus-visible {
    outline: 3px solid #00D0EC;
    outline-offset: 4px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #portfolio {
        padding: 80px 5%;
    }

    .portfolio-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .portfolio-item {
        width: 100%;
        margin-bottom: 30px;
        height: auto;
    }
}



/* Numbers Section */
/* Background for the numbers area */
#numbers{
	padding: 40px 5%;
	background: #99c2c7;
}
.numbers-background {
    background: #003f49; /* Dark background */
    padding: 50px 10%;
    border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    margin: 50px 0;
    backdrop-filter: blur(10px); /* Blur effect */
}

/* Flexbox to display number cards in one row */
.numbers-grid {
    display: flex;
    justify-content: space-between; /* Even spacing between the cards */
    align-items: center; /* Center vertically */
    gap: 20px; /* Space between number cards */
}

/* Number card styles */
.number-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
    border: 1px solid rgba(100, 255, 218, 0.1);
    text-align: center;
    flex: 1; /* Cards take equal width */
    min-width: 150px; /* Minimum width for better text fit */
}

/* Styling for the plus sign */
.numbers-grid .number-card h3 {
    display: inline-block;
    font-size: 3rem;
    color:var(--primary-color);
}

.numbers-grid .number-card span {
    font-size: 3rem;
    color:var(--primary-color);
    margin-left: 5px;
}
.numbers-grid .number-card p {
    color:var(--primary-color);
}

/* Mobile View Adjustments */
@media screen and (max-width: 768px) {
    .numbers-background {
        padding: 30px 5%; /* Reduced padding for smaller screens */
    }

    .numbers-grid {
        flex-direction: column; /* Stack the cards vertically */
        align-items: center; /* Center the cards */
        gap: 20px; /* Space between the cards */
    }

    .number-card {
        min-width: unset; /* Remove minimum width to allow the cards to be smaller */
        width: 100%; /* Full width of the container */
        padding: 20px;
    }

    .numbers-grid .number-card h3 {
        font-size: 2rem; /* Smaller font size for numbers */
    }

    .numbers-grid .number-card span {
        font-size: 2rem; /* Smaller font size for plus sign */
    }
}

/* AI Drive FAQ Section */
#ai-drive-faq-section {
    padding: 40px 5%;
    background-color: #cceef1; /* Very light cyan background */
    color: #003f49;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 208, 236, 0.08);
    overflow: hidden;
}

/* Container */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* FAQ Item */
.faq-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 73, 83, 0.05);
    border: 1px solid #c5f4fa;
}

/* FAQ Question */
.faq-question {
    width: 100%;
    padding: 22px 28px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #003f49;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
    color: #00D0EC;
    background: #f0fdff;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 28px;
    font-size: 1.5rem;
    color: #00D0EC;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #f4feff;
    color: #003f49;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
    border-top: 1px solid #bdeff5;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px 28px;
}

/* Answer Paragraph */
.faq-answer p {
    margin: 0;
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 18px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}



/* AI Tech Trends Section */
#ai-tech-trends {
    padding: 60px 5%;
    background-color: #f1faff ; /* Light AI-themed background */
    color: #003f49;
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0, 40, 85, 0.05);
}

/* Flex Layout */
/* Section base */
#tech-trends.tech-trends-section {
    padding: 40px 5%;
    background-color: #f9fbfe;
    color: #003f49;
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0, 40, 85, 0.05);
    overflow: hidden;
}

/* Layout */
#tech-trends .tech-trends-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}

/* Image Styling */
#tech-trends .tech-trends-image {
    flex: 1;
    min-width: 320px;
    text-align: center;
}

#tech-trends .tech-trends-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 40, 85, 0.1);
}

/* Text Content */
#tech-trends .tech-trends-text {
    flex: 1;
    min-width: 320px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Button Style */
#tech-trends .tech-trends-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 10px 20px;
    background: #003f49; /* Navy Blue */
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s ease;
}

#tech-trends .tech-trends-button:hover {
    background-color: #13a6ab; /* Turquoise on hover */
    color: #ffffff;
    box-shadow: 0 0 12px rgba(19, 166, 171, 0.6);
}

/* Responsive Design */
@media screen and (max-width: 900px) {
    #tech-trends .tech-trends-content {
        flex-direction: column;
        align-items: center;
    }

    #tech-trends .tech-trends-text,
    #tech-trends .tech-trends-image {
        max-width: 100%;
    }

    #tech-trends .section-title {
        font-size: 2rem;
    }
}


#tech-stack {
    padding: 40px 5%;
    position: relative;
    background: #cceef1; /* Light neutral background for contrast */
}

/* Tech Grid Layout */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    padding: 40px 0;
    text-align: center;
}

/* Sleek Tech Card */
.tech-card {
    background: #003f49; /* Navy Blue */
    padding: 25px 20px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
}

/* Subtle Overlay Effect */
.tech-card::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.04);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    z-index: 0;
    transition: 0.3s ease-in-out;
}

/* Hover Interaction */
.tech-card:hover {
    transform: translateY(-5px) scale(1.03);
    background: #006974; /* Darker teal */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}


/* Icon Styling */
.tech-card i {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #00D0EC;
    transition: transform 0.4s ease;
    z-index: 1;
    position: relative;
}

.tech-card:hover i {
    transform: scale(1.1) rotateY(360deg);
}

/* Tech Title */
.tech-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00D0EC;
    z-index: 1;
    position: relative;
}

/* Responsive Tweak */
@media screen and (max-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .tech-card {
        padding: 20px 16px;
    }

    .tech-card i {
        font-size: 2rem;
    }

    .tech-card h3 {
        font-size: 1rem;
    }
}





/* Testimonials Section */
#testimonials {
    padding: 40px 5%;
    background: #f1faff; /* Light background to make cards pop */
    text-align: center;
}

/* Grid Layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* Testimonial Card */
.testimonial-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 40, 85, 0.08);
    color: #003f49;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Effects */
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.12);
}

/* Decorative Quote Icon */
.testimonial-card::before {
    content: "“";
    font-size: 80px;
    color: rgba(0, 40, 85, 0.08);
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: Georgia, serif;
    z-index: 0;
}

/* Card Content */
.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    z-index: 1;
    position: relative;
}

/* Author Info */
.testimonial-card .author {
    margin-top: 25px;
    font-weight: 600;
    font-size: 1rem;
    color: #001f3f;
}

/* Star Rating */
.stars {
    margin-top: 15px;
}

.stars i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 4px;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-card::before {
        font-size: 60px;
        top: 15px;
        left: 15px;
    }
}


/* Google Map Section */
#google-map-section {
  padding: 40px 5%;
  background: #cceef1; /* Slightly less bright background */
  text-align: center;
}

.google-map-section {
  background-color: #eaf9fc; /* matches section */
  padding: 50px 5%;
  box-shadow: 0 8px 25px rgba(20, 93, 102, 0.1); /* darker shadow tone */
  border-radius: 15px;
  color: #001a2e;
  text-align: center;
}

.map-description {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #001a2e;
  margin: 0 auto;
}

.map-description p {
  color: #333;
}

.google-map {
  width: 100%;
  max-width: 800px;
  margin: 30px auto 0 auto;
  border-radius: 15px;
  overflow: hidden;
  border: 3px solid #187882; /* updated border color */
  box-shadow: 0 6px 18px rgba(20, 93, 102, 0.15);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.google-map:hover {
  box-shadow: 0 0 25px 6px rgba(20, 93, 102, 0.5); /* updated glowing effect */
  transform: translateY(-10px);
}

.google-map iframe {
  border-radius: 15px;
}





/* AI Drive Online Presence CTA Section */
.lewie-mavis-online-presence-section {
  background: url('bottom_background.webp') no-repeat center center/cover;
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lewie-mavis-online-presence-overlay {
  background: rgba(0, 0, 0, 0.65); /* dark overlay with 65% opacity */  
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8%;
  text-align: center;
}

.lewie-mavis-online-presence-content {
  max-width: 850px;
  z-index: 1;
}

.lewie-mavis-online-presence-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #00D0EC;
  margin-bottom: 20px;
}

.lewie-mavis-online-presence-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #FFFFFF;
  margin-bottom: 30px;
}

.lewie-mavis-online-presence-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #1fa3b5;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.lewie-mavis-online-presence-btn:hover {
  background-color: #007e8a;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(31, 163, 181, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .lewie-mavis-online-presence-content h2 {
    font-size: 1.8rem;
  }

  .lewie-mavis-online-presence-content p {
    font-size: 1rem;
  }
}




/* Contact Section */
#contact {
    padding: 40px 5%;
    background-color: #003f49;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#contact .section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
	color:var(--primary-color);
	
}

/* Contact Container */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    background: var(--primary-color) ;
    padding: 30px;
    border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    border: 1px solid rgba(100, 255, 218, 0.1);
}

/* Input & Textarea Styling */
.contact-form .input-group {
    width: 100%;
    margin-bottom: 20px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #f7f7f7;
    color: #000000;
    font-size: 1.1rem;
    transition: 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    background: #ffffff;
    outline: none;
}

/* Placeholder Text */
.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #717171;
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 15px;
    background:  #003f49;
    color: #FFFFFF;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button i {
    margin-right: 10px;
    font-size: 1.3rem;
	color:#FFFFFF;
}

.submit-button:hover {
    background:#004953 ;
    transform: translateY(-5px);
}

.submit-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #contact {
        padding: 60px 5%;
    }

    .contact-container {
        padding: 25px;
    }

    .contact-form input, .contact-form textarea {
        font-size: 1rem;
    }

    .submit-button {
        font-size: 1rem;
    }
}


/* Footer Styles */
/* Footer Styling */
#footer {
    background-color: #003f49;
    color: var(--primary-color);
    padding: 40px 10%;
    font-size: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Left Section (Address, Hours, Phone, Email) */
.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}
.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.footer-left p {
    margin: 5px 0;
}

/* Middle Section (Menu) */
.footer-menu {
    flex: 1;
    text-align: center;
    margin-bottom: 20px;
}

.footer-menu ul {
    list-style-type: none;
    padding: 0;
}

.footer-menu ul li {
    margin: 10px 0;
}

.footer-menu ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease, box-shadow 0.3s ease;
}

.footer-menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background: #00D0EC;
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(53, 214, 237, 0.6);
}

.footer-menu ul li a:hover::after {
    width: 100%;
}


/* Right Section (Social Links) */
.footer-social {
    flex: 1;
    text-align: right;
    margin-bottom: 20px;
}

.footer-social a {
    text-decoration: none;
    color: var(--primary-color);
    margin: 0 10px;
    font-size: 1.5rem;
    position: relative;
    transition: color 0.3s ease;
}

/* Underline on hover */
.footer-social a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-color);
}

.footer-social a:hover::after {
    width: 100%;
}



/* Footer Bottom (Copyright) */
.footer-bottom {
    text-align: center;
    font-size: 1.0rem;
    color:var(--primary-color);
    margin-top: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    /* Stack the sections on smaller screens */
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    /* Adjust Menu Section */
    .footer-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-menu ul li {
        margin: 5px 0;
    }

    /* Adjust Social Icons */
    .footer-social {
        text-align: center;
        margin-top: 20px;
    }

    .footer-social a {
        margin: 0 8px;
    }
}

/* Chat Button */
.chat-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #00B8D1; /* Light cyan for visibility */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: pulse 2s infinite;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: none;
}

.chat-btn:hover {
  background-color: #00c0d4;
  box-shadow: 0 0 30px 12px #00d0eccc;
  transform: scale(1.1);
}



@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    header {
        padding: 20px;
    }

    .hero h1 {
        font-size: 3rem;
    }
}