@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #222;
}

h4 {
    font-size: 20px;
    color: #222;
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

h3 {
    color: #5e5e5e;
}
p {
    font-size: 12px;
    color: #d7d7d7;
    text-align: center;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    margin: 40px 0;
}

body {
    width: 100%;
    background-color: #293040b9;
}

/* Header start*/
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: linear-gradient(163deg, #474f5f 0%, #171e2e 100%);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

.logo {
    width: 300px;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2222;
}

#navbar li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #C9AD8B;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: #D5B263;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #bb963f;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

.contact-form-container {
    position: relative;
    background: linear-gradient(45deg, #775d3a 0%, #8f7047 25%, #997950 50%, #8f7047 75%, #775d3a 100%);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 160px;
    margin-bottom: 60px;
    height: 200px;
    overflow: hidden; /* Ensure overlay stays inside */
    z-index: 0;
  }
.contact-form-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3); /* Change alpha to control darkness */
    z-index: 1;
    border-radius: 8px;
    pointer-events: none; /* Let clicks pass through */
  }
  .contact-form-container > * {
    position: relative;
    z-index: 2;
  }
  
.contact-form-container h1 {
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: lightgray;
}
.contact-form-container:hover {
    box-shadow: 0px 0px 30px 1px #fff;
}





/*Home page*/
#hero {
    background-image: url("img/backHome.png");
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h4 {
    padding-bottom: 15px;
    color: white;
}

#hero h2 {
    color: white;
}

#hero p {
    color: lightgray;
}

#hero h1 {
    color: #C9AD8B;
}

#hero button, button {
    --green: #1BFD9C;
    font-size: 15px;
    font-weight: 700;
    padding: 0.7em 2.7em;
    letter-spacing: 0.06em;
    position: relative;
    font-family: inherit;
    border-radius: 0.6em;
    overflow: hidden;
    transition: all 0.3s;
    line-height: 1.4em;
    border: 2px solid var(--green);
    background: linear-gradient(to right, rgba(27, 253, 156, 0.1) 1%, transparent 40%,transparent 60% , rgba(27, 253, 156, 0.1) 100%);
    color: var(--green);
    box-shadow: inset 0 0 10px rgba(27, 253, 156, 0.4), 0 0 9px 3px rgba(27, 253, 156, 0.1);
    margin-top: 10px;
}

#hero button::before, button::before {
    content: "";
    position: absolute;
    left: -4em;
    width: 4em;
    height: 100%;
    top: 0;
    transition: transform .4s ease-in-out;
    background: linear-gradient(to right, transparent 1%, rgba(27, 253, 156, 0.1) 40%,rgba(27, 253, 156, 0.1) 60% , transparent 100%);
}

#hero button:hover, button:hover {
    color: #82ffc9;
    cursor: pointer;
    box-shadow: inset 0 0 10px #1bfd9c99, 0 0 9px 3px #1bfd9c33;
}

#hero button:hover::before {
    transform: translateX(15em);
}

/* feature */

#feature {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 40px;
    background-color: #293040b9;
    padding-top: 120px;
}

.card {
    width: 190px;
    height: 254px;
    background-image: linear-gradient(163deg, #d4bfa6 0%, #ebac1a 100%);
    border-radius: 20px;
    transition: all .3s;
}
   
.card2 {
    width: 190px;
    height: 254px;
    padding: 25px 20px;
    background-color: #293040;
    border-radius: 18px;
    transition: all .2s;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 3333;
}

.hamburger span {
    height: 2px;
    width: 25px;
    background: #C9AD8B;
    margin: 4px 0;
    transition: all 0.3s ease;
}
#navbar ul {
    display: flex;
}

#navbar ul li {
    list-style: none;
}
   
.card2:hover, .contact-form-container:hover {
    transform: scale(0.98);
    border-radius: 20px;
}
   
.card:hover {
    box-shadow: 0px 0px 30px 1px #D5B263;
}

.card2 img {
    width: 150px;
}

.card2 p {
    color: lightgray;
}


