
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
--primary-color: #3a86ff;
--secondary-color: #8338ec;
--text-color: #333;
--bg-color: #f8f9fa;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family:"Poppins", sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: var(--bg-color);
}

header {
background-color: transparent;
backdrop-filter: blur(10px);
position: sticky;
top: 0;
width: 100%;
z-index: 1000;
}

nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 5%;
z-index: 999;
}

.logo {
font-size: 2rem;
font-weight: 700;
color: var(--primary-color);
animation: logoAnimation 2s ease-in-out infinite alternate;
}
.logo a{
    text-decoration: none !important;
}

.logo span {
color: black;
animation: logoSpanAnimation 2s ease-in-out infinite alternate;
}

@keyframes logoAnimation {
0% {
transform: scale(1);
}
100% {
transform: scale(1.1);
}
}

@keyframes logoSpanAnimation {
0% {
color: black;
}
100% {
color: var(--secondary-color);
}
}

.nav-links {
display: flex;
list-style: none;
z-index: 999;
}

.nav-links li {
margin-left: 2rem;
}

.nav-links li a {
text-decoration: none;
color: white;
font-weight: 600;
transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links li a:hover {
color: var(--primary-color);
transform: translateY(-3px);
}

.hamburger {
display: none;
cursor: pointer;
color: white;
}

.hamburger span {
display: block;
width: 25px;
height: 3px;
background-color: white;
margin: 5px 0;
transition: all 0.3s ease;
}



/* main section  */

/* section {
padding: 5rem 10%;
} */

h1, h2, h3 {
margin-bottom: 1rem;
}

#home{
    background: #000000;

}
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: calc(100vh - 80px);
    justify-content: center;
    pointer-events: none; /* Ensure text does not interfere */
    position: relative; /* Keep it layered above */
    z-index: 2; /* Ensure it appears above the canvas */
}

.hero h1 {
color: white;
font-size: 4rem;
font-weight: 500;
margin-bottom: 1rem;
animation: fadeInUp 1s ease;
font-family:"Poppins", sans-serif;
}

.hero p {
    color: white;
font-size: 2rem;
margin-bottom: 2rem;
animation: fadeInUp 1s ease 0.5s both;
}

.cta-button {
display: inline-block;
background-color: var(--primary-color);
color: white;
padding: 0.8rem 2rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: background-color 0.3s ease;
animation: fadeInUp 1s ease 1s both;
pointer-events: auto;
}

.cta-button:hover {
background-color: var(--secondary-color);
}

    
/* M7 Corporation Trusted Brands Section */
.m7c-trusted-brands {
    padding: 60px 0;
    background: radial-gradient(circle at 50% -273%, #0a4a8a, #000 60%);/* Matching the #hero-3d gradient */
    position: relative;
    overflow: hidden;
}
  
  /* Section Header Styling */
  .m7c-section-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family:"Poppins", sans-serif;
  }
  
  .m7c-title-underline {
    height: 2px;
    width: 50px;
    background: #ffffff;
    margin-bottom: 40px;
  }
  
  /* Brands Container */
  .m7c-brands-container {
    padding: 10px 0 30px;
  }
  
  .m7c-brands-row {
    margin-bottom: 20px;
  }
  
  /* Brand Item Styling */
  .m7c-brand-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    height: 120px;
    transition: all 0.3s ease;
  }
  
  .m7c-brand-logo {
    max-width: 130px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(0%);
  }
  
  /* Hover effect (subtle zoom) */
  .m7c-brand-item:hover .m7c-brand-logo {
    transform: scale(1.05);
  }
  
  /* Customer Stories Link */
  .m7c-stories-link {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
  }
  
  .m7c-stories-link:hover {
    color: #17a2b8;
    text-decoration: none;
  }
  
  .m7c-stories-link i {
    transition: transform 0.3s ease;
  }
  
  .m7c-stories-link:hover i {
    transform: translateX(5px);
  }
  


    /* Client list End */


/* Background pattern container */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Individual squares */
.square {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(35, 120, 185, 0.327);
}

