/* General styles */
body {
    margin: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #f8f9fa;
}
/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
    z-index: 1000;
}

/* Ensure navbar doesn't overlap content */
body {
    padding-top: 80px;
}

/* Fix Logo Size & Alignment */
.logo img {
    height: 60px;
    max-width: 100%;
    object-fit: contain;
}

/* Nav links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

/* Fix for "Hire Developers" button */
.nav-links li:last-child {
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 17px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0074D9;
}

/* Hire Developers Button */
.hire-button {
    background: linear-gradient(90deg, #0074D9, #62C6FF);
    color: white;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s;
    display: inline-block;
    margin: auto;
}

.hire-button:hover {
    background: linear-gradient(90deg, #62C6FF, #0074D9);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: black;
    cursor: pointer;
}

/* Mobile Navbar Styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        padding: 15px;
    }

    .logo {
        
        width: 100%;
        text-align: left;
    }

    .logo img {
        height: 45px;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        background: white;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
        flex-direction: column;
        width: 100%;
        display: none;
        text-align: center;
        align-items: center; /* Ensures all items are center-aligned */
        padding: 10px 0;
        gap: 10px;
    }
    .nav-links li {
        display: block;
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    /* Show nav when active */
    .nav-active {
        display: flex;
    }

   
    /* Fix: Center the "Hire Developers" Button */
    .hire-button {
        display: block;
        width: 80%;
        max-width: 250px;
        text-align: center;
        margin: 10px auto; /* Centers it perfectly */
    }
}









/* Banner section */
.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 10%;
}

/* Left content */
.banner-content {
    max-width: 50%;
}

.banner-content h1 {
    font-size: 2.8rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Highlighted text with Deploy Now colors */
.banner-content h1 span {
    background: linear-gradient(90deg, #62C6FF, #0074D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Bullet points */
.banner-content ul {
    list-style: none;
    padding: 0;
}

.banner-content ul li {
    font-size: 1.2rem;
    margin: 10px 0;
    font-weight: 600;
    color: #333;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background: linear-gradient(90deg, #0074D9, #62C6FF);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.cta-button:hover {
    background: linear-gradient(90deg, #62C6FF, #0074D9);
}

/* Right image */
.banner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 5%;
    }

    .banner-content {
        max-width: 100%;
    }

    .banner-image {
        margin-top: 20px;
        width: 80%;
    }

    .banner-image img {
        width: 100%;
    }

    .banner-content h1 {
        font-size: 2.2rem;
    }

    .banner-content ul li {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
    }
}





/* Key Benefits Section - 2 Cards per Row on Medium Screens */
.key-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0074D9, #62C6FF);
    padding: 50px;
    color: white;
    text-align: center;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, background 0.3s;
    text-align: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
}

.icon-circle i {
    font-size: 28px;
}

.benefit-card h3 {
    margin: 10px 0;
    font-size: 1.4rem;
}

.benefit-card p {
    font-size: 1rem;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.3);
}

/* Technologies Section */
.technologies {
    text-align: center;
    padding: 50px;
}

.technologies h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.technologies p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Technology Carousel - Now Fully Visible on 1024px */
.tech-carousel {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px;
    scroll-snap-type: x mandatory;
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: #0074D9 #f8f9fa;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.tech-slide {
    flex: 0 0 auto;
    width: 120px;
    height: 120px;
    background: #0074D9;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    scroll-snap-align: center;
    transition: transform 0.3s;
}

.tech-slide i {
    font-size: 40px;
    margin-bottom: 5px;
}

.tech-slide span {
    font-size: 14px;
}

.tech-slide:hover {
    transform: scale(1.1);
}

/* Hide Scrollbar */
.tech-carousel::-webkit-scrollbar {
    height: 5px;
}

.tech-carousel::-webkit-scrollbar-thumb {
    background: #0074D9;
    border-radius: 5px;
}