#whatWeDo {
    background-color: #293040b9;
    padding-top: 150px;
} 
.whatWeDoCard {
    width: 100%;
    height: 60vh;
    border-radius: 30px;
    background: #212121;
    box-shadow: 15px 15px 30px rgb(25, 25, 25),
                -15px -15px 30px rgb(112, 112, 112);
    padding: 40px 200px;
    text-align: center;
}

.whatWeDoCard h2 {
    color: #C9AD8B;
    margin-bottom: 60px;
}

.whatWeDoCard p {
    color: lightgray;
    font-size: large;
    line-height: 2em;
}
   
   .card5Container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 70px;
   }
.card5 {
    overflow: visible;
    width: 230px;
    height: 300px;
  }
  
  .content {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 300ms;
    box-shadow: 0px 0px 10px 1px #000000ee;
    border-radius: 5px;
  }
  
  .front, .back {
    background-color: #151515;
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .back {
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .back img {
    width: 55%;
    height: auto;
  }
  
  .back::before {
    position: absolute;
    content: ' ';
    display: block;
    width: 160px;
    height: 160%;
    background: linear-gradient(90deg, transparent, #1bfd9c99, #82ffc9, #82ffc9, #1bfd9c99, transparent);
    animation: rotation_481 5000ms infinite linear;
  }
  .back-content {
    position: absolute;
    width: 99%;
    height: 99%;
    background-color: #151515;
    border-radius: 5px;
    color: #C9AD8B;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  
  .card5:hover .content {
    transform: rotateY(180deg);
  }
  
  @keyframes rotation_481 {
    0% {
      transform: rotateZ(0deg);
    }
  
    0% {
      transform: rotateZ(360deg);
    }
  }
  
  .front {
    transform: rotateY(180deg);
    color: white;
  }
  
  .front .front-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .front-content .badge {
    background-color: #00000055;
    padding: 2px 10px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    width: fit-content;
  }
  
  .description {
    box-shadow: 0px 0px 10px 5px #00000088;
    width: 100%;
    padding: 10px;
    background-color: #00000099;
    backdrop-filter: blur(5px);
    border-radius: 5px;
  }
  
  .title {
    font-size: 11px;
    max-width: 100%;
  }
  
  .title p {
    width: 100%;
  }
  
  .card-footer {
    color: #ffffff88;
    margin-top: 5px;
    font-size: 8px;
  }
  
  .front .img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #C9AD8B;
    position: relative;
    filter: blur(15px);
    animation: floating 2600ms infinite linear;
  }
  
  #bottom {
    background-color: #C9AD8B;
    left: 50px;
    top: 0px;
    width: 150px;
    height: 150px;
    animation-delay: -800ms;
  }
  
  #right {
    background-color: #C9AD8B;
    left: 160px;
    top: -80px;
    width: 30px;
    height: 30px;
    animation-delay: -1800ms;
  }
  
  @keyframes floating {
    0% {
      transform: translateY(0px);
    }
  
    50% {
      transform: translateY(10px);
    }
  
    100% {
      transform: translateY(0px);
    }
  }
  
  #learnMoreDealsButton {
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff80;
    text-shadow: none;
    background: transparent;
    cursor: pointer;
    box-shadow: transparent;
    border: 1px solid #ffffff80;
    transition: 0.5s ease;
    user-select: none;
    width: 100%;
    height: auto;
  }
  
  #learnMoreDealsButton:hover, #learnMoreDealsButton:focus, model-viewer:focus {
    color: #ffffff;
    background: rgba(27, 253, 156, 0.4);
    border: 1px solid rgba(27, 253, 156, 0.4);
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 20px #ffffff;
    box-shadow: 0 0 5px rgba(27, 253, 156, 0.4), 0 0 20px rgba(27, 253, 156, 0.4), 0 0 50px rgba(27, 253, 156, 0.4),
      0 0 100px rgba(27, 253, 156, 0.4);
  }
  
  

#spiderSection {
    background-color: #293040b9;
}
.spiderDiv {
    width: 100%;
    height: 60vh;
    border-radius: 30px;
    background: #212121;
    box-shadow: 15px 15px 30px rgb(25, 25, 25),
                -15px -15px 30px rgb(112, 112, 112);
    padding: 40px 200px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.spiderDiv h2 {
    color: #C9AD8B;
    margin-bottom: 60px;
}

.spiderDiv p {
    color: lightgray;
    font-size: large;
    line-height: 2em;
}

#spider {
    width: 60%; /* Adjust size */
    height: 60%; /* Adjust size */
    pointer-events: auto;
}
/* Deals */