/* Position the squares */
.square:nth-child(1) { top: 10%; left: 20%; }
.square:nth-child(2) { top: 15%; left: 45%; }
.square:nth-child(3) { top: 25%; left: 30%; }
.square:nth-child(4) { top: 35%; left: 40%; }
.square:nth-child(5) { top: 15%; left: 70%; }
.square:nth-child(6) { top: 45%; left: 25%; }
.square:nth-child(7) { top: 50%; left: 55%; }
.square:nth-child(8) { top: 60%; left: 75%; }
.square:nth-child(9) { top: 75%; left: 85%; }







#hero-3d {
    background: radial-gradient(circle at 50% 0%, #0a4a8a, #000 70%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: auto;
}

/* service section  */

#services {
padding: 5rem 10%;
background: radial-gradient(circle at 50% 50%, #0a4a8a, #000 45%) !important;
}
#services h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 1rem;
color: rgb(255, 255, 255);
}

.service-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}

.service-item {
background-color: #ffffffe0;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
transition: all 0.3s ease;
opacity: 0;
transform: translateY(20px);
}

.service-item i {
font-size: 3rem;
color: var(--primary-color);
margin-bottom: 1rem;
transition: all 0.3s ease;
}

.service-item h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--text-color);
}

.service-item p {
font-size: 1rem;
color: var(--text-color);
}