/* Responsive Fixes */
@media (max-width: 1024px) {
    .key-benefits {
        grid-template-columns: 1fr 1fr; /* 2 cards per row */
        gap: 30px;
    }

    .tech-carousel {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tech-slide {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .key-benefits {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefit-card {
        width: 80%;
        margin: 0 auto 20px;
    }

    .tech-carousel {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tech-slide {
        width: 90px;
        height: 90px;
    }
}





/* Hiring Process Section */
.hiring-process {
    text-align: center;
    padding: 40px 5%;
    background: #6393c33e;
    color: #333;
  }
  
  .hiring-process h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #0074D9; /* Your primary logo color */
  }
  .blue{
    color: #005bb5;
  }
  .process-subtext {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
  }
  
  /* Container for the steps */
  .process-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    /* max-width: 1200px; */
    margin: auto;
  }
  
  /* Individual Step */
  .process-step {
    flex: 1 1 22%;  /* Ensures 4 steps per row */
    max-width: 260px; /* Prevents excessive stretching */
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
  }
  
  @media (max-width:478px){
    .process-step{
        max-width: 250px !important;
    }
  }
  .process-step:hover {
    transform: translateY(-3px);
  }
  
  /* Step Icon */
  .step-icon {
    font-size: 1.8rem;
    color: #0074D9;
    background: #eef6ff;
    padding: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 8px;
  }
  
  /* Step Text */
  .process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #222;
  }
  
  .process-step p {
    font-size: 0.95rem;
    color: #666;
  }
  
  /* Responsive Adjustments */
  
  /* Medium screens: Show 2 per row */
  @media (max-width: 1024px) {
    .process-step {
      flex: 1 1 45%;
      max-width: 45%;
    }
  }
  
  /* Small screens: Stack in one column */
  @media (max-width: 768px) {
    .process-container {
      flex-direction: column;
      align-items: center;
    }
    .process-step {
      flex: 1 1 100%;
      max-width: 400px;
    }
  }
  



  /* Trusted Companies Section */
.trusted-companies {
    text-align: center;
    padding: 50px 5%;
    background: #f8f9fa;
    color: #333;
}

.trusted-companies h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0074D9;
}

.trusted-subtext {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

/* Logo Grid */
.logo-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}

/* Logo Styling */
.logo-container img {
    width: 150px; /* Ensures equal size */
    height: 60px; /* Keeps a uniform height */
    object-fit: contain; /* Ensures logo is not stretched */
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.logo-container img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .logo-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-container {
        grid-template-columns: repeat(2, 1fr);
    }
}




/* Success Metrics Section */
.success-metrics {
    text-align: center;
    padding: 50px 5%;
    background: #f8f9fa;
    color: #333;
}

.success-metrics h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0074D9;
}

.metrics-subtext {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

/* Metrics Container */
.metrics-container {
    max-width: 800px;
    margin: auto;
}

/* Individual Metric */
.metric {
    margin-bottom: 20px;
}

/* Metric Label */
.metric-label {
    font-size: 1.2rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #222;
    text-align: left;
}

/* Bar Container */
.metric-bar {
    width: 100%;
    background: #ddd;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

/* Filled Bar */
.fill {
    height: 100%;
    background: linear-gradient(90deg, #0074D9, #62C6FF);
    width: 0; /* Start empty for animation */
    transition: width 1.5s ease-in-out;
}









/* About Company Section */
.about-company {
    text-align: center;
    padding: 60px 5%;
    background: linear-gradient(135deg, #0074D9, #62C6FF);
    color: white;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

/* Individual Box */
.about-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, background 0.3s;
    text-align: center;
}

.about-box i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #FFD700;
}

.about-box h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.about-box p {
    font-size: 1rem;
}

/* Hover Effect */
.about-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}



/* Blog Section */
.blog-section {
    background: #6393c33e ;
    text-align: center;
    padding: 60px 5%;
 
    color: #333;
}

.blog-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0074D9;
}

.blog-subtext {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

/* Blog Container */
.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

/* Blog Card */
.blog-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.blog-card img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

.blog-card h3 {
    margin: 15px 0 10px;
    font-size: 1.4rem;
    color: #222;
}

.blog-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.read-more {
    text-decoration: none;
    background: #0074D9;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.3s;
}

.read-more:hover {
    background: #005bb5;
}





/* Process Section */
.process-section {
    text-align: center;
    padding: 60px 5%;
    background: #f8f9fa;
    color: #333;
}

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0074D9;
}

.process-subtext {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

/* Process Container */
.process-container {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: auto;
    gap: 20px;
}

/* Process Step */
.process-step {
    text-align: center;
    flex: 1;
    position: relative;
}

/* Circular Icons */
.process-icon {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: auto;
}

.process-icon i {
    font-size: 2rem;
    color: #0074D9;
}

/* Progress Circle */
.progress-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top-color: #0074D9;
    animation: spin 1.5s linear infinite;
}

/* Animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Step Day */
.step-day {
    display: inline-block;
    background: #0074D9;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
}

/* Step Description */
.step-box {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
}

/* Hire Button */
.hire-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background: #0074D9;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.hire-btn:hover {
    background: #005bb5;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .process-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-step {
        flex: 0 0 45%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .process-container {
        flex-direction: column;
    }

    .process-step {
        flex: 1;
        width: 100%;
    }
}









/* Contract Hiring Form Section */
.contract-hiring-form {
    background: #6393c33e ;
    text-align: center;
    padding: 60px 5%;
    /* background: #f8f9fa; */
    color: #333;
}

.contract-hiring-form h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0074D9;
}

