@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

:root {
    --head-clr: #3b7cf5;
    --font-clr: #1c1d3e;
    --second-clr: #a09dab;
    /*font-size: 10px;*/

}

html {
    background-color: #fff;
    overflow-x: hidden;

}

body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;

}

/*color: #1c1d3e; color: #3b7cf5;*/


/* ======= Home page ======= */
/* Basic reset */
body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* ======= Home page ======= */
.home {
    margin-top: 100px;
    width: 100%;
    display: flex;
    padding-bottom: 50px;
    justify-content: space-between;
    align-items: center;
}

.home .home-container {
    margin: 0 5%;
    width: 90%;
    display: block;
    padding: 20px 0 0 0;
}

.home-text {
    float: left;
    width: 50%;
    padding-top: 80px;
 }

.home-text h1 {
    font-size: 43px;
    font-weight: 500;
    line-height: 1.2em;
    text-transform: uppercase;
    color: --font-clr;
}



.home-text p {
    font-size: 16px;
    margin: 20px 0;
    font-weight: 300;
    max-width: 800px;
    color: #000000;
    text-align: justify;
  }
  

/*------ HOME -------*/

.home-image {
    float: right;
    width: 50%;
    position: relative;

}

.home-image .img {
    position: relative;
}


.home-image img {

    width: 80%;
    z-index: 1;
    float: right;

}

.home-image video {
    width: 100%;
    padding-left: 30px;
    z-index: 1;

}

.home-image .img1 {
    position: absolute;
    padding: 0;
    top: -15px;
    right: 54%;
    width: 10%;
}

.home-image .img2 {
    position: absolute;
    padding: 0;
    top: 4%;
    right: 26%;
    width: 10%;
}

.home-image .img3 {
    position: absolute;
    padding: 0;
    top: 19%;
    right: 8.5%;
    width: 10%;
}

.home-image .img4 {
    position: absolute;
    padding: 0;
    top: 53%;
    right: 12.5%;
    width: 10%;
}

.home-image .img5 {
    position: absolute;
    padding: 0;
    top: 64%;
    right: 1%;
    width: 10%;
}

.home-image .img6 {
    position: absolute;
    padding: 0;
    top: 89%;
    right: 28%;
    width: 10%;
}

.home-image .img7 {
    position: absolute;
    padding: 0;
    top: 73%;
    right: 60%;
    width: 10%;
}

.home-image .img8 {
    position: absolute;
    padding: 0;
    top: 55%;
    right: 61%;
    width: 10%;
}


.home-image .img9 {
    Position: absolute;
    padding: 0;
    top: 66%;
    right: 79%;
    width: 10%;
}

.home-image .img10 {
    position: absolute;
    padding: 0;

    top: 18%;
    right: 78%;
    width: 10%;
}