#deals {
    text-align: center;
    background-color: #293040b9;
    padding-top: 120px;
}

#deals h4 {
    padding-bottom: 120px;
    color: lightgray;
}

#deals h2 {
    padding-bottom: 20px;
    color: #C9AD8B;
}




#contact {
    background-color: #293040b9;
    text-align: center;
    padding-top: 160px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

#contact h2 {
    color: #C9AD8B;
    margin-bottom: 40px;
}

#contact p {
    color: lightgray;
    font-size: large;
    line-height: 2em;
    margin-bottom: 40px;
}

#socialsOuterContainer {
    width: 80%;
    height: auto;
    padding: 40px 10px;
    background: black;
    border-radius: 20px;
    box-shadow: 0 0 20px black;
}

.socialButtonContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .socialButton {
    width: 110px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(to top right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    box-shadow: 0 10px 15px rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease-out;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .socialButton:hover {
    transform: scale(1.1) rotate(3deg);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(to top right, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.4));
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
  }
  
  .socialButton:active {
    transform: scale(0.95) rotate(0deg);
  }
  
  .glow {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.7s ease-out;
  }
  
  .socialButton:hover .glow {
    transform: translateX(100%);
  }
  
  .socialIcon {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
  }
  
  .socialIcon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    color: white;
    transition: color 0.3s ease;
  }
  
  .socialButton:hover .icon svg {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .socialButton-multi {
    border-color: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  }
  
  .socialButton-multi:hover {
    border-color: rgba(241, 99, 158, 0.1);
    background: linear-gradient(to top right, rgba(241, 99, 158, 0.1), rgba(0, 0, 0, 0.4));
    box-shadow: 0 15px 30px rgba(241, 99, 158, 0.1);
  }
  
  .socialButton-blue {
    border-color: #0072b133;
  }
  
  .socialButton-blue:hover {
    border-color: #0072b180;
    background: linear-gradient(to top right, #0072b11a, rgba(0, 0, 0, 0.4));
    box-shadow: 0 15px 30px #0072b14d;
  }
  
  .socialButton-blue svg {
    color: #0072b1;
  }
  
  .socialButton-blue:hover svg {
    color: #2288be;
  }
  
  .socialButton-red {
    border-color: rgba(239, 68, 68, 0.2);
  }
  
  .socialButton-red:hover {
    border-color: rgba(239, 68, 68, 0.5);
    background: linear-gradient(to top right, rgba(239, 68, 68, 0.1), rgba(0, 0, 0, 0.4));
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.3);
  }
  
  .socialButton-red svg {
    color: #ef4444;
  }
  
  .socialButton-red:hover svg {
    color: #f87171;
  }

#footer {
    background-color: #293040b9;
}

#footer .cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#footer .column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.column .logo {
    width: 600px;
    margin-bottom: 30px;
}

.column h4 {
    font-size: 24px;
    padding-bottom: 20px;
    color: #fff;
}

.column p {
    font-size: 16px;
    margin: 15px 15px 8px 0;
    color: white;
}

.copyright {
    text-align: center;
}