.service-item:hover {
transform: translateY(-10px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-item:hover i {
transform: scale(1.1);
color: var(--secondary-color);
}



@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* about */


.flowing-text-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.flowing-text {
    position: absolute;
    white-space: nowrap;
    font-size: 4vw;
    font-weight: bold;
    color: rgba(58, 134, 255, 0.2);
    animation: flowText 20s linear infinite;
}

@keyframes flowText {
    0% {
        transform: translateX(100%) translateY(-50%);
    }
    100% {
        transform: translateX(-100%) translateY(-50%);
    }
}

/* .about_m7 .content {
    background-image: url(../Img/logo_trans_m7.png);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 40px;
}
.about_m7_content{
 font-size: x-large;
 text-align: justify;
}
.about_title{
    text-align: center;
    font-size: 3rem;
    margin-bottom: 40px;
    color: #000000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);

}
h1 {
    font-size: 5vw;
    color: #000000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.about-description{
    padding: 0 20px;
} */

/* New about section */

/* M7 Corporation About Section Styling */
.m7c-about-section {
    position: relative;
    background: radial-gradient(circle at 50% 54%, #0a4a8a, #000 40%);
    overflow: hidden;
  }
  
  /* Section Header Styling */
  /* .m7c-section-title {
    color: #222;
    position: relative;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
  } */
  
  /* .m7c-title-underline {
    height: 4px;
    width: 70px;
    background: linear-gradient(to right, #0056b3, #17a2b8);
    margin-bottom: 30px;
  } */
  
  /* Background Logo Styling */
  .m7c-content-wrapper {
    position: relative;
    z-index: 1;
  }
  
  .m7c-bg-logo-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../Img/logo_trans_m7.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.1;
    z-index: -1;
  }
  
  /* About Items Styling */
  .m7c-about-card {
    /* background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden; */
  }
  
  .m7c-about-item {
    transition: all 0.3s ease;
  }
  
  .m7c-about-item-inner {
    background-color: #000000ed;
    border: 1px solid ;
    color: white;
    border-radius: 8px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .m7c-about-item:hover .m7c-about-item-inner {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .m7c-icon-wrapper {
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    background: linear-gradient(135deg, #0056b3, #17a2b8);
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  .m7c-icon {
    color: #fff;
    font-size: 24px;
  }
  
  .m7c-item-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .m7c-item-text {
    color: #b8b8b8;
    font-size: 1rem;
    line-height: 1.7;
  }
  
  /* Stats Section Styling */
  .m7c-stats-container {
    background: #00000087;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .m7c-stat-item {
    color: #fff;
  }
  
  .m7c-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
  }
  
  .m7c-stat-label {
    font-size: 1rem;
    opacity: 0.9;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 991.98px) {
    .m7c-about-section {
      padding: 60px 0;
    }
    
    .m7c-stat-number {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 767.98px) {
    .m7c-about-item {
      margin-bottom: 20px;
    }
    
    /* .m7c-section-title {
      font-size: 2.2rem;
    } */
    
    .m7c-stat-number {
      font-size: 1.8rem;
    }
    
    .m7c-stat-label {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 575.98px) {
    .m7c-about-section {
      padding: 40px 0;
    }
    
    /* .m7c-section-title {
      font-size: 1.8rem;
    } */
    
    .m7c-item-text {
      font-size: 0.95rem;
    }
  }
/* end */

/* ai section */
.ai-future-container {
    width: 100%;
    background-color: #5633e8;
    background-image: radial-gradient(circle, rgba(117, 95, 225, 0.5) 1px, transparent 1px);
    background-size: 15px 15px;
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: white;
}

.ai-future-header {
    width: 300px;
    margin-right: 30px;
    margin-bottom: 30px;
}

.ai-future-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.ai-future-stats-card {
    width: 250px;
    height: 180px;
    background-color: rgba(76, 29, 149, 0.5);
    border-radius: 15px;
    padding: 30px;
    margin: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ai-future-stats-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ai-future-stats-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.ai-future-stats-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .ai-future-container {
        flex-direction: column;
    }
    
    .ai-future-header {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }
}
.ai-section {
    background: radial-gradient(circle at 66% 45%, #0a4a8a, #000 35%) !important;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 80px 20px;
}
.ai-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
}
.ai-description {
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
    margin: 20px 0;
}
.ai-svg {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

        /* product page */
        .banner-section {
            height: auto !important;
        }

        .product_card {
            min-height: 0px;
            cursor: pointer;
            flex-direction: column;
            border-radius: 24px;
            box-shadow: rgba(37, 49, 56, 0.08) 0px 12px 16px -4px, rgba(37, 49, 56, 0.03) 0px 4px 6px -2px;
            overflow-y: hidden;
            position: relative;
            transition: box-shadow 0.2s;
            padding: 10px;
        }

        .product_card:hover {
            box-shadow: rgba(37, 49, 56, 0.08) 0px 16px 24px -2px, rgba(37, 49, 56, 0.03) 0px 6px 30px 5px;
        }

        .card-img-top {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            background-color: #f8f9fa;
        }

        .button-arrow {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            color: #000000;
            font-weight: bold;
        }

        .banner-section a.button-arrow {
            color: #000000;
        }

        .button-arrow:hover {
            color: #000000;
        }

        .arrow-icon::after {
            content: "\f061";
            /* font-family: "Font Awesome 5 Free"; */
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .button-arrow:hover .arrow-icon::after {
            transform: translateX(5px);
        }
        /* product page */
  /* Project_index_page and project page section */
  .web_projects_section{
    background: radial-gradient(circle at 50% -273%, #0a4a8a, #000 60%);
    padding: 80px 20px;
  }

/* Project_index_page */
.web-section-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000000;
}

.web-section-text {
    font-size: 18px;
    color: #b8b8b8;
}

.exp_button{
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0, 0, 0);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  margin-top: 15px;
}
.exp_button a{
    text-decoration: none;
    color: #ffff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.exp_button .icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.exp_button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.exp_button:hover .icon {
  transform: translate(4px);
}

.exp_button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.exp_button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

/* Image Grid */
.img-grid {
  margin-top: 50px !important;
  display: grid;
  grid-template: repeat(2, auto)/ repeat(3, auto);
  grid-gap: 20px;
  max-width: fit-content;
  transform: rotateX(55deg) rotateY(0) rotateZ(45deg);
  margin: 0 auto;
}

.image img {
  width: 250px;
  height: 170px;
  display: inline-block;
  transition: all 0.3s ease-out;
  box-shadow: 10px 10px 15px -5px rgba(0, 0, 0, 0.75);
}

.image img:hover {
  transform: translate(-10px, -8px);
}

/* project page */

.container .project_page_title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: aliceblue;
    padding: 60px 30px;
    margin-top: 20px;
}
.container .projects-heading{
    font-size: 3rem;
}
.container .projects-intro{
    font-size: 1rem;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    /* color: var(--bs-nav-pills-link-active-color); */
    background-color: transparent !important;
    color: #000000;
    /* padding: 20px; */
    border-bottom: 3px solid #000000;
}
button:focus:not(:focus-visible) {
    outline: 0;
}

.nav-pills .nav-link {
    border-radius: 1px !important ;
    padding: 9px 48px;
    color: black !important;
    font-size: 23px;
}

.projects-section {
    padding: 80px 20px;
    background-color: transparent;
  }
  
.projects-container{
    display: flex !important;
    gap: 30px;
    flex-direction: column;
}
/* .projects-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    gap: 10px;
    flex-direction: row;
    align-items: center;
}
.projects-tabs .tab-button{
    padding: 20px 20px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}
  .tab-button.active {
    color: #3a86ff;
    font-weight: bold;
  }
  
  .tab-button::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3a86ff;
    transition: width 0.3s ease;
  }
  
  .tab-button.active::after {
    width: 100%;
  } */
  

  /* Project Card */
  .project-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
  }
  
  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .project-content {
    padding: 50px !important;
  }
   /* .mobile-projects-content{
    padding: 150px !important;
  }
   */
  .project-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .project-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
  }
  

.learn-more {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family:"Poppins", sans-serif;
   }
   
   .learn-more {
    width: 12rem;
    height: auto;
   }
   
   button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #282936;
    border-radius: 1.625rem;
   }
   
   button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
   }
   
   button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
   }
   
   button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
   }
   
   button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #282936;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
   }
   
   .learn-more:hover .circle {
    width: 100%;
   }
   
   .learn-more:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
   }
   
   .learn-more:hover .button-text {
    color: #fff;
   }

