* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;    
}

/* Block horizontal scroll on all screen sizes */
body, html {
    overflow-x: hidden;
}

.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)),url(../../images/headerLB1.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.pheader {
    min-height: 10vh;
    width: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5),rgba(255, 255, 255, 0.5)),url(../../images/headerLB1.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img {
    width: 150px;
}
.nav-links {
    flex: 1;
    text-align: right;
}
.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
   
}
.nav-links ul li a {
    color: #06416f;
    text-decoration: none;
    font-size: 18px;
}
.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #06416f;
    display: block;
    margin: auto;
    transition: .5s;
}
.nav-links ul li:hover::after {
    width: 100%;
}
.text-box {
    width: 90%; 
    color: #06416f;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1 {
    font-size: 52px;
}
.text-box p {
    margin: 10px 0 40px;
    font-size: 16px;
}
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #df7366;
    padding: 18px 34px;
    font-size: 15px;
    background: #df7366; 
    position: relative;
    cursor: pointer;
}
.hero-btn:hover {
    background: linear-gradient(#df7366, #cc4739 );
    transition: 1s;
}
nav .fa{
    display: none;
}


 /*  Bannder */
.Banner {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 90px;
    padding-bottom: 20px;
}
h1{
    color: #06416f;
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #06416f;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

/* ------ Carousel ------ */
carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 10vh;
    background: linear-gradient(#ECEFFE, #CED6FB);
    /* background: linear-gradient(135deg, #e6f2ff 0%, #cce0ff 100%); */
}

.card-wrapper {
    max-width: 100%;
    margin: 0 60px 35px;
    padding: 20px 10px;
    overflow: hidden;
}

.card-list .card-item {
    list-style: none;
}

.card-list .card-item .card-link {
    user-select: none;
    display: block;
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
    transition: 0.2s ease;
    height:max-content;
}

.card-list .card-item .card-link:hover {
    border-color: #5372F0;
}

.card-list .card-item .card-image {
    width: 100%;
    aspect-ratio: inherit;
    object-fit: cover;
    border-radius: 10px;
}

.card-list .card-link .badge {
    color: #5372f0;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 16px 0 18px;
    background: #DDE4FF;
    width: fit-content;
    border-radius: 50px;
}

.card-list .card-link .card-title {
    font-size: 1.19rem;
    color: #000;
    font-weight: 600;
}

.card-list .card-link .card-button {
    height: 35px;
    width: 35px;
    color: #5372F0;
    border-radius: 50%;
    margin: 30px 0 5px;
    background: none;
    cursor: pointer;
    border: 2px solid #5372F0;
    transform: rotate(-45deg);
    transition: 0.4s ease;
}

.card-list .card-link:hover .card-button {
    color: #FFF;
    background: #5372F0;
}


/* ------ Services - CA - DataSecurity ------ */
/*  */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 0px;
        }
        .CA-content {
            max-width: 1500px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        .DS-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }

       h2.section-title {
            text-align: center;
            margin: 50px 0 30px;
            font-size: 2rem;
            position: relative;
        }
        h2.section-title:after {
            content: "";
            display: block;
            width: 80px;
            height: 3px;
            background: #3498db;
            margin: 15px auto 0;
        }
        .services-container, .process-container, .security-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        .card {
            background-color: #f9f9f9;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .card h3 {
            color: #3498db;
            margin-top: 0;
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
        }	
        .icon {
            font-size: 2.5rem;
            color: #3498db;
            margin-bottom: 10px;
            width: 40%;
        }
        .icon1 {
            font-size: 2.5rem;
            color: #24313a;
            margin-bottom: 10px;
            width: 100%;
        }
        .ReadMore{
            text-decoration: none; 
            color:blue;
        }
        .btn {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            margin-top: auto;
            align-self: flex-start;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #2980b9;
        }
        .btn-container {
            display: flex;
            gap: 10px;
            margin-top: auto;
        }
        

/* Footer Styles */
footer {
    /* background: linear-gradient(135deg, #e6f2ff 0%, #cce0ff 100%); */
    background-image: linear-gradient(rgba(255, 255, 255, 0.5),rgba(255, 255, 255, 0.5)),url(../../images/headerLB1.jpg);
    color: #2c3e50;
    padding: 40px 0 0 0;
    font-size: 16px;
}
footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 24px;
}
.footer-column {
    flex: 1 1 180px;
    min-width: 180px;
}
.footer-column h3 {
    color: #2c3e50;
    margin-bottom: 16px;
    font-size: 20px;
    letter-spacing: 1px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul li a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-column ul li a:hover {
    color: #3498db;
    text-decoration: underline;
}

.footer-column ul li {
    font-size: 15px;
}

.copyright {
    text-align: center;
    padding: 18px 0 12px 0;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
    letter-spacing: 0.5px;
}


/* Contact Container */

    .contact-container{
        height: auto;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        background-color: #fff;
        padding: 2%;
    }
    .contact-left {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: auto;
        /* height: 80vh; */
    }
    .contact-left-title h2 {
        font-weight: 600px;
        color:#5372F0;
        font-size: 60px;
        text-decoration: none;
        /* padding: 15px  */
    }

    .contact-inputs {
        height: 20px;
        border: solid 1px #E5E5E5;
        outline: none;
        padding-left: 25px;
        font-weight: 500px;
        color: #666;
        border-radius: 10px;
        
    }
    
    .contact-inputs:focus {
        border: 2px solid #12a3f7;
    }
    .contact-left textarea {
        height: 200px;
    }

    .contact-right a {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;	
    } 
    .contact-right img {
        display: block;
        height: 500px;
        transition: .3s ease-in-out;	
    }
    .contact-right a:hover {
        border-radius: 70px;
        border: #12a3f7;
        
    }
    .contact-right a:hover img {
        transform: scale(1.05);
    }
    
    form label {
        display: block;
        font-weight: 400;
        color: #483949;
        margin: 1em 0 .5em 0;
    }
    form input[type="submit"] {
        background: #12a3f7;
        color: #fff;
        border: none;
        padding: 1em 2em;
        border-radius: 0.5em;
        cursor: pointer;
        font-weight: 600;
        font-size: 1rem;
        margin-top: 1em;
    }
        form input[type="submit"]:hover {
            background: #0f8acb;
            transition: background-color 0.3s ease-in-out;
        }
        form input[type="submit"]:active {
            background: #0d7ab2;
        }
        form input[type="submit"]:focus {
            outline: none;
        }

        
    form input[type="text"],
    form input[type="email"],
    form input[type="password"],
    form select,
    form textarea {
        /* -webkit-appearance: none; */
        display: block;
        border: 0;
        background: #fafafa;
        width: 100%;
        border-radius: 0.5em;
        border: solid 1px #E5E5E5;
        padding: 1em;
        /* -moz-transition: background-color 0.35s ease-in-out, border-color 0.35s ease-in-out;
        -webkit-transition: background-color 0.35s ease-in-out, border-color 0.35s ease-in-out;
        -ms-transition: background-color 0.35s ease-in-out, border-color 0.35s ease-in-out;
        transition: background-color 0.35s ease-in-out, border-color 0.35s ease-in-out; */
    }

        form input[type="text"]:focus,
        form input[type="email"]:focus,
        form input[type="password"]:focus,
        form select:focus,
        form textarea:focus {
            background: #fff;
            border-color: #12a3f7;
        }

    form input[type="text"],
    form input[type="email"],
    form input[type="password"],
    form select {
        line-height: 1rem;
    }

    form textarea {
        min-height: 1em;
    }

    form ::-webkit-input-placeholder {
        color: #555 !important;
    }

    form :-moz-placeholder {
        color: #555 !important;
    }

    form ::-moz-placeholder {
        color: #555 !important;
    }

    form :-ms-input-placeholder {
        color: #555 !important;
    }

    form ::-moz-focus-inner {
        border: 0;
    }
    input::-moz-focus-inner {
    border: 0;
    padding: 0; 
    }
        
@media (max-width: 1080px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    .contact-right img {
        width: 300px;
        height: 300px;
    }
    .contact-left-title h2 {
        font-size: 70px;
    }
    .contact-inputs {
        width: 100%;
    }
}
@media (max-width: 768px) {
    /* .contact-container {
        flex-direction: column;
        align-items: center;
    } */
    .contact-right img {
        width: 250px;
        height: 250px;
    }
    .contact-left-title h2 {
        font-size: 66px;
    }
    .contact-inputs {
        width: 100%;
    }
    /* .contact-inputs{
        width: 300px;
    } */
}

@media (max-width: 736px) {
    .text-box h1{
        font-size: 29px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links ul li a {
        color: #fff;
    }
    .nav-links {
        position: absolute;
        background: #cc4739;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #06416f;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul {
    padding: 30px;
    }
}
span {
    color: red;
}

.success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.success span {
    color: #4CAF50;
    font-size: 5.5rem;
}
.success h1 {
    margin-bottom: 0.5rem;
    margin-top: 2rem;
    font-size: xx-large;
    text-align: center;
}
.success p {
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 1.1em;
    text-align: center;
}
/* @media (max-width: 480px) {
    .text-box h1{
        font-size: 24px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links ul li a {
        color: #fff;
    }
    .nav-links {
        position: absolute;
        background: #cc4739;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #06416f;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul {
    padding: 30px;
    }
} */