
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #242D2B;
    --secondary: #003B2E;
    --text-color: #ffffff;
    --accent-color: #D8F366;
    --gradient: linear-gradient(to right, #D8F366, #00F5A0);
}

body {
    background-color: #141618;
    color: #ffffff;
    margin: 0;
    display: flex;
    flex-direction: column;
   
}

main {
    text-align: center;
    padding: 60px 10px;
}
/*Cookie Card*/
/* Cookies Card */
.cookies-card {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    font-size: 0.9rem;
    z-index: 1000;
  }
  
  .cookies-card p {
    margin: 0;
    color: #333;
    line-height: 1.4;
  }
  
  .cookies-card a {
    color: #6f7e8d;
    text-decoration: none;
  }
  
  .cookies-card a:hover {
    text-decoration: underline;
  }
  
  .cookies-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
  }
  
  .cookies-actions .btn-accept, .cookies-actions .btn-decline {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s;
  }
  
  .cookies-actions .btn-accept {
    background-color: var(--accent-color);
    color: #181717;
  }
  
  .cookies-actions .btn-accept:hover {
    background-color: #d8ff9e;
  }
  
  .cookies-actions .btn-decline {
    background-color: #f4f4f4;
    color: #333;
  }
  
  .cookies-actions .btn-decline:hover {
    background-color: #e0e0e0;
  }
  
  

/* Base styles for the custom cursor */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 50px; 
  height: 50px; 
  border: 2px solid #D8F366; 
  border-radius: 50%;
  pointer-events: none; 
  transform: translate(-50%, -50%);
  z-index: 1000;
  transition: transform 0.1s ease-out, background-color 0.3s ease;
}

/* Dot inside the cursor */
.cursor-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px; /* Dot diameter */
  height: 10px; /* Dot diameter */
  background-color: #D8F366; /* Dot color */
  border-radius: 50%;
  transform: translate(-50%, -50%);
}


a {
    text-decoration: none;
    border: none;
}

.navbar {
    display: flex;
    top: 0;
    position: fixed; /* Set the navbar to fixed position */
    width: 100%; /* Full width */
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background:  #141618;
    height: 4.3rem;
    z-index: 99;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
}

.navbar .logo {
    height: 100px; 
    margin-right: 100px;
}

.navbar ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.navbar ul li {
    margin-right: 20px;
}

.navbar ul a {
    color: #eefab8;
    font-weight: 500;
    padding: 10px;
    text-decoration: none;
}

li :hover{
   color: #d1ff06ab; 
}


.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #eefab8;
    
}


/* Responsive Menu */
@media (max-width: 768px) {
    .navbar ul {
        display: none;
        flex-direction: column;
        background-color: #141618;
        position: absolute;
        top: 5rem;
        right: 0;
        width: 90%;
        height: 23rem;
        font-weight: 500;
        border-radius:  0px 0px 0px 3rem;
        align-items: left;
        font-size: 2rem;

    }

.contact-btn{
    display: none;
}

    ul{
        padding: 2rem;
         
    }

    .navbar ul :hover{
        color:#dbff3b;
    }

    .navbar ul.active {
        display: flex;
       
    }

    .menu-toggle {
        display: block;

    }

    .Signup-btn {
        display: none; /* Hides signup button on mobile */
    }
}

.header-content {
    text-align: center;
    margin: 20px 0;
}

.logo {
    height: 100px; /* Adjust logo height as necessary */
    margin-right: 100px; /* Space between logo and menu */
}


.nav-logo img {
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #fffed4;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #fff5bc;
}

.contact-btn {
    background-color: #D8F366;
    color: #181717;
    border: none;
    padding: 10px 20px;
    border-radius: 22px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background-color: #dcff3e;
}


/* Content Section */
.content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.innovation-text {
    font-size: 1.5rem;
    color: #D8F366;
}

.main-header {
    font-size:   clamp(3rem , 4.4rem,  4.4rem);
    /*font-size: clamp(var(--font-min), var(--font-preferred), var(--font-max));*/
    font-weight: 800;
    color: #f7ffd3;
    margin-bottom: 20px;
    line-height: 4.6rem;
}

.main-header span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-header:hover {
     background-color: #D8F366;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  
}

.description-text {
    font-size: 1rem;
    color: #d3d3d3;
    margin-bottom: 2rem;
}

.button-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}


.learn-more-btn{
    background-color: #D8F366;
    border: none;
    padding: 8px 1rem;
    font-size: 20px;
    border-radius: 24px;

}