/* contact */
/*  */


.contact-section {
    min-height: 100vh;
    background: transparent;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.contact-info {
    /* background: rgba(255, 255, 255, 0.95); */
    padding: 40px;
    border-radius: 20px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    transform: translateY(50px);
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transform: translateX(-30px);
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

.contact-item:nth-child(1) { animation-delay: 0.2s; }
.contact-item:nth-child(2) { animation-delay: 0.4s; }
.contact-item:nth-child(3) { animation-delay: 0.6s; }

.contact-icon {
    width: 40px;
    height: 40px;
    background: #3a86ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 20px;
}

.contact-text h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 14px;
    color: #666;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(50px);
    opacity: 0;
    animation: slideUp 0.6s ease 0.3s forwards;
}

.form-group {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.form-group:nth-child(1) { animation-delay: 0.4s; }
.form-group:nth-child(2) { animation-delay: 0.5s; }
.form-group:nth-child(3) { animation-delay: 0.6s; }
.form-group:nth-child(4) { animation-delay: 0.7s; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,.form-group select,
.form-group textarea {
    padding: 1rem 1.2rem;
    border-radius: 2rem;
    display: block;
    width: 100%;
    border: none;
    box-shadow: inset 6px 6px 8px rgba(97, 97, 97, 0.075),
        6px 6px 6px rgba(255, 255, 255, 0.781);
    outline: none;
    background-color: inherit;
    color: rgb(161, 161, 161);
    font-size: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3a86ff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
}

.submit-btn {
    background: #3a86ff;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    opacity: 0;
    animation: fadeIn 0.5s ease 0.8s forwards;
}

.submit-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.map-container {
    margin-top: 50px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease 0.9s forwards;
}

#map {
    width: 100%;
    height: 100%;
}

iframe {
    width: 100%; /* Make the iframe responsive */
    height: 100%;
    border: 0;
}
@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}


/* footer */
.footer {
    background: linear-gradient(45deg, #3a3a3a, #2a2a2a);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-column {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transform: translateZ(30px);
    color: #3498db;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
    transform: translateZ(20px);
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateZ(40px) scale(1.05);
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.footer-bottom p{
    color: #fff;
}


.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.1;
}

.shape {
    position: absolute;
    background: #3498db;
    border-radius: 50%;
    animation: float 10s infinite linear;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100px, -100px) rotate(360deg); }
}

.social_card{
width: fit-content;
height: fit-content;
background-color: transparent;
display: flex;
align-items: center;
justify-content: center;
padding: 25px 25px;
gap: 20px;
}

/* for all social containers*/
.socialContainer {
width: 52px;
height: 52px;
border-radius: 50%;
background-color: rgb(44, 44, 44);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
transition-duration: 1s;
}
/* instagram*/
.containerOne:hover {
background-color: #d62976;
transition-duration: 0.3s;
}
/* twitter*/
.containerTwo:hover {
background-color: #00acee;
transition-duration: 0.3s;
}
/* linkedin*/
.containerThree:hover {
background-color: #0072b1;
transition-duration: 0.3s;
}
/* Whatsapp*/
.containerFour:hover {
background-color: #128c7e;
transition-duration: 0.3s;
}

