
/* .wsite-content-title{
    margin-top: 40px;
} */

@import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap");
html{
    font-family: 'share Tech Mono' , monospace;
    font-size: 16px;
}
body {
 
    background-color: #f8f9fa;
    color: #333;
}
/* secand section */


.containerr {
    margin: 25px;
    padding: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    max-width: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.text-sectionn {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeIn 1s ease-out;
}

.contentt {
    max-width: 80%;
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

.contentt h1 {
    font-size:25px;
    margin-bottom: 2rem;
    position: relative;
    color: #2d3436;
    letter-spacing: -0.5px;
}

.contentt h1::before {
    content: "";
    position: absolute;
    top: -1rem;
    left: 0;
    width: 3rem;
    height: 3px;
    background: linear-gradient(90deg, #2d3436 0%, #636e72 100%);
    transform: scaleX(0);
    transform-origin: left;
    animation: lineGrow 0.6s ease-out 0.4s forwards;
}

.contentt p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #2D353D;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.contentt p:hover {
    color: #2D353D;
    font-weight: 400;
        transform: translateX(5px);
}

.image-sectionn {
    position: relative;
    overflow: hidden;
    clip-path: polygon(
        0% 20%,
        20% 0%,
        100% 0%,
        100% 80%,
        80% 100%,
        0% 100%
    );
    animation: clipPathAnimate 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-sectionn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
}

.image-sectionn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: zoomOut 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes lineGrow {
    to {
        transform: scaleX(1);
    }
}

@keyframes clipPathAnimate {
    from {
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    }
    to {
        clip-path: polygon(
            0% 20%,
            20% 0%,
            100% 0%,
            100% 80%,
            80% 100%,
            0% 100%
        );
    }
}

@keyframes zoomOut {
    to {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .containerr {
        grid-template-columns: 1fr;
    }
    
    .contentt {
        max-width: 100%;
        margin: 1rem;
    }
    
    .image-sectionn {
        min-height: 50vh;
        clip-path: polygon(
            0% 10%,
            100% 0%,
            100% 90%,
            0% 100%
        );
    }

    .sectionn h1 {
        font-size: 2rem;
    }

    .sectionn  p {
        font-size: 1rem;
    }
}

@media (hover: hover) {
    .image-sectionn:hover img {
        transform: scale(1.05);
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
}
/* end secand section */
/*  three section */
.slider-containerrr {
    /* max-width: 1000px; */
    /* width: 100%; */
    margin: 25px;
    padding: 35px;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
  
    /* border-radius: 20px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .suppliers{
    margin-bottom: 35px;
  }
  
  .logo-gridd {
    display: grid;
    gap: 35px;
    margin-bottom: 10px;
    opacity: 0;
  
    margin-left: -16px;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .logo-gridd.fade.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .logo-gridd img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    background: white;
    border-radius: 7px;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .logo-gridd img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Desktop: 4 columns x 2 rows = 8 logos */
 /* Desktop: 3 columns x 3 rows = 9 logos */
/* Desktop: 5 columns x 3 rows = 15 logos */
@media (min-width: 768px) {
    .logo-gridd {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(3, 100px);
    }
  }
  
  /* Tablet: 2 columns x 2 rows = 4 logos */
  @media (max-width: 767px) and (min-width: 480px) {
    .logo-gridd {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(2, 100px);
    }
  }
  
  /* Mobile: 1 column x 2 rows = 2 logos */
  @media (max-width: 479px) {
    .logo-gridd {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(2, 100px);
    }
  }
  
  
  .controls {
    position: relative;
  }

  .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-button:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.25);
  }

  .nav-button:active {
    transform: translateY(-50%) scale(0.95);
  }

  .nav-button.prev {
    left: -80px;
  }

  .nav-button.next {
    right: -80px;
  }

  .nav-button::before {
    content: '';
    width: 15px;
    height: 15px;
    border-top: 3px solid #333;
    border-right: 3px solid #333;
    display: block;
    transition: border-color 0.3s ease;
  }

  .nav-button:hover::before {
    border-color: #000;
  }

  .nav-button.prev::before {
    transform: rotate(-135deg);
    margin-left: 5px;
  }

  .nav-button.next::before {
    transform: rotate(45deg);
    margin-right: 5px;
  }
  


/* end three section */
/*  four section */
.contactt-container {
    display: flex;
    min-height: 100vh;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contactt-info {
   
    flex: 1;
    padding: 0 50px  0 50px;
    /* margin-bottom: 160px; */
    background: #8c52ff;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contactt-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.contactt-info h1 {
    font-size:2.5rem;
    margin-bottom: 30px;
}

.infoo-details {
    margin: 30px 0;
}

.infoo-details p {
    margin: 15px 0;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.infoo-details i {
    margin-right: 15px;
    font-size: 1.2em;
}

.sociall-links {
    margin-top: 30px;
    display: flex;
    align-items: center;
  
}


  .sociall-icon {
        color: white;
       
        text-decoration: none;
        margin-right: 20px;
        font-size: 1em;
        transition: transform 0.3s;
        display: inline-flex;
        align-items: center;
}


.sociall-icon:hover {
    transform: translateY(-3px);
}

.contactt-form {
    flex: 1;
    padding: 50px;
    display: flex;
    align-items: center;
}

#contacttForm {
    width: 100%;
    max-width: 500px;
}

.formm-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.formm-group {
    position: relative;
    margin-bottom: 20px;
    flex: 1;
}

.formm-group input,
.formm-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background: transparent;
    transition: border-color 0.3s;
}

.formm-group textarea {
    height: 150px;
    resize: none;
}

.formm-group label {
    position: absolute;
    left: 10px;
    top: 50%;
    font-size: 15px;
    transform: translateY(-50%);
    background: white;
    padding: 0 5px;
    color: #666;
    transition: 0.3s;
    pointer-events: none;
}

.formm-group textarea + label {
    top: 30px;
}

.formm-group input:focus,
.formm-group textarea:focus {
    border-color: #8c52ff;
    outline: none;
}

.formm-group input:focus + label,
.formm-group textarea:focus + label,
.formm-group input:not(:placeholder-shown) + label,
.formm-group textarea:not(:placeholder-shown) + label {
    top: -6px;
    font-size: 14px;
    color: #8c52ff;
}

.submitt-btn {
    background: #8c52ff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.submitt-btn:hover {
    background: #7440e0;
}

@media (max-width: 768px) {
   .contacttt-logo{
    margin-top: 15px;
   }
   .sociall-links {
    margin-bottom: 30px;
  
  
}
    .contactt-container {
       
        flex-direction: column;
    }
    
    .formm-row {
        flex-direction: column;
        gap: 0;
    }
}

/* end four section */
/* section five */



.projects-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.projects-header {
    text-align: left;
    margin-bottom: 50px;
    /*  text-align: center; */
}

.subtitle {
    color: #c4ab5e;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.title {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 20px;
}

.description {
    color: #2D353D;
    font-weight: 400;
    max-width: 700px;
    margin: 0;
    /*   margin: 0 auto; */
}

.projects-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.slide-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.navv-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.navv-button:hover {
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

@media (max-width: 768px) {
    .projects-container {
        margin: 30px auto;
    }

    .title {
        font-size: 2rem;
    }

    .slide img {
        height: 400px;
    }

    .navv-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
/* end section five */
/* section six  */


.about-content {
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
}

.about-header h3 {
    color: #c4ab5e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-header p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #c4ab5e;
}

.stat-item h2 {
    font-size: 3rem;
    color: #c4ab5e;
    margin-bottom: 1rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.ceo-signature {
    text-align: left;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signature-img {
    max-width: 200px;
    margin-bottom: 1rem;
}

.ceo-signature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.ceo-signature p {
    color: #c4ab5e;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2.5rem;
    }

    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .stat-item h2 {
        font-size: 2.5rem;
    }
}
/* end section six */
/* final section */
.footer {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    padding: 80px 40px 30px;
    color: #2d3436;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.footer-section {
    display: flex;
    flex-direction: column;
}
#footer-logo{
    padding:34px 69px 0 69px;
}

.logo h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    -webkit-text-fill-color: transparent;
}

.logo p {
    font-size: 16px;
    color: #636e72;
    line-height: 1.6;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #2d3436;
    font-weight: 600;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background:#003153;
    border-radius: 2px;
}

.footer-section p {
    margin-bottom: 12px;
    color: #636e72;
    line-height: 1.7;
    font-size: 15px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: #636e72;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.social-link:hover {
    color: #c4ab5e;
    transform: translateX(5px);
}

.contact-btn {
    display: inline-block;
    padding: 14px 28px;
    background:#c4ab5e;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.2);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 77, 0.3);
    background: #c4ab5e;
    color: #000;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: #636e72;
    font-size: 14px;
}

.go-up {
    color: #636e72;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.go-up:hover {
    color: #c4ab5e;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer {
        padding: 60px 30px 25px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer {
        padding: 50px 25px 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-top: 40px;
        padding-top: 20px;
    }
    
    
}

.contactt-loggo {
    width: 150px;
    height: auto;
    border: 3px solid #2d3436;
    border-radius: 5px;
    padding: 2px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.contactt-loggo::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid #636e72;
    border-radius: 10px;
    opacity: 0.5;
    pointer-events: none;
}

.contactt-loggo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.contacttt-logo {
    width: 55px;
    margin-bottom: 15px;
    height: auto;
    border: 3px solid #2d3436;
    border-radius: 5px;
    padding: 2px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.contacttt-logo::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid #636e72;
    border-radius: 10px;
    opacity: 0.5;
    pointer-events: none;
}

.contacttt-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
/* end final section */
/* new is here */
.birdseye-header{
    position: static ;
    background: rgba(35, 35, 35, 0.95);
   
}
.projects-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 4rem;
}

.header h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.header h1 {
    color: #c4ab5e;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.header p {
    color: #333;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

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

.project-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-card h3 {
    padding: 1.5rem;
    color: #333;
    font-size: 1.2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .projects-section {
        padding: 3rem 1rem;
    }

    .header h1 {
        font-size: 2rem;
    }

    .header p {
        font-size: 1rem;
    }

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