.explore-btn{
    background-color: #1a1d1f;
    border: 2px solid #D8F366;
    padding: 8px 1rem;
    font-size: 20px;
    border-radius: 24px;
    color: #D8F366;
}


.explore-btn:hover{

  background-color: #D8F366;
  color:  #1a1d1f;
  border-radius: 22px;
}

.learn-more-btn:hover{
    background-color: #dcff3e;
}

.scroll-down {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #777;
    cursor: pointer;
}

.scroll-down i {
    font-size: 2rem;
    color: #b4b4b4;
}

.section-header{
 text-align: center;
 margin-top: 3.4rem;
 
}


/* About Section Styles */

.container{
 color: #1f2122;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-subtitle{
    font-size: clamp(18px, 18px, var(20px));
}

.about-section{
    background-color: #fbfdf2;
    color:  #1c1e1f;
}


.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text {
    text-align: left;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    z-index: 2;
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    z-index: 1;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(216, 243, 102, 0.1);
    border-radius: 15px;
}

.about-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.about-btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-btn.primary {
    background: var(--gradient);
    border: none;
    color: var(--primary);
}

.about-btn.secondary {
    background: transparent;
    border: 2px solid  #1a1d1f;
    color:  #1a1d1f;;
}



/* Services Section Styles */
.services-section {
    padding: 80px 20px;
    background-color: #ffffff;
}


.section-header{
  color: #1a1d1f;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}



.service-card {
    /*background: rgba(255, 255, 255, 0.05);*/
    background-color: #181a1b;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    list-style: none;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: #D8F366;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #fff;
    margin-bottom: 15px;
}

.service-card p {
    color: #f1ffb1;
    margin-bottom: 20px;
}

.service-card p ul{
  color: #D8F366;
}

.service-link {
    color: #D8F366;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 10px;
}

/* Services Detail Section */
.services-detail {
    padding: 60px 20px;
    background-color: #1a1d1f;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card p{
    color: #ffffff;
    
}

.service-card ul p:hover{
 color: #D8F366;
    }

.detail-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.detail-item h3 {
    color: #D8F366;
    margin-bottom: 20px;
}

.detail-item p {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

.detail-features {
    list-style: none;
}

.detail-features li {
    color: #fff;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.detail-features li:before {
    content: "→";
    color: #D8F366;
    position: absolute;
    left: 0;
}


/* CTA Section Styles */
.cta-section {
    background: linear-gradient(rgba(20, 22, 24, 0.9), rgba(20, 22, 24, 0.9)), url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-button {
    background: var(--gradient);
    color: var(--primary);
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Quote Form Styles */
.quote-section {
    background-color: #1a1d1f;
    padding: 80px 20px;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #aaa;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 243, 102, 0.2);
    border-radius: 8px;
    color: #fff;
}

.submit-btn {
    background: var(--gradient);
    color: var(--primary);
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Footer Styles */
.footer {
    background-color: #141618;
    padding: 80px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    width: 100px;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #aaa;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    .main-header {
    font-size: 3.4rem;
    padding: 2px;
    }

.custom-cursor{
    display: none;
}

    .about-section{
        padding: 8x;
    }

    main{
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1003%26quot%3b)' fill='none'%3e%3cpath d='M550.77 569.43C674.52 523.13 623.22 152.3 872.67 150.26 1122.12 148.22 1350.14 316.88 1516.48 318.26' stroke='rgba(197%2c 255%2c 97%2c 0.3)' stroke-width='2'%3e%3c/path%3e%3cpath d='M205.7 627.59C323.1 625.02 424.8 465.02 646.33 464.89 867.86 464.76 866.65 534.89 1086.96 534.89 1307.28 534.89 1416.05 465.11 1527.59 464.89' stroke='rgba(197%2c 255%2c 97%2c 0.3)' stroke-width='2'%3e%3c/path%3e%3cpath d='M414.87 568.26C558.16 564.77 658.16 372.95 950.14 362.84 1242.12 352.73 1336.45 106.63 1485.41 99.64' stroke='rgba(197%2c 255%2c 97%2c 0.3)' stroke-width='2'%3e%3c/path%3e%3cpath d='M145.72 562.85C319.31 561.7 468.09 404.48 820.73 400.02 1173.37 395.56 1316.14 157.43 1495.74 153.62' stroke='rgba(197%2c 255%2c 97%2c 0.3)' stroke-width='2'%3e%3c/path%3e%3cpath d='M687.77 619.02C821.53 605.99 908.76 322.89 1136.07 322.36 1363.39 321.83 1466.55 466.15 1584.38 467.96' stroke='rgba(197%2c 255%2c 97%2c 0.3)' stroke-width='2'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1003'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
        background-position: center;
        background-size: cover;
    }


    .section-subtitle{
        padding: 8px;
    }
    

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    
.custom-cursor{
    display: none;
}


    .footer-content {
        grid-template-columns: 1fr;
    }
}


/*Back to top*/

#myBtn {
    display: none;
    position: fixed; 
    bottom: 20px; 
    right: 30px; 
    z-index: 99; 
    border: none; 
    outline: none; 
    background-color: #d9f366ab; 
    color: rgb(26, 24, 24); 
    cursor: pointer; 
    padding: 15px; 
    border-radius: 20px; 
    font-size: 30px; 
  }
  
  #myBtn:hover {
    color: #D8F366;
    background-color: #2525254d; 
  }


/*Industries*/

.industries-section {
   background-color: #f9fff1;
    padding: 4rem 1rem;
    /*z-index: 99;*/
  
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.title {
    color: #333;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.subtitle {
    color: #242D2B;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
}

.industry-card {
    background-color: #d8ff9e;
    color: #3b413f;;
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.industry-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #D8F366, #00F5A0);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover::after {
    opacity: 0.1;
}

.card-content {
    position: relative;
    z-index: 1;
    }



.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.card-header i{
  font-size: 1.4rem}
.icon {
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
    fill: var(--accent-color);
}

.card-title {
   
    font-size: 1.25rem;
    font-weight: 600;
}

.card-description {
    text-align: left;
    opacity: 0.8;
}

.card-large {
    grid-row: span 2;
    grid-column: span 2;
}

.card-large .icon {
    width: 3rem;
    height: 3rem;
}

.card-large .card-title {
    font-size: 1.5rem;
}

.card-medium {
    grid-row: span 2;
}

@media (min-width: 768px) {
    .bento-grid {
      grid-template-columns: repeat(2, 1fr);
    }
}


.custom-cursor{
    display: none;
}


@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}



/* Work Section Styles */
.work-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}