.socialContainer:active {
transform: scale(0.9);
transition-duration: 0.3s;
}

.socialSvg {
width: 17px;
}

.socialSvg path {
fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
0% {
transform: translateY(-50px);
opacity: 0;
}

100% {
transform: translateY(0);
opacity: 1;
}
}

/* mobile card project section */

/* web-pro */
.web-pro video{
    width: 100%;
    height: 30%;
}
.explore-button {
    opacity: 0;
    transition: all 0.5s ease;
    transform: scale(0.5);
}
.explore-button.show {
    opacity: 1;
    transform: scale(1);
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.pulse-animation {
    animation: pulse 1.5s infinite;
}
/* m7_video_cont */
.m7_video_cont{
    position: relative;
}

/* mobile carousel */
.mobile-pro {
    background:radial-gradient(circle at 50% 50%, #0a4a8a, #000 45%) !important;
    padding: 1rem 10%;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    perspective: 1000px;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.carousel_card {
    position: absolute;
    left: 50%;
    top: 50%;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    object-fit: cover;
}

.carousel_card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.carousel_card-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-family:"Poppins", sans-serif;
    font-size: 1.2em;
    z-index: 2;
}

.navigation {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    margin-bottom: 150px;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid gray;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-dot.active {
    background-color: #0066ff;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: rgb(255, 255, 255);
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.carousel-button:hover {
    background: rgba(148, 148, 148, 0.7);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-titles {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 5;
}

.carousel-titles h4 {
    display: none;
    color: rgb(0, 0, 0);
    font-size: 1.5em;
    margin: 0;
    padding: 10px;
}

.carousel-titles h4.active {
    display: block;
}

/* Service page */
.m7_choose_us_section{
    background: radial-gradient(circle at 50% 50%, #0b0c0c, #000000 45%) !important;
    padding: 80px 20px;
}

/*      

        .tech-container {
            background: var(--background-gradient);
            min-height: 100vh;
        }

        .tech-container {
            margin: 0 auto;
            padding: 5rem;
        }

        .tech-services {
            padding: 5rem 0;
        }

        .tech-services__title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--text-color);
            animation: fadeIn 1s ease;
        }

        .tech-services__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .tech-service-card {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: all 0.3s ease;
            animation: fadeInUp 0.6s ease forwards;
        }

        .tech-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .tech-service-card__icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .tech-service-card:hover .tech-service-card__icon {
            transform: scale(1.1);
            color: var(--secondary-color);
        }

        .tech-service-card__title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-color);
        }

        .tech-service-card__description {
            font-size: 1rem;
            color: var(--text-color);
            line-height: 1.6;
        }

        .tech-form {
            background: white;
            max-width: 600px;
            margin: 4rem auto;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            animation: fadeIn 1s ease;
        }

        .tech-form__title {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--text-color);
        }

        .tech-form__group {
            margin-bottom: 1.5rem;
        }

        .tech-form__label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-color);
        }

        .tech-form__input,
        .tech-form__select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .tech-form__phone-group {
            display: flex;
            gap: 10px;
        }

        .tech-form__phone-code {
            width: 70px;
            background-color: #f3f4f6;
        }

        .tech-form__phone {
            flex: 1;
        }

        .tech-form__input:focus,
        .tech-form__select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
        }

        .tech-form__checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .tech-form__checkbox {
            width: 18px;
            height: 18px;
        }

        .tech-form__submit {
            width: 100%;
            padding: 1rem;
            background-color: #ef4444;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tech-form__submit:hover {
            background-color: #dc2626;
        }

        .tech-social {
            margin-top: 1.5rem;
            text-align: center;
        }

        .tech-social__text {
            color: #6b7280;
            margin-bottom: 1rem;
        }

        .tech-social__button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin: 0 0.5rem;
            border-radius: 50%;
            background: #f3f4f6;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tech-social__button:hover {
            background: #e5e7eb;
            transform: scale(1.1);
        } */

        /* career */
        :root {
            --m7-tech-primary: #2563eb;
            --m7-tech-secondary: #3b82f6;
            --m7-tech-accent: #ef4444;
            --m7-tech-dark: #1f2937;
            --m7-tech-light: #f3f4f6;
            --m7-tech-success: #22c55e;
        }

        .m7-careers {
            background: var(--m7-tech-light);
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

        /* Floating Tech Icons Background */
        .m7-careers__bg-icon {
            position: absolute;
            /* opacity: 0.1; */
            /* color: var(--m7-tech-dark); */
            z-index: 1;
            animation: floatIcon 20s infinite linear;
        }

        @keyframes floatIcon {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            50% {
                transform: translate(100px, 100px) rotate(180deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }

        .m7-careers__container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .m7-careers__header {
            text-align: center;
            color: var(--m7-tech-dark);
            padding: 3rem 0;
            position: relative;
            background-color: transparent;
            backdrop-filter: none;
        }

        .m7-careers__title {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: transparent;
            animation: titleGlow 2s infinite alternate;
        }

        @keyframes titleGlow {
            from { text-shadow: 0 0 20px rgba(37, 99, 235, 0.5); }
            to { text-shadow: 0 0 30px rgba(59, 130, 246, 0.8); }
        }

        .m7-careers__subtitle {
            color: var(--m7-tech-dark);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .m7-careers__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 2rem 0;
        }

        .m7-careers__card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .m7-careers__card:hover {
            transform: translateY(-10px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .m7-careers__card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .m7-careers__card-icon {
            width: 50px;
            height: 50px;
            background: var(--m7-tech-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .m7-careers__card-title {
            color: var(--m7-tech-dark);
            margin: 0;
            font-size: 1.5rem;
        }

        .m7-careers__card-content {
            color: var(--m7-tech-dark);
        }

        .m7-careers__skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0;
        }

        .m7-careers__skill {
            background: rgba(37, 99, 235, 0.1);
            color: var(--m7-tech-dark);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .m7-careers__apply-btn {
            background: linear-gradient(45deg, var(--m7-tech-primary), var(--m7-tech-secondary));
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            width: 100%;
            margin-top: 1rem;
            transition: all 0.3s ease;
        }

        .m7-careers__apply-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
        }

        /* Modal Styles */
        .m7-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .m7-modal__content {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            width: 100%;
            position: relative;
        }

        .m7-modal__close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .m7-modal__form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .m7-modal__form input,.m7-modal__form select,
        .m7-modal__form textarea {
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .m7-modal__form button {
            background: var(--m7-tech-primary);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 5px;
            cursor: pointer;
        }

        /* Terms and conditions */
        :root {
            --m7-primary: #2563eb;
            --m7-secondary: #3b82f6;
            --m7-accent: #ef4444;
            --m7-dark: #1f2937;
            --m7-light: #f3f4f6;
        }

        .m7-terms {
            background: linear-gradient(135deg, #fecdd3 0%, #bfdbfe 100%);
            min-height: 100vh;
        }

        .m7-terms__container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .m7-terms__card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            animation: fadeIn 1s ease;
        }

        .m7-terms__header {
            background: linear-gradient(45deg, var(--m7-primary), var(--m7-secondary));
            padding: 3rem 2rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .m7-terms__header-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
        }

        .m7-terms__circle {
            position: absolute;
            border-radius: 50%;
            background: white;
            opacity: 0.1;
        }

        .m7-terms__circle--1 {
            width: 100px;
            height: 100px;
            top: -20px;
            left: 10%;
            animation: float 10s infinite ease-in-out;
        }

        .m7-terms__circle--2 {
            width: 150px;
            height: 150px;
            bottom: -40px;
            right: 20%;
            animation: float 15s infinite ease-in-out reverse;
        }

        .m7-terms__content {
            padding: 2rem;
        }

        .m7-terms__section {
            margin-bottom: 2rem;
            padding: 1.5rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .m7-terms__section:hover {
            background: var(--m7-light);
            transform: translateX(10px);
        }

        .m7-terms__title {
            color: var(--m7-primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .m7-terms__icon {
            width: 40px;
            height: 40px;
            background: var(--m7-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .m7-terms__text {
            color: var(--m7-dark);
            line-height: 1.7;
        }

        .m7-terms__list {
            list-style: none;
            padding-left: 0;
        }

        .m7-terms__list-item {
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
        }
        
        .m7-terms__list-item::before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--m7-primary);
        }
        
        /* About Page */
        .About_Container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .About_header {
            margin-bottom: 50px;
        }

        .About_subtitle {
            color: #6b46c1;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .About_title {
            color: #ffffff;
            font-size: 32px;
            margin-bottom: 30px;
        }

        .content-wrapper {
            display: flex;
            gap: 10px;
            margin-bottom: 60px;
            justify-content: center;
            align-items: center;
        }

        .About_features {
            flex: 1;
        }

        .About_feature-card {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .About_feature-icon {
            width: 40px;
            height: 40px;
            background: #f3f4f6;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-content h3 {
            color: #ffffff;
            margin-bottom: 8px;
        }

        .feature-content p {
            color: #f3f8ff;
            font-size: 14px;
            line-height: 1.6;
        }

        .graph-image {
            flex: 1;
            background: #f8fafc;
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50%;
            height: 50%;
            margin-bottom: 15px;
        }

        .graph-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

        /* .banner-section .banner-wrapper {
            position: relative;
            display: -ms-grid;
            display: grid;
            overflow: hidden;
            height: 100%;
            padding-top: 0;
            padding-bottom: 0;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            justify-items: center;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            text-align: center;
        }
        .banner-section .text-slide {
            padding: 140px 20px 100px;
        }
        .banner-section .heading-wrap {
            color: #000000;
            font-size: 76px;
            line-height: 1;
            text-transform: uppercase;
            max-width: 670px;
            margin: 0 auto;
        }
 
        .banner-section .sub-heading {
            margin: 30px auto 45px;
            max-width: 510px;
            color: #000000;
            font-size: 14px;
        }
      
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
        }

        .stat-card {
            background: #7c60e48f;
            padding: 24px;
            border-radius: 8px;
        }

        .stat-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 16px;
        }

        .stat-number {
            color: #6b46c1;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .stat-label {
            color: #64748b;
            font-size: 14px;
        } */

                /* Background pattern container */
/* .bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
} */

/* Individual squares */
/* .square {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(35, 120, 185, 0.327);
    animation: stack 3s ease-in-out infinite;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
} */

/* Stacking animation */
/* @keyframes stack {
    0% {
        transform: translateZ(0) rotate(0deg);
    }
    50% {
        transform: translateZ(20px) rotate(180deg);
    }
    100% {
        transform: translateZ(0) rotate(360deg);
    }
} */

/* Position and timing offset for each square */
/* .square:nth-child(1) { 
    top: 10%; 
    left: 20%; 
    animation-delay: 0s;
}
.square:nth-child(2) { 
    top: 15%; 
    left: 45%; 
    animation-delay: 0.2s;
}
.square:nth-child(3) { 
    top: 25%; 
    left: 30%; 
    animation-delay: 0.4s;
}
.square:nth-child(4) { 
    top: 35%; 
    left: 40%; 
    animation-delay: 0.6s;
}
.square:nth-child(5) { 
    top: 15%; 
    left: 70%; 
    animation-delay: 0.8s;
}
.square:nth-child(6) { 
    top: 45%; 
    left: 25%; 
    animation-delay: 1s;
}
.square:nth-child(7) { 
    top: 50%; 
    left: 55%; 
    animation-delay: 1.2s;
}
.square:nth-child(8) { 
    top: 60%; 
    left: 75%; 
    animation-delay: 1.4s;
}
.square:nth-child(9) { 
    top: 75%; 
    left: 85%; 
    animation-delay: 1.6s;
}

.team-grid {
            padding: 2rem;
        }

        .team-card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(0,0,0,0.08);
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .team-card:hover::before {
            transform: scaleX(1);
        } */

        /* Team-specific colors */
        /* .python-team::before { background: #3776AB; }
        .web-team::before { background: #E44D26; }
        .ux-team::before { background: #FF6B6B; }
        .media-team::before { background: #6C5CE7; }

        .team-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            transition: transform 0.3s;
        }

        .team-card:hover .team-icon {
            transform: scale(1.1);
        }

        .team-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #2d3436;
        }

        .team-description {
            color: #636e72;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .team-stats {
            display: flex;
            justify-content: space-between;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2d3436;
        }

        .stat-label {
            font-size: 0.8rem;
            color: #636e72;
        }

        .team-members {
            display: flex;
            margin-top: 1rem;
        }

        .member-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #dfe6e9;
            border: 2px solid white;
            margin-left: -8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: #636e72;
        }

        .member-avatar:first-child {
            margin-left: 0;
        }
 */