.home-image .img11 {
    position: absolute;
    padding: 0;
    top: 37%;
    right: 86%;
    width: 10%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.links li a i {
    position: absolute;
    top: 28px;
    padding-left: 5px;
}

.button {
    pointer-events: auto;
    cursor: pointer;
    background: #fff;
    border: none;
    padding: 15px 18px;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-block;
    border: 2px solid #1c1d3e;
    color: #1c1d3e;
}

.button::before,
.button::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.button--calypso {
    overflow: hidden;
    font-family: freight-display-pro, serif;
    font-size: 1.15rem;
    border-radius: 0.85rem;
    color: #fff;
}


.button--calypso span {
    display: block;
    position: relative;
    mix-blend-mode: difference;
    z-index: 10;
    letter-spacing: 10px;
    font-weight: 500;
}

.button--calypso:hover span {
    animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;

}

@keyframes MoveScaleUpInitial {
    to {
        transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }
}

@keyframes MoveScaleUpEnd {
    from {
        transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.button--calypso::before {
    content: '';
    background: #000;
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}

.button--calypso:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.button--calypso::after {
    content: '';
    background: #000;
    transform: translate3d(0, -100%, 0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.button--calypso:hover::after {
    transform: translate3d(0, 0, 0);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear;
}

  
  /* For screens between 1200px and 1600px */
  @media (min-width: 1200px) and (max-width: 1600px) {
    .home-text h1 {
        font-size: 3.5vw; /* Adjust font size */
        margin-top: 7%; /* Adjust margin as needed */
    }
  }
  
  /* For screens larger than 1600px */
  @media (min-width: 1600px) {
    .home-text h1 {
        font-size: 3vw; /* Adjust for larger screens */
        margin-top: 11%; /* Maintain negative margin if needed */
    }
  }
/* For tablets */
@media (max-width: 992px) {
    .home {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-text {
        width: 100%;
        padding-top: 80px;
    }

    .home-image {
        width: 100%;
        margin-top: 30px;
    }

    .home-text h1,
    .home-text h2 {
        font-size: 40px;
    }

    .home-text h3 {
        font-size: 18px;
    }

    .home-text p {
        font-size: 0.95em;
    }
}

/* For mobile phones */
@media (max-width: 768px) {
    .home-text {
        padding-top: 3px;
        text-align: center;
    }

    .home-text h1,
    .home-text h2 {
        font-size: 35px;
    }

    .home-text h3 {
        font-size: 16px;
    }

    .home-text p {
        font-size: 0.9em;
    }

    .home-image {
        margin-top: 20px;
    }

    .home-image img,
    .home-image video {
        padding-left: 0;
    }
}

/* For small mobile phones */
@media (max-width: 576px) {

    .home-text h1,
    .home-text h2 {
        font-size: 30px;
    }

    .home-text h3 {
        font-size: 14px;
    }

    .home-text p {
        font-size: 0.85em;
    }

    .home-image .img1,
    .home-image .img2,
    .home-image .img3,
    .home-image .img4,
    .home-image .img5,
    .home-image .img6,
    .home-image .img7,
    .home-image .img8,
    .home-image .img9,
    .home-image .img10,
    .home-image .img11 {
        width: 15%;
    }
}



/* ============================== Website Main =================================== */

.webdesign_main1 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    background-color: #E7E7E7;
    height: auto;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Container for content within AR_home */
.webdesign_home_container2 {
    width: 80%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

/* Full width for text and image rows */
.text-row2,
.image-row2 {
    width: 100%;
}

.text-row2 p {
    margin: 0;
    color: black;
    font-size: 1rem;
    text-align: justify;
}

.text-row2 h2 {
    text-align: left;
    font-weight: 350;
    text-transform: uppercase;
    font-size: 36px;
}


/* Responsive image */
.image-row2 img {
    width: 90%;
    height: auto;
    max-width: 600px;
}

/* Responsive design for tablet and mobile views */
@media (max-width: 901px) {
    .webdesign_home_container2 {
        flex-direction: column;
    }

    .text-row2,
    .image-row2 {
        width: 100%;
    }

    .text-row2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .text-row2 p {
        font-size: 1.2rem;
        /* Adjusting font size for readability on smaller screens */
    }

    .text-row2 h2 {
        text-align: center;
    }

    .image-row2 img {
        width: 100%;
    }
}

/* ============================== Industries =================================== */
.webdesign_industry {
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.webdesign_industry h3 {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    justify-content: center;
    align-items: center;
}

.icon-container1 {
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 30px;
    justify-content: center;
    /* Centers the grid items horizontally */
    align-items: center;
    /* Centers the grid items vertically */
}

.icon_contain {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Centers content vertically */
    align-items: center;
    /* Centers content horizontally */
    text-align: center;
}

.icon2 {
    display: flex;
    justify-content: center;
    /* Center the icon image horizontally */
    align-items: center;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border: 2px black solid;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.icon2 img {
    width: 60px;

    height: 60px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.icon_contain span {
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    color: #333;
}

/* Responsive styles */
@media (max-width: 991px) {
    .icon2-container1 {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        grid-gap: 25px;
    }

    .icon2 img {
        width: 55px;
        height: 55px;
    }

    .icon_contain span {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .icon2-container1 {
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
        grid-gap: 20px;
    }

    .icon2 img {
        width: 50px;
        height: 50px;
    }

    .icon_contain span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .icon2-container1 {
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }

    .icon2 {
        padding: 15px;
    }

    .icon2 img {
        width: 45px;
        height: 45px;
    }

    .icon2 span {
        font-size: 11px;
    }
}

/*===================================================== Types =======================================================*/
.Types {

    padding: 20px;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;

    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 6px 6px 6px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 260px;
    width: 100%;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.card h2 {
    margin-top: 0;
    font-size: 1.5em;
    color: #333;
}

.card p {
    font-size: 14px;
    color: #666;
    text-align: justify;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .grid-container {
        gap: 20px;
    }

    .card h2 {
        font-size: 1.3em;
    }

    .card p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .card {
        max-width: 100%;
    }

    .card h2 {
        font-size: 1.2em;
    }

    .card p {
        font-size: 12px;
    }
}

/*===================================================== webdesign ===================================================== */
.webdesign {
    padding: 20px;
}

.webdesign h3 {
    font-size: 30px;
    text-align: center;
}

.webdesign p {
    padding: 10px;
    width: 80%;
    font-size: 15px;
    text-align: center;
    margin: auto;
}

.webdesign_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
}

.webdesign_content {
    display: flex;
    align-items: center;
    /* Center items vertically in a row layout */
    justify-content: space-between;
    /* Space between text and image */
    gap: 20px;
}

.webdesign_text h4 {
    text-align: center;
    font-size: 25px;
}

.webdesign_text p {
    text-align: justify;
}


.webdesign_text {
    flex: 1;
    /* Takes up available space on the left side */
    max-width: 50%;
    text-align: center;
    /* Prevents the text from growing too large */
}

.webdesign_video {
    flex: 1;
    /* Takes up available space on the right side */
    max-width: 50%;
    /* Prevents the video from growing too large */
}

.webdesign_video video {
    width: 100%;
    /* Full width of the container */
    height: auto;
    /* Maintain aspect ratio */
    border-radius: 8px;
    /* Optional: Add rounded corners to the video container */
}

.webdesign_image {
    flex: 1;
    /* Takes up available space on the right side */
    max-width: 50%;
    /* Prevents the image from growing too large */
}

.webdesign_image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    /* Optional: Add rounded corners to the image */
}

@media (max-width: 900px) {
    .webdesign_content {
        flex-direction: column;
        /* Switch to column layout below 900px */
        align-items: center;
        /* Center items horizontally in column layout */
    }

    .webdesign_text,
    .webdesign_video {
        max-width: 100%;
        /* Allow text and image to take full width in column layout */
        text-align: center;
        /* Center text for better readability */
    }

    .webdesign_video video {
        width: 100%;
        /* Keep image aspect ratio */
    }
}

.social-icons {
    display: flex;
    justify-content: center; /* Centers the icons horizontally */
    align-items: center; /* Centers the icons vertically */
    gap: 10px; /* Space between icons, adjust as needed */
  }
  
  .social-icons a {
    color: #000; /* Adjust color as needed */
    text-decoration: none; /* Removes underline from links */
  }
  
  .social-icons i {
    font-size: 16px; /* Adjust size of icons as needed */
  }
  
  /* Optional: Add responsive design */
  @media (max-width: 600px) {
    .social-icons i {
        font-size: 20px; /* Smaller size on smaller screens */
    }
  }