:root{
    --mainColor:#09c;
}
*{
    font-family: 'HelveticaNeue LT 45';
    padding: 0;
    margin: 0;
}
body{
/* height: 10000px */
}
.container{
    width: 75%;
    margin: 0 auto;
    
}
.nav-content a{
    text-decoration: none;
}
.search-bar{
    display: flex;
    justify-content: end;
    align-items: center;
    /* position: relative; */
}
.search-bar ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 0px;
    float: right;
    padding: 12px 20px;
    padding-right: 32px;
}
.search-bar ul li{
    color: white;
    padding-right: 5px;
    padding-left: 5px;
}
.search-bar ul li a{
    position: relative;
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 10px;
}
.search-bar ul li i{
    color: white;
    
}.search-bar ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: -3px;
    background: white;
    height: 2px;
    transition: left 0.3s ease-out, right 0.3s ease-out;
}

.search-bar ul li a:hover::after {
    left: 0;
    right: 0;
}
/* ***********  end search-bar ************* */



/* ***********  start navbar ************* */
.nav-bar{
    padding-top: 10px;
    display: flex;
    align-items: center; /* Align vertically */
    justify-content: space-between;
    /* position: fixed; */
}
.logo{
    margin-right: 10px;
}
.logo img{
    width: 240px;
    height: 175px;
}
.nav-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding-left: 250px; */

}
nav{
    margin-left: 15px; 
}
nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
nav ul li{
    padding: 0 5px;
    
}
nav ul li a{
    text-decoration: none;
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    padding: 10px;
    margin: 10px;
}
.nav-content span{
    
}
nav ul li :hover {
    background-color: white;
    color: black;
    width: 100%;
}
.menu-bar {
    color: white;
    font-size: 24px;
    font-weight: 800;
    display: none;
}
@media screen and (max-width: 992px) {
    nav {
        display: none;
    }
    .menu-bar {
        display: block;
    }
}

