/* Basic CSS template for AI Page */
:root {
    --primary-color: #0d6efd;
    --primary-hover-color: #005fa3;
    --secondary-color: #00bfff;
    /* Lighter blue for accents/buttons */
    --secondary-hover-color: #009acd;
    --background-color: #000000;
    /* Slightly adjusted dark blue/gray for a modern feel */
    --surface-color: rgba(255, 255, 255, 0.05);
    /* For cards, form backgrounds - slightly darker */
    --surface-hover-color: #1f242c;
    --text-color: #c9d1d9;
    /* Softer white for better readability on dark bg */
    --text-color-secondary: #a0a0a0;
    --heading-color: var(--primary-color);
    --border-color: #3a444f;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --box-shadow-light: 0 2px 4px rgba(255, 255, 255, 0.2);
    --box-shadow-strong: 0 4px 12px rgba(255, 255, 255, 0.3);
    --font-family-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --transition-speed: 0.3s;
    --primary-color-alpha: rgba(0, 122, 204, 0.3);
    /* Added for focus box-shadow */
  }
  
  .robot-container {
    position: relative;
    animation: gentleFloat 4s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .robot-container:hover {
    animation: hoverFloat 2s ease-in-out infinite;
  }
  
  .robot {
    position: relative;
    width: 280px;
    height: 140px;
  }
  
  /* Main oval body */
  .robot-body {
    position: absolute;
    width: 280px;
    height: 140px;
    background: linear-gradient(135deg, #F0F0F0 0%, #D0D0D0 30%, #E0E0E0 70%, #C0C0C0 100%);
    border-radius: 50%;
    top: 0;
    left: 0;
    box-shadow: 
        inset 0 15px 30px rgba(255,255,255,0.5),
        inset 0 -15px 30px rgba(0,0,0,0.2),
        0 10px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
  }
  
  .robot-container:hover .robot-body {
    transform: scale(1.05);
  }
  
  /* Horizontal divider line */
  .divider-line {
    position: absolute;
    width: 260px;
    height: 2px;
    background: linear-gradient(to right, transparent, #888, #666, #888, transparent);
    top: 69px;
    left: 10px;
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.5);
  }
  
  /* Eyes */
  .eye {
    position: absolute;
    width: 35px;
    height: 35px;
    background: #2a2a2a;
    border-radius: 50%;
    top: 30px;
    border: 2px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
  }
  
  .eye.left {
    left: 70px;
  }
  
  .eye.right {
    right: 70px;
  }
  
  .eye-ring {
    width: 22px;
    height: 22px;
    background: #404040;
    border-radius: 50%;
    border: 1px solid #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
  }
  
  .robot-container:hover .eye-ring {
    transform: rotate(180deg);
  }
  
  .eye-center {
    width: 14px;
    height: 14px;
    background: radial-gradient(circle at 30% 30%, #00FFFF, #0080FF);
    border-radius: 50%;
    box-shadow: 
        0 0 10px #00FFFF,
        0 0 20px rgba(0,255,255,0.5);
    animation: eyeGlow 3s ease-in-out infinite alternate;
    transition: all 0.3s ease;
  }
  
  .robot-container:hover .eye-center {
    box-shadow: 
        0 0 15px #00FFFF,
        0 0 30px rgba(0,255,255,0.8);
    transform: scale(1.2);
  }
  
  .eye-center::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    top: 2px;
    left: 3px;
  }
  
  /* Leg attachments */
  .leg-attachment {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    top: 90px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
  }
  
  .leg-attachment.left {
    left: 20px;
  }
  
  .leg-attachment.right {
    right: 20px;
  }
  
  .leg {
    position: absolute;
    width: 4px;
    height: 70px;
    background: linear-gradient(to bottom, #E0E0E0, #C0C0C0, #A0A0A0);
    top: 4px;
    transform-origin: top center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    border-radius: 2px 2px 0 0;
    transition: transform 0.3s ease;
  }
  
  .leg::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -8px;
    width: 20px;
    height: 15px;
    background: linear-gradient(135deg, #C0C0C0, #A0A0A0, #909090);
    border-radius: 50% 50% 20% 20%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  }
  
  /* Leg positioning and gentle animations */
  .leg-attachment.left .leg.leg1 {
    left: 1px;
    transform: rotate(-45deg);
    animation: gentleLegSwim1 3s ease-in-out infinite;
  }
  
  .leg-attachment.left .leg.leg2 {
    left: 1px;
    transform: rotate(-20deg);
    animation: gentleLegSwim2 3s ease-in-out infinite 0.5s;
  }
  
  .leg-attachment.right .leg.leg3 {
    left: 1px;
    transform: rotate(20deg);
    animation: gentleLegSwim3 3s ease-in-out infinite 0.5s;
  }
  
  .leg-attachment.right .leg.leg4 {
    left: 1px;
    transform: rotate(45deg);
    animation: gentleLegSwim4 1s ease-in-out infinite;
  }
  
  /* Hover effects for legs */
  .robot-container:hover .leg-attachment.left .leg.leg1 {
    animation: activeLegSwim1 1.5s ease-in-out infinite;
  }
  
  .robot-container:hover .leg-attachment.left .leg.leg2 {
    animation: activeLegSwim2 1.5s ease-in-out infinite 0.3s;
  }
  
  .robot-container:hover .leg-attachment.right .leg.leg3 {
    animation: activeLegSwim3 1.5s ease-in-out infinite 0.3s;
  }
  
  .robot-container:hover .leg-attachment.right .leg.leg4 {
    animation: activeLegSwim4 1.5s ease-in-out infinite;
  }
  
  /* Gentle floating animation */
  @keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
  }
  
  /* Active hover float */
  @keyframes hoverFloat {
    0%, 100% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(-25px);
    }
  }
  
  /* Eye glow effect */
  @keyframes eyeGlow {
    0% {
        box-shadow: 
            0 0 10px #00FFFF,
            0 0 20px rgba(0,255,255,0.5);
    }
    100% {
        box-shadow: 
            0 0 15px #00FFFF,
            0 0 25px rgba(0,255,255,0.7);
    }
  }
  
  /* Gentle leg swimming animations */
  @keyframes gentleLegSwim1 {
    0%, 100% { 
        transform: rotate(-45deg);
    }
    50% { 
        transform: rotate(-35deg);
    }
  }
  
  @keyframes gentleLegSwim2 {
    0%, 100% { 
        transform: rotate(-20deg);
    }
    50% { 
        transform: rotate(-10deg);
    }
  }
  
  @keyframes gentleLegSwim3 {
    0%, 100% { 
        transform: rotate(20deg);
    }
    50% { 
        transform: rotate(10deg);
    }
  }
  
  @keyframes gentleLegSwim4 {
    0%, 100% { 
        transform: rotate(45deg);
    }
    50% { 
        transform: rotate(35deg);
    }
  }
  
  /* Active leg swimming on hover */
  @keyframes activeLegSwim1 {
    0%, 100% { 
        transform: rotate(-45deg) scale(1);
    }
    25% { 
        transform: rotate(-30deg) scale(1.1);
    }
    75% { 
        transform: rotate(-50deg) scale(1.1);
    }
  }
  
  @keyframes activeLegSwim2 {
    0%, 100% { 
        transform: rotate(-20deg) scale(1);
    }
    25% { 
        transform: rotate(-10deg) scale(1.1);
    }
    75% { 
        transform: rotate(-30deg) scale(1.1);
    }
  }
  
  @keyframes activeLegSwim3 {
    0%, 100% { 
        transform: rotate(20deg) scale(1);
    }
    25% { 
        transform: rotate(10deg) scale(1.1);
    }
    75% { 
        transform: rotate(30deg) scale(1.1);
    }
  }
  
  @keyframes activeLegSwim4 {
    0%, 100% { 
        transform: rotate(45deg) scale(1);
    }
    25% { 
        transform: rotate(30deg) scale(1.1);
    }
    75% { 
        transform: rotate(50deg) scale(1.1);
    }
  }
  
  /* Click effect */
  .robot-container:active {
    transform: scale(0.95);
  }
  
  /* Instruction text */
  .instruction {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    text-align: center;
    animation: fadeInOut 4s ease-in-out infinite;
  }
  
  @keyframes fadeInOut {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
  }
  
  
  
  
  .hero-gif {
    position: absolute;
    /* right: 50px; */
    right: 200px;
    bottom: 150px;
    width: 300px;
    height: auto;
    z-index: 2;
    animation: gentle-float 2s ease-in-out infinite;
    /* Optional: slightly rounded corners for the GIF if it's in a container */
  }
  
  @keyframes gentle-float {
  
    0%,
    100% {
        transform: translateY(0);
    }
  
    50% {
        transform: translateY(-15px);
    }
  }
  
  
  
  
  /*-------- conatct-form----- */
  
  .contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000 0%, #111 100%);
    color: #fff;
  }
  
  .contact-form {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    border: 1px solid #444;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  
  
  .contact-form input , .contact-form textarea {
    background-color: #000 !important;
    border:  none !important ;
    border-bottom: 0.5px solid white !important;
  }
  /* ------end-form----------- */
  
  /* AI Services Section */
  
  
  .ai-services {
    padding: 60px 50px;
    background-color: #1a1d20;
  }
  
  .ai-services h1 {
    margin-bottom: 10px;
    font-weight: bold;
    color: #0098d4;
    text-align: center;
  }
  
  .ai-services .subheading {
    font-size: 1rem;
    margin-bottom: 40px;
    color:#e8eaed;
  }
  
  .services-container {
    display: flex;
    justify-content: center;
    
  }
  
  .services-nav {
    flex: 0 0 250px;
    max-height: 400px;
    overflow-y:scroll;
    background-color:#111 ;
    border: 2px solid #292f36;
    border-radius: 10px;
    border-top-right-radius: none;
    border-bottom-right-radius: none;
    /* Use variable and make it subtle */
    padding:10px;
    /* Add some padding */
  }
  
  .services-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .service-tab {
    padding: 15px 20px;
    cursor: pointer;
    border-left: 4px solid transparent;
    transition: background-color #0098d4 ease, border-color #1d6392 ease, color #e8eaed ease;
    font-weight: 600;
    color: #a0a0a0;
    border-radius: var(--border-radius-sm);
    margin-bottom: 5px;
    /* Spacing between tabs */
  }
  
  .service-tab:hover {
    background-color: #0098d4;
    border-left-color: #1d6392;
    color: #e8eaed;
  }
  
  .service-tab.active {
    background-color: #0098d4;
    color:#e8eaed;
    /* Text color for active tab */
    border-left-color: #1d6392;
    /* Accent border for active tab */
  }
  
  .services-content {
    flex: 1;
    max-width: 600px;
    max-height: 400px;
    padding: 1rem 2rem;
    border: 2px solid #292f36;
    background-color:#111 ;
    border-left: none;
    border-radius: 10px;
    border-top-left-radius:0;
    border-bottom-left-radius: 0;
  }
  
  .service-content {
    display: none;
  }
  
  .service-content.active {
    display: block;
  }
  
  .service-content h3 {
    font-size: xx-large;
    margin-bottom: 15px;
    color: #0098d4;
  }
  
  .service-content p {
    margin-bottom: 25px;
    color: #e8eaed;
  }
  
  .cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .ai-card {
    background-color: rgba(26, 26, 26,1) ;
    border-radius: var(--border-radius-md);
    padding: 10px;
    /* flex: 1 1 200px; */
    display:flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    text-align: center;
    width: 45%;
    box-shadow: var(--box-shadow-light);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    
  }
  
  .ai-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-strong);
  }
  
  .ai-card svg {
    /* If you use inline SVGs or target them this way */
    margin-bottom: 10px;
    stroke: #0098d4;
  }
  
  .ai-card img {
    /* For img tags within cards, like in services */
    margin-bottom: 10px;
    /* stroke: var(--primary-color); SVGs in img tags can't be styled by 'stroke' directly via CSS */
  }
  
  
  .ai-card p {
    font-weight: 600;
    color: #e8eaed;
  }
  
  .tech-stack {
    display: flex;
    flex-direction: column;
    background-color: #1a1d20;
    /* Consistent background */
  }
  
  .tech-stack h1 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #0098d4;
    text-align: center;
  }
  .tech-stack p {
    /* Targeting the direct paragraph child for subheading styling */
    padding-left: 5%;
    padding-right: 5%;
    margin-bottom: 40px;
    color: #e8eaed;
    text-align: center;
  }
  
  .tech-stack .subheading {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #e8eaed;
  }
  
  .tech-stack-containers {
    display: flex;
    padding: 40px 60px;
  gap:20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    /* Center tech cards if they don't fill the row */
  }
  
  .tech-card {
    background-color: var(--surface-color);
    border-radius: var(--border-radius-md);
    padding:0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* Allow cards to grow but have a base size */
  width: 160px;
    /* Prevent cards from becoming too wide */
    text-align: center;
    box-shadow: var(--box-shadow-light);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  }
  
  .tech-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--box-shadow-strong);
  }
  
  .tech-card img {
    margin-bottom: 10px;
    width: 64px;
    height: 64px;
  }
  
  .tech-card p {
    
    color: #e8eaed;
  }
  
  .ai-roadmap {
    /* Added a class for the section if not already present, or target its parent */
    padding: 60px 50px;
    background-color: var(--background-color);
  }
  
  .ai-roadmap h1 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #0098d4;
    text-align: center;
  }
  
  .ai-roadmap>p {
    /* Targeting the direct paragraph child for subheading styling */
    padding-left: 5%;
    padding-right: 5%;
    margin-bottom: 40px;
    color: #e8eaed;
    text-align: center;
  }
  
  
  .ai-roadmap .cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .ai-roadmap .card {
    background-color: var(--surface-color);
    border-radius: var(--border-radius-md);
    padding: 20px;
    flex: 1 1 300px;
    /* Base size, allows wrapping */
    max-width: 350px;
    /* Max width for roadmap cards */
    box-shadow: var(--box-shadow-light);
    text-align: left;
    border: 1px solid var(--border-color);
  }
  
  .ai-roadmap .card p {
    color: var(--text-color);
    /* Ensure roadmap card text is readable */
    font-size: 1rem;
    /* Slightly smaller for denser content */
  }
  
  .ai-roadmap .card p strong {
    color: var(--secondary-color);
    /* Highlight the strong tag */
    display: block;
    margin-bottom: 8px;
  }
  
  /* Client Testimonials Section */
  .ai-testimonials {
    padding: 60px 50px;
    background-color: var(--background-color);
    text-align: center;
    /* Center the section title and subheading */
  }
  
  .ai-testimonials h1 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #0098d4;
    text-align: center;
  }
  
  .ai-testimonials .subheading {
    padding-left: 5%;
    padding-right: 5%;
    margin-bottom: 40px;
    color: #e8eaed;
    text-align: center;
  }
  
  .ai-testimonial-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    /* Center cards if they don't fill the row */
  }
  
  .ai-testimonial-card {
    background-color: var(--surface-color);
    border-radius: var(--border-radius-md);
    padding: 25px;
    flex: 1 1 300px;
    /* Base size, allows wrapping and growing */
    max-width: 360px;
    /* Max width for each ai-testimonial card */
    box-shadow: var(--box-shadow-light);
    text-align: left;
    border: 1px solid var(--border-color);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    position: relative;
    /* For ::before pseudo-element positioning */
  }
  
  .ai-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-strong);
  }
  
  .ai-testimonial-card .quote {
    font-size: 1.05rem;
    /* Slightly larger for readability */
    color: var(--text-color);
    margin-bottom: 15px;
    font-style: italic;
    line-height: 1.5;
    position: relative;
    padding-left: 10px;
    /* Space for the quote mark */
  }
  
  .ai-testimonial-card .quote::before {
    content: '“';
    font-family: Georgia, serif;
    /* Using a serif font for a classic quote mark */
    font-size: 3rem;
    /* Prominent quote mark */
    color: var(--primary-color);
    position: absolute;
    left: -15px;
    /* Position to the left, slightly outside the main text flow */
    top: -10px;
    /* Adjust top position */
    opacity: 0.4;
    /* Subtle appearance */
    line-height: 1;
    /* Ensure it doesn't affect line height of the paragraph */
  }
  
  .ai-testimonial-card .client-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    /* Highlight the client's name */
    text-align: right;
    margin-top: 10px;
  }
  
  .consultation-section {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    justify-content: center;
    gap: 40px;
    padding: 40px 50px;
    max-width: 1200px;
    margin: 40px auto;
    /* Added top margin */
    background-color: var(--surface-color);
    /* Use surface color */
    border-radius: var(--border-radius-md);
  }
  
  .consultation-content {
    flex: 1;
    min-width: 300px;
    /* Ensure content doesn't get too squished */
    max-width: 500px;
  }
  
  .consultation-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
  }
  
  .consultation-steps .step {
    margin-bottom: 20px;
  }
  
  .consultation-steps .step h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
  }
  
  .consultation-steps .step p {
    color: var(--text-color-secondary);
    line-height: 1.5;
  }
  
  .consultation-form-container {
    flex: 1;
    min-width: 300px;
    /* Ensure form doesn't get too squished */
    max-width: 500px;
    background-color: var(--background-color);
    /* Darker background for form itself */
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-strong);
    border: 1px solid var(--border-color);
  }
  
  .consultation-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  .consultation-form input[type="text"],
  .consultation-form input[type="email"],
  .consultation-form input[type="tel"],
  .consultation-form select,
  .consultation-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    background-color: var(--surface-color);
    color: var(--text-color);
    box-sizing: border-box;
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  }
  
  .consultation-form input:focus,
  .consultation-form select:focus,
  .consultation-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color-alpha);
  }
  
  .consultation-form textarea {
    resize: vertical;
    min-height: 80px;
  }
  
  .submit-button {
    background-color: var(--secondary-color);
    color: var(--background-color);
    /* Dark text on light button */
    border: none;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    width: 100%;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
  }
  
  .submit-button:hover {
    background-color: var(--secondary-hover-color);
    transform: translateY(-2px);
  }
  
  .faq-answer p{
    color:#1f242c;
    font-size: small;
  }
  
  .blog-section {
    
    background: var(--background-color);
    
    padding: 40px 20px;
  }
  
  .blog-section h1 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #0098d4;
    text-align: center;
  }
  
  .blog-section .subheading {
    padding-left: 5%;
    padding-right: 5%;
    margin-bottom: 40px;
    color:#e8eaed;
    text-align: center;
    font-size: 1.2rem;
  }
  
  .blog-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
  
  .blog-card {
    /* background-color: var(--surface-color); */
    /* background-color: rgba(255, 255, 255, 0.11);
    border-radius: var(--border-radius-md); */
    /* From https://css.glass */
  /* From https://css.glass */
  background: rgba(42, 41, 41, 0.48);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1.4px);
  -webkit-backdrop-filter: blur(1.4px);
  border: 1px solid rgba(42, 41, 41, 0.95);
    
    padding: 20px;
  
    width: calc(33.333% - 20px);
    /* Adjust for 3 cards per row, considering gap */
    min-width: 280px;
    /* Minimum width before wrapping */
    max-width: 350px;
    /* Maximum width */
    /* box-shadow: var(--box-shadow-light); */
    display: flex;
    flex-direction: column;
    /* align-items: center; Text will be left aligned now */
    text-align: left;
    /* Changed to left for better readability of blog titles/text */
    /* transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease; */
    cursor: pointer;
    /* border: 1px solid var(--border-color); */
  }
  
  .blog-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.2);
  }
  
  .blog-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    /* Slightly smaller radius for images inside cards */
    margin-bottom: 15px;
  }
  
  .blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
  }
  
  .blog-card p {
    font-size: 0.95rem;
    /* Slightly smaller for blog excerpts */
    color:#e8eaed ;
    flex-grow: 1;
    /* Allows paragraphs to take available space if cards have varying title lengths */
    margin-bottom: 0;
    /* Remove default p margin if not needed */
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
  
    .tech-stack-containers {
      display: flex;
      padding: 40px 60px;
    gap:20px;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      /* Center tech cards if they don't fill the row */
    }
  
    .blog-card {
        width: calc(50% - 15px);
        /* 2 cards per row */
    }
  }
  
  @media (max-width: 768px) {
  
    .ai-card{
      padding: 0.3rem 0;
    }
    .hero-gif {
      top: 60%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
  
    .ai-services,
    .tech-stack,
    .ai-roadmap,
    .ai-testimonials,
    .consultation-section,
    .faq-section,
    .blog-section {
        padding-left: 20px;
        padding-right: 20px;
    }
  
    .consultation-section {
        flex-direction: column;
        align-items: center;
    }
  
    .consultation-content,
    .consultation-form-container {
        max-width: 100%;
        /* Allow form and content to take full width */
    }
  
    .tech-stack-containers {
      display: flex;
      padding: 40px 10px;
    gap: 15px;
      flex-wrap: wrap;
      /* align-items: center; */
      /* justify-content: center; */
      /* Center tech cards if they don't fill the row */
    }
    .blog-card {
        width: calc(50% - 20px);
        /* 1 card per row */
        max-width: 400px;
        
        /* Max width for single column blog cards */
    }
  
  }
  
  @media (max-width: 480px) {
  
  
    .hero-gif {
      top: 65%;
      left: 15%;
      transform: translate(-50%, -30%);
    }
  
    
  
    .ai-services h2,
    .tech-stack h2,
    .ai-roadmap h2,
    .consultation-content h2,
    .faq-section h2,
    .blog-section h2 {
        font-size: 2rem;
    }
  
  
    .services-container{
      flex-direction: column;
    }
    .services-nav {
      
      border-radius: 10px;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
  
    }
    .services-content{
      border-top: none;
      border-radius: 10px;
      border: 2px solid #292f36;
      border-top-left-radius: 0;
      border-top-right-radius: 0;
    }
    .service-content h3 {
        font-size: 1.6rem;
    }
    .tech-stack-containers {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 20px 4px;
      justify-content: center;
    }
  
    .tech-card {
      width: 45%;
      min-width: 120px;
      height: 180px;
      margin-bottom: 8px;
      box-sizing: border-box;
    }
    .blog-card {
      width: calc(100% - 10px);
      /* 1 card per row */
      max-width: 400px;
      /* Max width for single column blog cards */
  }
  }