.contract-form-subtext {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

/* Form Styling */
.contract-form {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Input Fields */
.contract-form-group {
    text-align: left;
    margin-bottom: 20px;
}

.contract-form-group label {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.contract-form-group input,
.contract-form-group textarea {
    width: 95%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.contract-form-group input:focus,
.contract-form-group textarea:focus {
    border-color: #0074D9;
    outline: none;
}

/* Warning Message */
.form-warning {
    font-size: 0.9rem;
    color: red;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Submit Button */
.contract-submit-btn {
    width: 100%;
    background: #0074D9;
    color: white;
    padding: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contract-submit-btn:hover {
    background: #005bb5;
}

/* Responsive Adjustments */
@media (min-width:425px) and (max-width: 768px) {
    .contract-form {
        width: 90%;
    }
}

@media (max-width: 425px) {
    .contract-form {
        width: 80% ;
    }
}






/* Footer Styles */
.site-footer {
    background: #0a0a0a;
    color: white;
    padding: 50px 5%;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

/* Footer Sections */
.footer-about h3 {
    color: #0074D9;
    font-size: 1.8rem;
}

.footer-links h4, 
.footer-contact h4, 
.footer-social h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* Footer Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #0074D9;
}

/* Footer Contact */
.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact i {
    margin-right: 8px;
    color: #0074D9;
}

/* Social Icons */
.footer-social a {
    text-decoration: none;
    font-size: 1.5rem;
    margin-right: 10px;
    color: white;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #0074D9;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
    }

    .footer-social a {
        display: inline-block;
        margin: 10px;
    }
}





/* Tech Consultants page css */
.tech-hero {
    background: linear-gradient(135deg, #0a0f1e, #1c3b6c);
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}
@media (max-width:425px){
    .tech-hero{
        padding: 40px 20px;
    }
}

.tech-hero-container {
    max-width: 800px;
    margin: auto;
}

.tech-hero-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #4db8ff;
    animation: fadeInUp 1s ease-out;
}

.tech-hero-subtext {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 25px;
    animation: fadeInUp 1.2s ease-out;
}

.tech-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    animation: fadeInUp 1.4s ease-out;
}

.tech-btn {
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.tech-btn-primary {
    background: #4db8ff;
    color: white;
}

.tech-btn-primary:hover {
    background: #3498db;
}

.tech-btn-secondary {
    background: transparent;
    color: #4db8ff;
    border: 2px solid #4db8ff;
}

.tech-btn-secondary:hover {
    background: #4db8ff;
    color: white;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





.deploy-services {
    background-color: #f5f7fa;
    padding: 80px 20px;
    text-align: center;
}

.deploy-services-container {
    max-width: 1200px;
    margin: auto;
}

.deploy-services-title {
    font-size: 2.5rem;
    color: #1c3b6c;
    margin-bottom: 50px;
}

.deploy-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.deploy-service-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.deploy-service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.deploy-service-icon {
    width: 60px;
    margin-bottom: 20px;
}

.deploy-service-name {
    font-size: 1.5rem;
    color: #1c3b6c;
    margin-bottom: 15px;
}

.deploy-service-description {
    font-size: 1rem;
    color: #555;
}







.tech-refer {
    background: #6393c33e ;
    /* background-color: #f5f7fa; */
    padding: 10px 20px;
    text-align: center;
}

.tech-refer-container {
    max-width: 1200px;
    margin: auto;
}

.tech-refer-title {
    font-size: 2.5rem;
    color: #1c3b6c;
    margin-bottom: 50px;
}

.tech-refer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width:320px){
    .tech-refer-grid{
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}
.tech-refer-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tech-refer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.refer-image img {
    max-width: 80px;
    margin-bottom: 20px;
}

.refer-content h3 {
    font-size: 1.5rem;
    color: #1c3b6c;
    margin-bottom: 15px;
}

.refer-content p {
    font-size: 1rem;
    color: #555;
}

.refer-clients {
    background: #ffeb99;
}

.refer-friends {
    background: #d9a879;
}

.refer-manage {
    background: #c3e6cb;
}




.tech-faq, .tech-freelance-faq {
    /* background-color: #0a0f1e; */
    padding: 20px 20px;
    text-align: center;
    color: white;
}

.tech-faq-container, .tech-freelance-faq-container {
    max-width: 900px;
    margin: auto;
}

.tech-faq-title, .tech-freelance-faq-title {
    font-size: 2.5rem;
    color: #005bb5;
    margin-bottom: 30px;
}

.tech-faq-list, .tech-freelance-faq-list {
    text-align: left;
}

.tech-faq-item, .tech-freelance-faq-item {
    background: #47b472cc;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    display: flex;
    flex-direction: column;
}

.faq-question {
    font-size: 1.2rem;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    color: white;
    text-align: left;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding: 10px;
    font-size: 1rem;
    color: #ddd;
    margin-top: 10px;
}

.faq-question span {
    font-size: 1.5rem;
    color: #4db8ff;
}

.tech-faq-item.active .faq-answer {
    display: block;
}




.tech-freelance {
    background: linear-gradient(135deg, #0a0f1e, #1c3b6c);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.tech-freelance-container {
    max-width: 1000px;
    margin: auto;
}

.tech-freelance-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.tech-freelance-title span {
    color: #4db8ff;
    font-weight: bold;
}

.tech-freelance-subtext {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

.tech-freelance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width:320px){
    .tech-freelance-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}
.tech-freelance-item {
    background: #223a5e;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tech-freelance-item img {
    max-width: 80px;
    margin-bottom: 15px;
}

.tech-freelance-item h3 {
    font-size: 1.4rem;
    color: #4db8ff;
}









.tech-freelance-faq {
    /* background-color: #0a0f1e; */
    padding:20px 20px;
    text-align: center;
    color: white;
}

.tech-freelance-faq-container {
    max-width: 900px;
    margin: auto;
}

.tech-freelance-faq-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #005bb5;
}

.tech-freelance-faq-list {
    text-align: left;
}

.tech-freelance-faq-item {
    background: #1c3b6c;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    display: flex;
    flex-direction: column;
}

.faq-question {
    font-size: 1.2rem;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-weight: bold;
    color: white;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    display: none;
    padding: 10px;
    font-size: 1rem;
    color: #ddd;
    margin-top: 10px;
}

.faq-question span {
    font-size: 1.5rem;
    color: #4db8ff;
}

.tech-freelance-faq-item.active .faq-answer {
    display: block;
}



/* 
.tech-contact {
    background: #6393c33e ;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.tech-contact-container {
    max-width: 600px;
    margin: auto;
}

.tech-contact-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tech-contact-subtext {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.tech-contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tech-contact-form input, .tech-contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
}

.tech-contact-form textarea {
    height: 120px;
}

.tech-contact-btn {
    background: #4db8ff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.tech-contact-btn:hover {
    background: #3498db;
} */






/* partner page css */
.partner-hero {
    position: relative;
    background: url('./images/handshake-businessmen.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.partner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.partner-hero-container {
    position: relative;
    max-width: 800px;
    margin: auto;
    z-index: 2;
}

.partner-hero-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #4db8ff;
}

.partner-hero-subtext {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 25px;
}

.partner-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.partner-btn {
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.partner-btn-primary {
    background: #4db8ff;
    color: white;
}

.partner-btn-primary:hover {
    background: #3498db;
}

.partner-btn-secondary {
    background: transparent;
    color: #4db8ff;
    border: 2px solid #4db8ff;
}

.partner-btn-secondary:hover {
    background: #4db8ff;
    color: white;
}




.partner-benefits {
    background-color: #f5f7fa;
    padding: 80px 20px;
    text-align: center;
}

.partner-benefits-container {
    max-width: 1200px;
    margin: auto;
}

.partner-benefits-title {
    font-size: 2.5rem;
    color: #1c3b6c;
    margin-bottom: 50px;
}

.partner-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
@media (max-width:320px){
    .partner-benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

.partner-benefit-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.partner-benefit-icon {
    width: 60px;
    margin-bottom: 15px;
}






.partner-types {
    background-color: #0a0f1e;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.partner-types-container {
    max-width: 1200px;
    margin: auto;
}

.partner-types-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #4db8ff;
}

.partner-types-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.partner-type-card {
    background: #1c3b6c;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-type-image img {
    width: 100%;
    max-height: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.partner-type-content {
    text-align: center;
}

.partner-type-content ul {
    text-align: left;
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.partner-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.partner-btn-primary {
    background: #4db8ff;
    color: white;
}

.partner-btn-primary:hover {
    background: #3498db;
}

.partner-btn-secondary {
    background: transparent;
    color: #4db8ff;
    border: 2px solid #4db8ff;
}

.partner-btn-secondary:hover {
    background: #4db8ff;
    color: white;
}




.technologies-hero {
    position: relative;
    background: url('./images/technologies-banner.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.technologies-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.technologies-hero-container {
    position: relative;
    max-width: 800px;
    margin: auto;
    z-index: 2;
}

.technologies-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
}

.technologies-hero-subtext {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    opacity: 0.8;
}

.technologies-list {
    background-color: #f5f7fa;
    padding: 80px 20px;
    text-align: center;
}

.technologies-container {
    max-width: 1200px;
    margin: auto;
}

.technologies-title {
    font-size: 2.5rem;
    color: #1c3b6c;
    margin-bottom: 50px;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
@media (max-width:320px){
    .technologies-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

.technology-category {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.technologies-benefits {
    background-color: #0a0f1eef;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.technologies-benefits-container {
    max-width: 1200px;
    margin: auto;
}

.technologies-benefits-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.technologies-benefits-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}