/* ************** end navbar *************** */
.background-image{
    background-image: url("../images/5.png");       
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 60vh;
    /* position: absolute; */
}
.second-back{
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(3, 51, 51, 0.607));
    width: 100%;
    height: 60vh;
}
.about{
    /* padding: 100px; */
}
.about h1{
    text-align: center;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    line-height: 60px;
    letter-spacing: 10px;
    font-weight: 700;
    text-transform: uppercase;  
    margin-bottom: 10px;
}
.about {
    animation-name: about;
    animation-duration: 1s;
    visibility: visible;
}
@keyframes about {
    from {
        opacity: 0;
        transform: translatey(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* **********end of frist section*********** */
.xxh2 {
    animation-name: xxh2;
    animation-duration: 1s;
    visibility: visible;
}
@keyframes xxh2 {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.xxcard2 {
    animation-name: xxcard2;
    animation-duration: 3s;
    visibility: visible;
}
@keyframes xxcard2 {
    from {
        opacity: 0;
        transform: translatex(-100%);
    }
    to {
        opacity: 1;
        transform: translatey(0);
    }
}
@media screen and (max-width: 992px) {
    .container {
        width: 90%;
    }
    .search-bar ul {
        /* display: none; */
        flex-direction: row; /* Stack items vertically */
        padding: 10px 0;
        border: none;
    }
    .menu-bar {
        display: block; /* Display the menu bar */
    }
    nav {
        display: none; /* Hide default navigation */
    }
    .background-image, .second-back {
        height: 50vh; /* Reduce height for smaller screens */
    }

}


/* Mobile screens */
@media screen and (max-width: 768px) {
    .search-bar {
        display: none;
        justify-content: center; /* Center align on smaller screens */
    }
    .search-bar ul li a {
        font-size: 8px; /* Smaller text for links */
    }
    .about {
        padding: 20px 20px;
    }
    .about h1 {
        font-size: 32px;
        letter-spacing: 5px;
        line-height: 50px;
    }
    .background-image, .second-back {
        height: 40vh; /* Reduce height for smaller screens */
    }
}


/* Small Phones */
@media screen and (max-width: 576px) {
    .nav-bar{
        padding-top: 15px;
    }
    .social-sidebar{
        display: none;
    }
    .search-bar ul li a {
        font-size: 6px; /* Reduce further for very small screens */
    }
    .about h1 {
        font-size: 26px;
        line-height: 40px;
        letter-spacing: 3px;
    }
    /* .background-image, .second-back {
        height: 30vh; 
    } */
    .logo img{
        width: 120px;
        height: 70px;
    }
    .background-image{
        background-image: url("../images/5s.png");       
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        height: 30vh;
    }
    .second-back{
        background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(3, 51, 51, 0.607));
        width: 100%;
        height: 30vh;
    }
}


/* ************** start service setion *************** */
.services-sec {
    padding-bottom: 90px;
    padding-top: 45px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;

}

.services-sec h2 {
    padding-top: 23px;
    color: #092a30;
    font-size: 44px;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 20px;
    line-height: 56px;
    vertical-align: baseline;
    letter-spacing: 5px;
    word-spacing: 0px;
    font-weight: 700;
    font-style: normal;
    font-variant: normal;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    text-indent: 0px;
}

.services-sec p {
    margin-top: 40px;
    color: #092a30;
    font-size: 17px;
    line-height: 30px;
    vertical-align: baseline;
    letter-spacing: normal;
    word-spacing: 0px;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    text-decoration: none;
    text-align: center;
    text-indent: 0px;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 20px;
}

.desc-style {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ser-desc {
    color: #092a30;
    font-family: "HelveticaNeue LT 45";
    font-size: 17px;
    line-height: 30px;
    vertical-align: baseline;
    letter-spacing: normal;
    word-spacing: 0px;
    font-weight: 400;
    text-transform: none;
    text-decoration: none solid rgb(9, 42, 48);
    text-align: center;
    padding: 20px 40px;
    display: flex;
    align-items: center;
}

.card-con {
    height: 100%;
    width: 100%;
    display: flex;
    position: relative;
}

.card-content {
    width: 100%;
    text-align: center;
    padding: 5px;
    background: rgba(9, 42, 48, 0.74);
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.card-content p {
    margin: 0;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.card1,
.card2,
.card3,
.card4,
.card5,
.card6,
.card7,
.card8 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 40vh;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 1;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card1:hover,
.card2:hover,
.card3:hover,
.card4:hover,
.card5:hover,
.card6:hover,
.card7:hover,
.card8:hover {
    animation: cardHoverEffect 0.5s ease-in-out forwards;
}

.card1:hover .card-content,
.card2:hover .card-content,
.card3:hover .card-content,
.card4:hover .card-content,
.card5:hover .card-content,
.card6:hover .card-content,
.card7:hover .card-content,
.card8:hover .card-content {
    animation: contentFadeIn 0.3s ease-in-out forwards;
    /* height: 100%;     */
    width: 100%;
    background: rgba(9, 42, 48, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
}

.card1 {
    width: 30%;
    background-image: url(https://directiongoals.com/wp-content/uploads/2024/06/saas-concept-collage_23-2149399283.avif);
}

.card2 {
    width: 30%;
    background-image: url(https://directiongoals.com/wp-content/uploads/2024/06/standard-quality-control-collage-concept_23-2149595829.avif);
}

.card3 {
    width: 30%;
    background-image: url(https://directiongoals.com/wp-content/uploads/2024/06/SD-WAN-ile-SD-Access-arasindaki-farklar-nelerdir-min-scaled-1-1024x1024.jpg);
}

.card4 {
    width: 30%;
    background-image: url(https://directiongoals.com/wp-content/uploads/2024/06/office-worker-using-videocall-conference-meet-with-business-people-webcam-talking-colleagues-remote-videoconference-having-internet-conversation-teleconference-call_482257-50395.jpg);
}

.card5 {
    width: 30%;
    background-image: url(https://directiongoals.com/wp-content/uploads/2024/06/futuristic-hand-working-laptop-e1718637452285.jpg);
}

.card6 {
    width: 30%;
    background-image: url(https://directiongoals.com/wp-content/uploads/2024/06/beautiful-optical-fiber-detail_23-2149182509-1024x841.jpg);
}

.card7 {
    width: 30%;
    background-image: url(https://directiongoals.com/wp-content/uploads/2022/07/Services-05-637x494.jpg);
}

.card8 {
    width: 30%;
    background-image: url(https://directiongoals.com/wp-content/uploads/2022/11/Serv-02-637x494.jpg);
}
/* ************** end service setion *************** */

/* Laptops and medium-sized devices (max-width: 992px) */
@media screen and (max-width: 992px) {
    .card1, .card2, .card3, .card4, .card5, .card6, .card7, .card8 {
        width: 45%; /* Adjust for 2 cards per row */
    }

    .desc-style {
        flex-wrap: wrap; /* Allow items to wrap on smaller screens */
        gap: 10px; /* Add spacing between cards */
    }
}

/* Tablets and small devices (max-width: 768px) */
@media screen and (max-width: 768px) {
    .card1, .card2, .card3, .card4, .card5, .card6, .card7, .card8 {
        width: 100%; /* Stack cards vertically */
    }

    .services-sec p {
        font-size: 14px; /* Reduce paragraph font size */
    }
}

/* Mobile devices (max-width: 576px) */
@media screen and (max-width: 576px) {
    .services-sec h2 {
        font-size: 32px; /* Smaller heading size */
    }

    .services-sec p {
        font-size: 13px; /* Further reduce text size for readability */
    }

    .card-content p {
        font-size: 14px; /* Adjust card text size */
    }
}
    


/* ********************************************** */
/* ************** start get setion *************** */
.get-start{
    background-image: url("../images/all.png");
        background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    height: 75vh;
}
.get-content{
text-align: center;
padding: 150px;

}
.get-content h3{
    color: white; /* Main theme color */
    font-size: 30px;
    font-family: "Montserrat", sans-serif; /* Use the Montserrat font */
    line-height: 56px; /* Line height for proper spacing */
    vertical-align: baseline; /* Align baseline vertically */
    letter-spacing: 5px; /* Add spacing between letters */
    word-spacing: 0px; /* No extra spacing between words */
    font-weight: 700; /* Make the text bold */
    font-style: normal; /* Normal font style */
    font-variant: normal; /* No font variations */
    text-transform: uppercase; /* Convert text to uppercase */
    text-decoration: none; /* No text decorations (e.g., underline) */
    text-align: center; /* Center the text horizontally */
    text-indent: 0px; /* No indentation */
}
.get-content p{
    color: white; /* Text color */
    font-size: 17px; /* Font size for paragraph text */
    line-height: 30px; /* Line height for proper spacing */
    vertical-align: baseline; /* Align text to baseline */
    letter-spacing: normal; /* Default letter spacing */
    word-spacing: 0px; /* No additional word spacing */
    font-weight: 400; /* Normal font weight */
    font-style: normal; /* Normal font style */
    font-variant: normal; /* No font variations */
    text-transform: none; /* No text transformation */
    text-decoration: none; /* No text decorations (e.g., underline) */
    text-align: center; /* Center-align the text */
    text-indent: 0px; /* No text indentation */
    font-family: "Montserrat", sans-serif; /* Font family */
    /* margin-top: 40px; */
    /* margin-bottom: 20px;  */
}
.get-content a{
    display: inline-block;
    background-color: transparent;
    border: none;
    cursor: pointer;
    vertical-align: baseline;
    word-spacing: 0px;
    font-style: normal;
    font-variant: normal;
    text-align: center;
    text-indent: 0px;
    margin-top: 30px;
    border: 1px solid #bababa;
    font-size: 13px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    transition: 0.6s all ease;
    letter-spacing: 5px;
}
.get-content a:hover{
    color: #092a30;
    background-color: white; 
}
/* ************** end get setion *************** */
/* Tablet screens (900px and below) */
@media screen and (max-width: 900px) {
    /* Additional Section */
    .inner {
        padding: 40px;
    }
    .all-content h3 {
        font-size: 32px; /* Smaller heading font size */
        letter-spacing: 3px; /* Reduced letter spacing */
    }
    .all-content p {
        font-size: 15px; /* Adjust paragraph font size */
    }
    .all-content button {
        padding: 15px 20px;
        font-size: 12px;
    }

    /* Get Started Section */
    .get-start {
        height: 60vh; /* Adjust height for mobile screens */
    }
    .get-content {
        padding: 80px 20px;
    }
    .get-content h3 {
        font-size: 24px; /* Reduced heading size */
        line-height: 40px;
    }
    .get-content p {
        font-size: 14px; /* Smaller paragraph text */
    }
    .get-content a {
        font-size: 12px;
        padding: 12px 18px;
    }
}

/* Mobile screens (768px and below) */
@media screen and (max-width: 768px) {
    /* Additional Section */
    .inner {
        padding: 30px;
    }
    .all-content h3 {
        font-size: 28px; /* Further reduce heading size */
        letter-spacing: 2px;
    }
    .all-content p {
        font-size: 14px; /* Adjust paragraph size */
    }
    .all-content button {
        padding: 12px 18px;
        font-size: 11px;
    }

    /* Get Started Section */
    .get-start {
        height: 50vh;
    }
    .get-content {
        padding: 60px 20px;
    }
    .get-content h3 {
        font-size: 20px; /* Heading further reduced */
    }
    .get-content p {
        font-size: 13px;
    }
    .get-content a {
        font-size: 11px;
        padding: 10px 15px;
    }
}

/* Small mobile screens (480px and below) */
@media screen and (max-width: 480px) {
    /* Additional Section */
    .inner {
        padding: 20px;
    }
    .all-content h3 {
        font-size: 22px; /* Compact heading size */
        letter-spacing: 1px;
    }
    .all-content p {
        font-size: 12px; /* Smaller text */
    }
    .all-content button {
        padding: 10px 15px;
        font-size: 10px;
    }

    /* Get Started Section */
    .get-start {
        background-image: url("../images/all2.png");
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
        height: 40vh;
    }
    .get-content {
        padding: 30px 10px;
    }
    .get-content h3 {
        font-size: 18px; /* Compact heading */
    }
    .get-content p {
        font-size: 12px;
    }
    .get-content a {
        font-size: 10px;
        padding: 8px 12px;
    }
}

/* ************** end dg setion *************** */



footer {
    background-color: #102326; 
    color: #FFFFFF; 
    padding: 40px 20px;
    text-align: center;
}

footer h3 {
    margin: 10px 0;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.foot1{

}
.sub{
    display: inline-block;
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 1px solid #bababa;
    font-size: 13px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    padding: 15px 20px;
    color: white;
    transition: 0.6s all ease;
    letter-spacing: 5px;
}
.sub:hover{
    color: #092a30;
    background-color: white;
}
.foot2 button{
    
}
.foot3{

}
footer .footer-content  {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

footer .footer-section {
    flex: 1;
    min-width: 250px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

footer ul li {
    margin: 5px 0;
}

footer a {
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
}

.social-icons2 {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.social-links2 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

.social-links2 li {
    display: inline-block;
}

.social-links2 a {
    color: #ffffff;
    font-size: 1.5em;
    text-decoration: none;
    transition: transform 0.3s, color 0.3s;
}
.social-icons2 ul li {
    list-style: none;
    font-size: 16px;
    line-height: 25px;
    padding: 5px 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin: 5px 0;
    text-align: center;
}
.social-links2 a:hover {
    color: #00aaff; 
    transform: scale(1.1);
}

footer .bottom-bar {
    margin-top: 30px;
    font-size: 0.9em;
    opacity: 0.7;
}

.line2{
    
        height: 1px; /* Adjust thickness */
        background-color: #E8E8E8; /* Adjust to match the exact line color */
}
/* ************** start footer setion *************** */
/* Tablet screens (900px and below) */
@media screen and (max-width: 900px) {
    footer .footer-content {
        flex-direction: column; /* Stack sections vertically */
        align-items: center;
    }

    footer .footer-section {
        min-width: auto;
        text-align: center; /* Center the content for smaller screens */
    }

    footer .social-icons2 {
        gap: 10px;
        padding: 10px 0;
    }

    footer .bottom-bar {
        font-size: 0.8em; /* Smaller font size for mobile */
        margin-top: 20px;
    }

    footer .footer-content li {
        margin-bottom: 10px; /* Add space between links */
    }
}

/* Mobile screens (768px and below) */
@media screen and (max-width: 768px) {
    footer .footer-content {
        flex-direction: column;
        padding: 30px 15px;
    }

    footer .footer-section {
        min-width: 100%;
        text-align: center; /* Ensure all text is centered */
    }

    footer h3 {
        font-size: 1.1em; /* Smaller footer heading */
        margin: 15px 0;
    }

    footer ul li {
        margin: 8px 0; /* Adjust spacing between links */
    }

    footer .social-icons2 {
        padding: 15px 0;
        justify-content: center;
    }

    footer .social-links2 a {
        font-size: 1.2em; /* Slightly smaller social icons */
    }

    footer .bottom-bar {
        font-size: 0.75em; /* Even smaller text for mobile */
        opacity: 0.6;
    }

    footer .line2 {
        width: 100%;
    }
}

/* Small mobile screens (480px and below) */
@media screen and (max-width: 480px) {
    footer {
        padding: 30px 15px; /* Reduce padding for very small screens */
    }

    footer h3 {
        font-size: 1em; /* Further reduce heading font size */
        margin: 20px 0;
    }

    footer ul li {
        margin: 6px 0;
    }

    footer .social-icons2 {
        gap: 8px;
        padding: 10px 0;
    }

    footer .social-links2 a {
        font-size: 1.1em; /* Smaller social icon size */
    }

    footer .bottom-bar {
        font-size: 0.7em; /* Very small font for bottom bar */
    }
}
    