.work-section .section-header h2 p
{
color: #ffffff;
}

.work-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.work-card.large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

.work-card.large .work-image {
    height: 100%;
}

.work-card.large .work-content {
    padding: 40px;
}

/* Technologies Section Styles */
.technologies-section {
    padding: 80px 20px;
    background-color: #1a1d1f;
    margin-top: 80px;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
}

.tech-category h3 {
    color: #D8F366;
    margin-bottom: 25px;
    text-align: center;
}

.tech-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.tech-icon:hover {
    transform: translateY(-5px);
}

.tech-icon i {
    font-size: 2rem;
    color: #D8F366;
}

.tech-icon span {
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .work-card.large {
        grid-template-columns: 1fr;
    }

    .work-bento-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links {
        flex-direction: column;
        text-align: left;
        gap: 1rem;
   }


    .industries-section .bento-grid {
        display: flex;
        flex-direction: column;
    }

    .about-text{
       padding: 2rem;
    }

    .about-buttons{
        display: flex;
        flex-direction: column;
    }

}
    

/* Work Section Styles */
.work-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #84cc16, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header p {
    color: #94a3b8;
    font-size: 1.2rem;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.tab-button {
    padding: 1rem 2rem;
    border: none;
    background: rgba(255, 255, 255, 0.03);
    color: white;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-button.active {
    background: rgba(132, 204, 22, 0.1);
    border-color: rgba(132, 204, 22, 0.3);
    box-shadow: 0 0 20px rgba(132, 204, 22, 0.2);
}

.bento-grid {
    display: grid;
    gap: 2rem;
    padding: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bento-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s ease;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-item:hover {
    transform: translateY(-10px);
    border-color: rgba(132, 204, 22, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.bento-item:hover img {
    transform: scale(1.1);
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.bento-item:hover .bento-content {
    transform: translateY(0);
    opacity: 1;
}

.bento-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.bento-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: rgba(132, 204, 22, 0.1);
    border: 1px solid rgba(132, 204, 22, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    color: #84cc16;
}

/* Modern Bento Grid Layouts */
.modern-bento {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
}

/* Web Development Layout */
.web-bento .bento-item:nth-child(1) {
    grid-column: 1 / span 8;
    grid-row: span 2;
}

.web-bento .bento-item:nth-child(2) {
    grid-column: 9 / span 4;
    grid-row: span 3;
}

.web-bento .bento-item:nth-child(3) {
    grid-column: 1 / span 4;
    grid-row: span 2;
}

.web-bento .bento-item:nth-child(4) {
    grid-column: 5 / span 4;
    grid-row: span 2;
}

/* UI/UX Layout */
.uiux-bento .bento-item:nth-child(1) {
    grid-column: 1 / span 6;
    grid-row: span 3;
}

.uiux-bento .bento-item:nth-child(2) {
    grid-column: 7 / span 6;
    grid-row: span 2;
}

.uiux-bento .bento-item:nth-child(3) {
    grid-column: 7 / span 3;
    grid-row: span 2;
}

.uiux-bento .bento-item:nth-child(4) {
    grid-column: 10 / span 3;
    grid-row: span 2;
}

/* Mobile Layout */
.mobile-bento .bento-item:nth-child(1) {
    grid-column: 1 / span 5;
    grid-row: span 3;
}

.mobile-bento .bento-item:nth-child(2) {
    grid-column: 6 / span 7;
    grid-row: span 2;
}

.mobile-bento .bento-item:nth-child(3) {
    grid-column: 6 / span 4;
    grid-row: span 2;
}

.mobile-bento .bento-item:nth-child(4) {
    grid-column: 10 / span 3;
    grid-row: span 2;
}

/* Brand Layout */
.brand-bento .bento-item:nth-child(1) {
    grid-column: 1 / span 7;
    grid-row: span 2;
}

.brand-bento .bento-item:nth-child(2) {
    grid-column: 8 / span 5;
    grid-row: span 3;
}

.brand-bento .bento-item:nth-child(3) {
    grid-column: 1 / span 4;
    grid-row: span 2;
}

.brand-bento .bento-item:nth-child(4) {
    grid-column: 5 / span 3;
    grid-row: span 2;
}

@media (max-width: 1024px) {
    .modern-bento {
        grid-template-columns: repeat(6, 1fr);
    }

    .bento-item {
        grid-column: span 3 !important;
        grid-row: span 1 !important;
    }
}

@media (max-width: 768px) {
    .modern-bento {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
.custom-cursor{
    display: none;
}


    .bento-item {
        grid-column: 1 / -1 !important;
    }

    .tabs {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }
}


/* Technologies Section Styles */
.technologies-section {
    padding: 80px 20px;
    background-color: #1a1d1f;
    margin-top: 80px;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
}

.tech-category h3 {
    color: #D8F366;
    margin-bottom: 25px;
    text-align: center;
}

.tech-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.tech-icon:hover {
    transform: translateY(-5px);
}

.tech-icon i {
    font-size: 2rem;
    color: #D8F366;
}

.tech-icon span {
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .work-card.large {
        grid-template-columns: 1fr;
    }

    .work-bento-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

}


.hero{
    background-image: url(/imges/globe.jpg);
    background-position: center;
    background-size: cover;
    height: 80vh;
}

  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Hero Section */  
  .about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero-background.jpg') no-repeat center center/cover;
    color: #fff;
    background-image: url(/imges/globe.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    border-radius: 20px;
    /*padding: 5rem 1rem;*/
    width: 100%;
    height: 65vh;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .about-hero p {
    font-size: 1.2rem;
    margin-top: 1rem;
  }
  
  /* Section Styles */
  section {
    padding: 3rem 1rem;
    text-align: center;
  }

  .main-section{
    padding: 3rem;

  }

  
  .about-mission, .about-vision, .about-values {
    margin-bottom: 2rem;
    border-radius: 8px;
     color: #1f2122;
  }
  
  .about-mission{
    text-align: left;
    padding: rem 2rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
.values{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
  
.value-kids{
    border: 1px solid cadetblue;
    border-radius: 4px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.value-kids i{
    font-size: 1.6rem;
}

.value-kids :hover {
    
    border-radius: 6px;
}



.Milestones{
    color: #1f1f1f;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.line{
    height: 4rem;
    width: 2px;
    border-radius: 2px;
    background-color: #141618;
}

h5{
    color: #869097;
}

.mile{
    display: flex;
    text-align: left;
    gap: 1rem;
}

  /* Team Section */
  .team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .team-member {
    text-align: center;
    max-width: 250px;
    color: #D8F366;
    background-color: #141618;
    border-radius: 10px;
  }
  
  .team-member img {
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .team-member h3 {
    margin: 0.8rem 0 0.5rem;
    font-size: 1.2rem;
    color: #D8F366;
  }
  
  .team-member p {
    color: #666;
    font-size: 0.9rem;
  }
  

  
 
  /* Responsive Design */
  @media (max-width: 768px) {
    .team-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .navbar .nav-links {
      flex-direction: column;
      gap: 1rem;
    }
  }
  