@media (max-width: 280px) {
    #header {
        padding: 10px 20px;
    }
   
    #navbar {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 450px;
        background-color: #293040;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-evenly;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    #navbar ul {
        
        width: 100%;
    }

    #navbar ul li {
        width: 100%;
        text-align: left;
        padding: 15px 30px;
    }

    #navbar ul li a {
        display: block;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    #navbar button {
        display: flex ;
    }

    #navbar.active {
        transform: translateX(0);
    }


    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .logo {
        width: 100px;
    }

    .column .logo {
        width: 150px;
    }

    h1 {
        font-size: 28px;
        line-height: 36px;
    }
    h2 {
        font-size: 24px;
        line-height: 30px;
    }
    h4 {
        font-size: 12px;
    }
    h6 {
        font-size: 8px;
    }
    p {
        font-size: 8px;
    }
    .section-p1 {
        padding: 5px;
    }
    .contact-form-container {
        padding: 5px;
        height: auto;
    }
    #hero {
        height: 50vh;
        background-position: top 30% right 58%;
        padding: 0 10px;
    }
    #hero h1 {
        font-size: 14px;
        line-height: 18px;
        margin-right: 150px;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    #hero h2 {
        font-size: 12px;
        line-height: 18px;
        margin-right: 150px;
        padding-bottom: 0px;
    }
    #hero h4 {
        font-size: 8px;
        padding-bottom: 0px;
    }
    #hero p {
        font-size: 4px;
        margin-right: 150px;
    }
    #hero button {
        font-size: 10px;
        padding: 0.5em 1em;
    }
    .card {
        margin-bottom: 30px;
    }
    .pro-container {
       flex-wrap: wrap;
        justify-content: space-evenly;
    }

   .card3, .card4{
    margin-bottom: 30px;
   }
   
   .contact-form-container button{
        margin-top: 10px; /* Adjust the margin as needed */
        left:200px;
        margin-bottom: 10px;
    }

    .contact-form-container{
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .contact-form-container h1 {
        font-size: 24px;
       }

    .contact-form-container button {
        margin-top: 0px; /* Adjust the margin as needed */
        left: 0px;
    }

    .column .logo {
        width: 100px;
        margin-bottom: 20px;
    }
    h1 {
        font-size: 36px;
        line-height: 48px;
    }
   
    h4 {
        font-size: 16px;
    }
    h6 {
        font-size: 10px;
    }
    p {
        font-size: small;
    }
    .whatWeDoCard {
        height: auto;
        padding: 40px 40px;
        margin-bottom: 40px;
    }
    .whatWeDoCard p {
        font-size: medium;
        line-height: 1.5em;
    }
    .spiderDiv {
        height: 80vh;
        padding: 40px 40px;
        margin-bottom: 40px;
    }
    .spiderDiv h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .spiderDiv p {
        line-height: 1em;
    }
    #spider {
        height: 40%;
    }
    #socialsOuterContainer {
        width: 100%;
    }
}


/* media query */
@media (min-width:281px) and (max-width:399px) {

    #header {
        padding: 20px 40px;
    }
   
    #navbar {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 250px;
        background-color: #293040;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-evenly;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    #navbar ul {
        
        width: 100%;
    }

    #navbar ul li {
        width: 100%;
        text-align: left;
        padding: 15px 30px;
    }

    #navbar ul li a {
        display: block;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    #navbar button {
        display: flex ;
    }

    #navbar.active {
        transform: translateX(0);
    }


    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    .card {
        margin-bottom: 30px;
    }
    .pro-container {
       flex-wrap: wrap;
        justify-content: space-evenly;
    }

   .card3, .card4{
    margin-bottom: 30px;
   }
   
   
   .contact-form-container button{
        margin-top: 10px; /* Adjust the margin as needed */
        left:200px;
    }

    .logo {
        width: 150px;
    }
        
    h1 {
        font-size: 36px;
        line-height: 48px;
    }
    h2 {
        font-size: 32px;
        line-height: 40px;
    }
    h4 {
        font-size: 16px;
    }
    h6 {
        font-size: 10px;
    }
    p {
        font-size: 10px;
    }
    .section-p1 {
        padding: 10px;
    }
    .contact-form-container {
        padding: 10px;
        height: auto;
    }
    .contact-form-container h2{
        font-size: small;
    }
    #hero {
        height: 60vh;
        background-position: top 30% right 58%;
        padding: 0 20px;
    }
    #hero h1 {
        font-size: 18px;
        line-height: 24px;
        margin-right: 200px;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    #hero h2 {
        font-size: 16px;
        line-height: 24px;
        margin-right: 200px;
        padding-bottom: 0px;
    }
    #hero h4 {
        font-size: 10px;
        padding-bottom: 0px;
    }
    #hero p {
        font-size: 6px;
        margin-right: 200px;
    }
    #hero button {
        font-size: 12px;
        padding: 0.5em 1.5em;
    }

    .contact-form-container{
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .contact-form-container h1 {
        font-size: 24px;
       }
       
       .contact-form-container button{
            margin-top: 0px; /* Adjust the margin as needed */
            left:0px;
        }
    
        .column .logo {
            width: 200px;
            margin-bottom: 30px;
        }
        .whatWeDoCard {
            height: auto;
            padding: 40px 40px;
            margin-bottom: 40px;
        }
        .whatWeDoCard p {
            font-size: medium;
            line-height: 1.5em;
        }
        .spiderDiv {
            height: 80vh;
            padding: 40px 40px;
            margin-bottom: 40px;
        }
        .spiderDiv h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        .spiderDiv p {
            line-height: 1em;
        }
        #spider {
            height: 40%;
        }
        #socialsOuterContainer {
            width: 100%;
        }

}
@media (min-width:400px) and (max-width:639px) {

    #header {
        padding: 20px 40px;
    }
   
    #navbar {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 250px;
        background-color: #293040;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-evenly;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    #navbar ul {
        
        width: 100%;
    }

    #navbar ul li {
        width: 100%;
        text-align: left;
        padding: 15px 30px;
    }

    #navbar ul li a {
        display: block;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    #navbar button {
        display: flex ;
    }

    #navbar.active {
        transform: translateX(0);
    }


    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    .card {
        margin-bottom: 30px;
    }
    .pro-container {
       flex-wrap: wrap;
        justify-content: space-evenly;
    }

   .card3, .card4{
    margin-bottom: 30px;
   }
   
   .contact-form-container{
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
   }
   
   .contact-form-container button{
        margin-top: 10px; /* Adjust the margin as needed */
        left:200px;
    }

    .logo {
        width: 150px;
    }
        
    
    .column .logo {
        width: 500px;
        margin-bottom: 30px;
    }
    h1 {
        font-size: 36px;
        line-height: 48px;
    }
    h2 {
        font-size: 32px;
        line-height: 40px;
    }
    h4 {
        font-size: 16px;
    }
    h6 {
        font-size: 10px;
    }
    p {
        font-size: 10px;
    }
    .section-p1 {
        padding: 10px;
    }
    .contact-form-container {
        padding: 10px;
        height: auto;
    }
    #hero {
        height: 60vh;
        background-position: top 30% right 52%;
        padding: 0 20px;
    }
    #hero h1 {
        font-size: 18px;
        margin-right: 260px;
        line-height: 24px;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    #hero h2 {
        font-size: 16px;
        line-height: 24px;
        margin-right: 260px;
        padding-bottom: 0px;
    }
    #hero h4 {
        font-size: 10px;
        padding-bottom: 0px;
    }
    #hero p {
        font-size: 6px;
        margin-right: 250px;
    }
    #hero button {
        font-size: 12px;
        padding: 0.5em 1.5em;
    }
    .whatWeDoCard {
        height: auto;
        padding: 40px 40px;
        margin-bottom: 40px;
    }
    .whatWeDoCard p {
        font-size: medium;
        line-height: 1.5em;
    }
    .contact-form-container{
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
   }
   .contact-form-container h1 {
    font-size: 24px;
   }
       
       .contact-form-container button{
            margin-top: 10px; /* Adjust the margin as needed */
            left:0px;
        }
    
        .column .logo {
            width: 300px;
            margin-bottom: 30px;
        }
        .spiderDiv {
            height: 80vh;
            padding: 40px 40px;
            margin-bottom: 40px;
        }
        .spiderDiv h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        .spiderDiv p {
            line-height: 1em;
        }
        #spider {
            height: 40%;
        }
        #socialsOuterContainer {
            width: 100%;
        }

}
@media (min-width:640px) and (max-width:950px) and (min-height:280px) and (max-height:500px) {
    h1 {
        font-size: 36px;
        line-height: 48px;
    }
    h2 {
        font-size: 32px;
        line-height: 40px;
    }
    h4 {
        font-size: 16px;
    }
    h6 {
        font-size: 10px;
    }
    p {
        font-size: 10px;
    }
    .section-p1 {
        padding: 10px;
    }
    .contact-form-container {
        padding: 10px;
        height: auto;
    }
    #hero {
        height: 60vh;
        background-position: top 30% right 52%;
        padding: 0 20px;
    }
    #hero h1 {
        font-size: 18px;
        margin-right: 260px;
        line-height: 24px;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    #hero h2 {
        font-size: 16px;
        line-height: 24px;
        margin-right: 260px;
        padding-bottom: 0px;
    }
    #hero h4 {
        font-size: 10px;
        padding-bottom: 0px;
    }
    #hero p {
        font-size: 6px;
        margin-right: 250px;
    }
    #hero button {
        font-size: 12px;
        padding: 0.5em 1.5em;
    }
}
@media (min-width:640px) and (max-width:950px) {
    /* #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        z-index: 2222;
        position: fixed;
        top: 0;
        right: 0px;
        height: 100vh;
        width: 300px;
    } */
    #header {
        padding: 20px 40px;
    }
    .logo {
        width: 200px;
    }
    #navbar li {
        padding: 0 10px;
    }
    
    #navbar li a {
        font-size: 14px;
        font-weight: 600;
    }
    #hero {
        height: 80vh;
        background-position: top 30% right 50%;
        padding: 0 30px;
    }
    
    #hero h2 {
        margin-right: 300px;
    }
    
    #hero p {
        margin-right: 490px;
        text-align: left;
    }
    
    #hero h1 {
        margin-right: 400px;
    }
    
    #hero button, .contact-form-container button {
        margin-right: 400px;
    }
    .whatWeDoCard {
        height: auto;
        padding: 40px 100px;
    }
    .card {
        margin-bottom: 30px;
    }
    .pro-container {
       flex-wrap: wrap;
        justify-content: space-evenly;
    }

   .card3, .card4{
    margin-bottom: 30px;
   }

   
   
   .contact-form-container{
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
   }
   
   .contact-form-container button{
        margin-top: 10px; /* Adjust the margin as needed */
        left:200px;
    }

    .column .logo {
        width: 500px;
        margin-bottom: 30px;
    }
    #socialsOuterContainer {
        width: 100%;
    }
    .spiderDiv {
        height: 80vh;
        padding: 40px 100px;
    }
    .spiderDiv h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .spiderDiv p {
        line-height: 1em;
    }
    

}
@media (min-width:951px) and (max-width:1280px) {
    #header {
        padding: 20px 40px;
    }
    .logo {
        width: 200px;
    }
    #navbar li {
        padding: 0 10px;
    }
    
    #navbar li a {
        font-size: 14px;
        font-weight: 600;
    }
    #hero {
        height: 80vh;
        background-position: top 30% right 50%;
        padding: 0 40px;
    }
    
    #hero h2 {
        margin-right: 600px;
       
    }
    
    #hero p {
        margin-right: 650px;
        text-align: left;
    }
    
    #hero h1 {
        margin-right: 600px;
    }
    
    #hero button, .contact-form-container button {
        margin-right: 400px;
    }
    .whatWeDoCard {
        height: auto;
    }
    #feature {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-wrap: wrap;
        background-color: #293040b9;
        padding: 40px 20px;
    }
    
    .card {
        width: 190px;
        height: 254px;
        background-image: linear-gradient(163deg, #d4bfa6 0%, #ebac1a 100%);
        border-radius: 20px;
        transition: all .3s;
    }
       
    .card2 {
        width: 190px;
        height: 254px;
        padding: 25px 20px;
        background-color: #293040;
        border-radius: 18px;
        transition: all .2s;
    }
       
    .pro-container {
       flex-wrap: wrap;
        justify-content: space-evenly;
        max-width: 800px;
        align-self:  center;
        margin: 0 auto;



    }

   .card3, .card4{
    margin-bottom: 30px;
   }
   
   .contact-form-container{
        height: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
   }
   
   .contact-form-container button{
        margin-top: 10px; /* Adjust the margin as needed */
        left:200px;
    }

    .column .logo {
        width: 500px;
        margin-bottom: 30px;
    }
 
}
 .form-row {
    margin-bottom: 10px;
}

.form-input {
    display: block;
}

.form-error {
    color: red;
}

html {
    scroll-behavior: smooth;
}
