/* Logo */
.navbar-brand img {
    width: 120px;
}

/* Navbar Base */
header.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Container */
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Nav Links */
.nav-item,
.nav-link {
    color: #000;
    font-weight: 600;
    margin-left: 10px;
    transition: 0.3s;
    font-family: "Poppins", "Open Sans", sans-serif;
}

.nav-link:hover {
    color: #2C3590 !important;
}

/* Dropdown Base */
.dropdown-menu {
    border: none;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999999;
    display: none;
}

/* Show class (Bootstrap control) */
.dropdown-menu.show {
    display: block;
}

/* Dropdown Items */
.dropdown-item {
    font-family: "Poppins", sans-serif;
    padding: 10px 15px;
    border-radius: 8px;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: #2C3590;
    color: #fff;
}

/* ===================== */
/* DESKTOP DROPDOWN */
/* ===================== */
@media (min-width: 992px) {

    /* hover open */
    .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
    }
}

/* ===================== */
/* MOBILE FIX */
/* ===================== */
@media (max-width: 991px) {

    .navbar-collapse {
        background: #fff;
        padding: 15px;
    }

    /* IMPORTANT: mobile safe dropdown */
    .dropdown-menu {
        position: static !important;
        width: 100%;
        border: none;
        box-shadow: none;
        background: #f5f5f5;
        margin-top: 8px;
    }

    .dropdown-item {
        padding: 12px 15px;
        font-size: 15px;
    }

    .dropdown-toggle::after {
        float: right;
        margin-top: 10px;
    }

    /* disable hover effect on mobile */
    .nav-item.dropdown:hover>.dropdown-menu {
        display: none;
    }
}

/* Safety fix */
.navbar {
    overflow: visible;
}

.container button {
    background-color: #2C3590;
    font-family: "Poppins", Open Sans;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.055);
    padding: 5px 20px 5px 20px;
}

.container button a {
    background-color: #2C3590;
    font-family: "Poppins", Open Sans;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.055);
    padding: 5px 20px 5px 20px;
    text-decoration: none;
}

.d-flex {
    display: flex;
    justify-content: center;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

/* Video Full Background */
.hero-section video {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 100%;
    height: 85%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Optional Dark Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
    height: 74.5vh;
}

/* Content */
.hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 40px;
}

/* Text */
.hero-text h1 {
    color: #fff;
    font-size: 64px;
    font-weight: 700;
}

.hero-text p {
    color: #fff;
    font-size: 20px;
    max-width: 900px;
    margin: 20px auto;
}

/* Button */
.hero-text button {
    background: #2C479E;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.hero-text button:hover {
    background: #1d347d;
}

/* Responsive */
@media (max-width: 768px) {

    .hero-section {
        height: 80vh;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
        padding: 0 15px;
    }
}

.service-section {
    margin-bottom: 40px;
}

.welcome-container-text {
    width: 60%;
    padding: 50px;
}

.welcome-container-img {
    width: 40% !important;
}

.welcome-container-img img {
    width: 100%;
    height: auto;
    border-radius: 15px 15px 15px 15px;
}

.services-heading {
    margin-top: 30px;
    margin-bottom: 30px;
}

.services-heading h1 {
    font-family: "Poppins", Open Sans;
    font-size: 35px;
    font-weight: 600;
    text-transform: capitalize;
    color: #2C479E;

}

.cardflipbox {
    width: 100%;
    max-width: 400px;
    height: 340px;
    perspective: 1000px;
    margin: auto;
    position: relative;
}

.cardflipinner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s;
}

.cardflipbox:hover .cardflipinner {
    transform: rotateY(180deg);
}

.cardfront,
.cardback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 340px;
    border-radius: 15px;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-sizing: border-box;
    text-align: center;
}

.cardfront {
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
}

.cardfront::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.cardback {
    background: #2c358f;
    transform: rotateY(180deg);
    cursor: pointer;
    
}

.innercontent {
    position: relative;
    z-index: 2;
    width: 100%;
}

.innercontent h2 {
    color: #fff;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: "Poppins", Open Sans;


}

.innercontent p {
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    margin: 0;
    font-family: "Poppins", Open Sans;

}

.choose-us-heading {
    margin-top: 30px;
}

.choose-us-heading h1 {
    font-family: "Poppins", Open Sans;
    font-size: 35px;
    font-weight: 600;
    text-transform: capitalize;
    color: #2C479E;

}

.counter-section {
    background: #dcdcdc;
    margin-top: 20px;
    margin-bottom: 20px;
}

.counter-container {
    width: 100%;
    display: block;

}

.counter-div {

    padding: 55px 20px;
    text-align: center;
    border-right: 1px solid #c8c8c8;
    transition: 0.4s ease;
    height: 100%;
}

.counter-div h1 {
    color: #24389b;
    font-size: 72px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 15px;
    transition: 0.4s ease;
    font-family: "Poppins", sans-serif;
}

.counter-div p {
    color: #111;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    transition: 0.4s ease;
    font-family: "Poppins", sans-serif;
}

/* Remove last border desktop */

.col-md-3:last-child .counter-div {
    border-right: none;
}

/* Mobile */

@media(max-width:768px) {

    .counter-div {
        border-right: none;
        border-bottom: 1px solid #c8c8c8;
        padding: 40px 15px;
    }

    .counter-div h1 {
        font-size: 50px;
    }

    .counter-div p {
        font-size: 16px;
    }
}

.success-heading {
    margin-top: 30px;
}

.success-heading h1 {
    font-family: "Poppins", Open Sans;
    font-size: 35px;
    font-weight: 600;
    text-transform: capitalize;
    color: #2C479E;

}

.success-process-section {
    background-color: transparent;
    background-image: linear-gradient(180deg, #2C3590 0%, #29B6F2 100%);
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 20px;
}

.success-process-div img {
    width: 80px;
    height: 80px;
}

.success-process-div h2 {
    font-family: "poppins", Open Sans;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-top: 10px;
}

.success-process-div h1 {
    font-family: "poppins", Open Sans;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    margin-top: 10px;
}

.success-process-div p {
    font-family: "poppins", Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 10px;

}

.success-process-div {
    padding: 10px;
}

.success-process-div:hover {
    background-color: #FFFFFF3B;
    padding: 10px;
    padding: 8px 8px 8px 8px;
    transition: 0.6s;
    border-radius: 15px 15px 15px 15px;
    cursor: pointer;

}

.our-clients-heading {
    margin-top: 30px;
    margin-bottom: 30px;
}

.our-clients-heading h1 {
    font-family: "Poppins", Open Sans;
    font-size: 35px;
    font-weight: 600;
    text-transform: capitalize;
    color: #2C479E;

}

.clients-cards {
    background-color: #2C3590;
    padding: 20px;
    margin: 20px;
    text-align: center;
    color: #fff;
    border-radius: 20px;
    width: 25%;
    align-content: space-around;
    cursor: pointer;
    height: 300px;

}

.clients-cards:hover {
    transform: scale(1.05);
    transition: 0.5s;

}

.clients-cards p {
    text-align: center;
    font-family: "poppins", Open Sans;
    font-size: 15px;
    font-weight: 400;
    color: #FFFFFF;
}

.clients-cards h2 {
    font-family: "poppins", Open Sans;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
}

.questions {
    border: 1px solid #2C3590;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    background: #fff;
    transition: 0.3s ease;
}

/* Question style */
.faq-question {
    cursor: pointer;
    margin: 0;
    font-size: 18px;
    position: relative;
    padding-right: 20px;
}

/* little arrow */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    transition: 0.3s;
}

/* Answer smooth animation */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    margin-top: 0;
    color: #555;
    line-height: 1.6;
}

/* Active state */
.questions.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

.questions.active .faq-question::after {
    content: "−";
}

.faq-item h1 {
    font-family: "Poppins", Open Sans;
    font-size: 22px;
    font-weight: 400;
    color: #2C3590;
}

.faq-item p {
    font-family: "Poppins", Open Sans;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.questions-section {
    margin-top: 25px;
    margin-bottom: 25px;
}

.faqs-section {
    margin-top: 50px;
}

.footer-section {
    background-color: #2c3590;
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.footer-section {
    background: #1f2b8f;
    padding-top: 60px;
    padding-bottom: 5px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-div h1 {
    color: #fff;
    font-family: "Poppins", Open Sans;
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-div ul {
    padding: 0;
    margin-bottom: 10px;
}

.footer-div ul li {
    list-style: none;
}

.footer-div ul li a {
    color: #fff;
    text-decoration: none;
    font-family: "Poppins", Open Sans;
    transition: 0.3s;
}

.footer-div ul li a:hover {
    color: #ffff;
}

/* Newsletter */
.newsletter-heading {
    margin-top: 30px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background: #fff;
    padding-right: 5px;
    border-radius: 6px;
    max-width: 420px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 16px;
    font-size: 14px;
    border-radius: 4px;
}

.newsletter-form button {
    border: none;
    background: #1f2b8f;
    color: #fff;
    padding: 10px 20px;
    font-family: "Poppins", Open Sans;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    transform: scale(1.03);
}

.footer-div img {
    width: 200px;
    margin-bottom: 50px;
}

.footer-div a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 18px;
    font-family: "Poppins", Open Sans;
    font-size: 16px;
    transition: 0.3s ease;
}

.footer-div a i {
    color: #fff;
    font-size: 18px;
    min-width: 20px;
}

.footer-div a:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.copy-right {
    margin-top: 30px;
    border: 1px solid #fff;
    border-bottom: 1px;
    border-right: 1px;
    border-left: 1px;
    padding-top: 15px;
}

.copy-right h1 {
    color: #fff;
    font-family: "Poppins", Open Sans;
    font-size: 18px;
    font-weight: 400;
    text-align: center;

}

/* =========================
   GLOBAL RESPONSIVE FIXES
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
}

/* =========================
   NAVBAR
========================= */

@media (max-width: 991px) {

    .navbar .container {
        display: flex;
        flex-wrap: wrap;
    }

    .navbar-collapse {
        margin-top: 15px;
        text-align: center;
    }

    .navbar-nav {
        gap: 10px;
    }

    .container button {
        margin-top: 10px;
    }
}

/* =========================
   HERO SECTION
========================= */

@media (max-width: 991px) {

    .hero-section {
        height: 75vh;
    }

    .hero-section video {
        height: 100%;
        top: 50%;
    }

    .hero-section::before {
        height: 100%;
    }

    .hero-text h1 {
        font-size: 42px;
        line-height: 55px;
    }

    .hero-text p {
        font-size: 17px;
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {

    .hero-section {
        height: 70vh;
    }

    .hero-text h1 {
        font-size: 30px;
        line-height: 42px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-text button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* =========================
   WELCOME SECTION
========================= */

@media (max-width: 991px) {

    .welcome-container {
        flex-direction: column;
        gap: 30px;
    }

    .welcome-container-text,
    .welcome-container-img {
        width: 100% !important;
    }

    .welcome-container-text {
        padding: 20px;
    }

    .welcome-container-text h1 {
        font-size: 32px;
    }

    .welcome-container-text p {
        font-size: 15px;
        line-height: 28px;
    }
}

@media (max-width: 576px) {

    .welcome-container-text h1 {
        font-size: 26px;
        line-height: 38px;
    }
}

/* =========================
   SERVICES CARDS
========================= */

@media (max-width: 991px) {

    .service-container {
        flex-wrap: wrap;
        gap: 25px;
        justify-content: center;
    }

    .cardflipbox {
        max-width: 100%;
    }
}

@media (max-width: 576px) {

    .cardflipbox {
        height: 300px;
    }

    .cardfront,
    .cardback {
        height: 300px;
    }

    .innercontent h2 {
        font-size: 24px;
        line-height: 34px;
    }

    .innercontent p {
        font-size: 13px;
        line-height: 22px;
    }
}

/* =========================
   HEADINGS
========================= */

@media (max-width: 576px) {

    .services-heading h1,
    .choose-us-heading h1,
    .success-heading h1,
    .our-clients-heading h1,
    .faqs-heading h1 {
        font-size: 28px;
        text-align: center;
    }
}

/* =========================
   SUCCESS PROCESS
========================= */

@media (max-width: 991px) {

    .success-process-container {
        flex-wrap: wrap;
        gap: 25px;
    }

    .success-process-div {
        width: 48%;
    }
}

@media (max-width: 576px) {

    .success-process-div {
        width: 100%;
    }

    .success-process-div h1 {
        font-size: 22px;
    }

    .success-process-div p {
        font-size: 15px;
    }
}

/* =========================
   CLIENT CARDS
========================= */

@media (max-width: 991px) {

    .clients-cards-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .clients-cards {
        width: 45%;
    }
}

@media (max-width: 576px) {

    .clients-cards {
        width: 100%;
        margin: 10px 0;
    }

    .clients-cards p {
        font-size: 14px;
    }

    .clients-cards h2 {
        font-size: 18px;
    }
}

/* =========================
   FAQ
========================= */

@media (max-width: 576px) {

    .faq-item h1 {
        font-size: 18px;
        line-height: 28px;
    }

    .faq-item p {
        font-size: 14px;
        line-height: 24px;
    }
}

/* =========================
   FOOTER
========================= */

@media (max-width: 991px) {

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-div {
        width: 100%;
    }
}

@media (max-width: 576px) {

    .footer-section {
        padding-top: 40px;
    }

    .footer-div h1 {
        font-size: 22px;
    }

    .footer-div a {
        font-size: 14px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
        background: transparent;
        padding-right: 0;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
    }

    .copy-right h1 {
        font-size: 14px;
        line-height: 24px;
        padding: 0 10px;
    }
}

.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    background: #2C3590;
    padding: 10px 14px;
    border-radius: 8px;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

@media (max-width: 991px) {

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-collapse {
        width: 100%;
        background: #fff;
        margin-top: 15px;
        padding: 20px;
        border-radius: 10px;
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-item {
        margin-bottom: 10px;
    }

    .contact-btn {
        display: none;
    }

    .navbar-brand img {
        width: 140px;
    }
}

.about-section {
    background-image: url(img/welcome.jpg);
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    align-content: center;
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
    height: 74.5vh;
}

.about-container-text {
    align-content: center;
    z-index: 1;
}

.about-container-text h1 {
    font-family: "Poppins", Open Sans;
    font-size: 34px;
    font-weight: 600;
    color: #FFFFFF;
}

.about-container-text p {
    font-family: "Poppins", Open Sans;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    color: #FFFFFF;
}

.discover-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.discover-container-text h1 {
    font-family: "Poppins", Open Sans;
    font-size: 35px;
    font-weight: 600;
    color: #2C3590;
    margin-bottom: 20px;
}

.discover-container-text p {
    text-align: justify;
    font-family: "Poppins", Open Sans;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 30px;
}

.celebrating-container-text h1 {
    font-family: "Poppins", Open Sans;
    font-size: 35px;
    font-weight: 600;
    color: #2C3590;
    margin-bottom: 20px;
}

.celebrating-container-text p {
    text-align: justify;
    font-family: "Poppins", Open Sans;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 30px;
}

.our-service-section {
    background-image: url(img/services.jpg);
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    align-content: center;
}

.our-service-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
    height: 74.5vh;
}

.our-service-container-text {
    align-content: center;
    z-index: 1;
}

.our-service-container-text h1 {
    font-family: "Poppins", Open Sans;
    font-size: 34px;
    font-weight: 600;
    color: #FFFFFF;
}

.logo-container {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    margin-bottom: 50px;
}

/* Remove fixed widths (important fix) */
.logo-container-text,
.logo-container-img {
    /* width: 100%; */
}

/* Better flex control */
.logo-container-text {
    flex: 1;
}

.logo-container-img {
    /* flex: 1;
    text-align: center; */
}

.logo-container-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}


.logo-container-text h1 {
    font-family: "Poppins", "Open Sans", sans-serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 44px;
    color: #535353;
}

.logo-container-text p {
    text-align: justify;
    font-family: "Poppins", "Open Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
    color: #727272;
}

@media (max-width: 992px) {

    .logo-container {
        flex-direction: column;
        text-align: center;
    }

    .logo-container-text p {
        text-align: center;
    }

    .logo-container-text h1 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {

    .logo-section {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .logo-container-text h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .logo-container-text p {
        font-size: 15px;
        line-height: 26px;
    }
}

.logo-designing-container-text h1 {
    font-family: "Poppins", Open Sans;
    font-size: 34px;
    font-weight: 600;
    color: #FFFFFF;
}

.logo-designing-container-text p {
    font-family: "Poppins", Open Sans;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    color: #FFFFFF;
}

.logo-designing-section {
    background-image: url(img/6.png);
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    align-content: center;
}

.logo-designing-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
    height: 74.5vh;
}

.logo-designing-container-text {
    align-content: center;
    z-index: 1;
    margin-top: 60px;
}

.designing-services-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.designing-services-text h1 {
    font-family: "Poppins", Open Sans;
    font-size: 34px;
    font-weight: 600;
    color: #1F2B8F;
}

.designing-services-text p {
    font-family: "Poppins", Open Sans;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #000;
}

.custom-web-section {
    background-image: url(img/custoom.jpg);
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    align-content: center;
}

.custom-web-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
    height: 74.5vh;
}

.custom-web-container-text {
    align-content: center;
    z-index: 1;
    margin-top: 60px;
}

.custom-web-container-text {
    align-content: center;
    z-index: 1;
    margin-top: 60px;
}

.custom-web-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.custom-web-container-text h1 {
    font-family: "Poppins", Open Sans;
    font-size: 34px;
    font-weight: 600;
    color: #FFFFFF;
}

.custom-web-container-text p {
    font-family: "Poppins", Open Sans;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    color: #FFFFFF;
}


.web-services-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.web-services-text h1 {
    font-family: "Poppins", Open Sans;
    font-size: 34px;
    font-weight: 600;
    color: #1F2B8F;
}

.web-services-text p {
    font-family: "Poppins", Open Sans;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #000;
}


.software-features-section {
    background-color: #2C3590;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 20px;
}

.software-features-div img {
    width: 80px;
    height: 80px;
}

.software-features-div h2 {
    font-family: "poppins", Open Sans;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-top: 10px;
}

.software-features-div h1 {
    font-family: "poppins", Open Sans;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    margin-top: 10px;
}

.software-features-div p {
    font-family: "poppins", Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 10px;

}

.software-features-div {
    padding: 10px;
}

.software-features-div:hover {
    background-color: #FFFFFF3B;
    padding: 10px;
    padding: 8px 8px 8px 8px;
    cursor: pointer;
    transition: 0.6s;
    border-radius: 15px 15px 15px 15px;
}

.ui-ux-design-container-text h1 {
    font-family: "Poppins", Open Sans;
    font-size: 34px;
    font-weight: 600;
    color: #FFFFFF;
}

.ui-ux-design-container-text p {
    font-family: "Poppins", Open Sans;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    color: #FFFFFF;
}

.ui-ux-design-section {
    background-image: url(img/ui-ux-design.png);
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    align-content: center;
}

.ui-ux-design-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
    height: 74.5vh;
}

.ui-ux-design-container-text {
    align-content: center;
    z-index: 1;
    margin-top: 60px;
}

.digital-marketing-container-text h1 {
    font-family: "Poppins", Open Sans;
    font-size: 34px;
    font-weight: 600;
    color: #FFFFFF;
}

.digital-marketing-container-text p {
    font-family: "Poppins", Open Sans;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    color: #FFFFFF;
}

.digital-marketing-section {
    background-image: url(img/10.png);
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    align-content: center;
}

.digital-marketing-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
    height: 74.5vh;
}

.digital-marketing-container-text {
    align-content: center;
    z-index: 1;
    margin-top: 60px;
}

.video-editing-container-text h1 {
    font-family: "Poppins", Open Sans;
    font-size: 34px;
    font-weight: 600;
    color: #FFFFFF;
}

.video-editing-container-text p {
    font-family: "Poppins", Open Sans;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    color: #FFFFFF;
}

.video-editing-section {
    background-image: url(img/11.png);
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    align-content: center;
}

.video-editing-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
    height: 74.5vh;
}

.video-editing-container-text {
    align-content: center;
    z-index: 1;
    margin-top: 60px;
}

.business-development-container-text h1 {
    font-family: "Poppins", Open Sans;
    font-size: 34px;
    font-weight: 600;
    color: #FFFFFF;
}

.business-development-container-text p {
    font-family: "Poppins", Open Sans;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    color: #FFFFFF;
}

.business-development-section {
    background-image: url(img/bde.png);
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    align-content: center;
}

.business-development-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
    height: 74.5vh;
}

.business-development-container-text {
    align-content: center;
    z-index: 1;
    margin-top: 60px;
}

.contact-us-container-text h1 {
    font-family: "Poppins", Open Sans;
    font-size: 34px;
    font-weight: 600;
    color: #FFFFFF;
}

.contact-us-container-text p {
    font-family: "Poppins", Open Sans;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    color: #FFFFFF;
}

.contact-us-section {
    background-image: url(img/contact.jpg);
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    align-content: center;
}

.contact-us-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
    height: 74.5vh;
}

.contact-us-container-text {
    align-content: center;
    z-index: 1;
    margin-top: 60px;
}




.blog-container-text h1 {
    font-family: "Poppins", Open Sans;
    font-size: 34px;
    font-weight: 600;
    color: #FFFFFF;
}

.blog-section {
    background-image: url(img/blog.jpg);
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    align-content: center;
}

.blog-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
    height: 74.5vh;
}

.blog-container-text {
    align-content: center;
    z-index: 1;
    margin-top: 60px;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

/* =========================
   LEFT SIDE
========================= */

.contact-info {
    width: 40%;
    background: #001d2e;
    color: white;
    padding: 50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    min-height: 650px;
}

.contact-info h2 {
    font-size: 38px;
    font-family: "Poppins", Open Sans;
    margin-bottom: 10px;
}

.contact-info p {
    font-family: "Poppins", Open Sans;
    margin-bottom: 60px;
    color: #ddd;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.info-box i {
    font-size: 20px;
}

/* Social */
.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: white;
    color: #001d2e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

/* Circles */
.circle {
    position: absolute;
    border-radius: 50%;
}

.big-circle {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    bottom: -70px;
    right: -70px;
}

.small-circle {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.1);
    bottom: 80px;
    right: 80px;
}

/* =========================
   RIGHT SIDE
========================= */

.contact-form {
    width: 60%;
}

.input-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.input-group {
    width: 100%;
}

.input-group label,
.subject-section label,
.message-box label {
    display: block;
    margin-bottom: 10px;
    color: #555;
    font-weight: 500;
    font-family: "Poppins", Open Sans;

}

.input-group input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #999;
    background: transparent;
    padding: 10px 0;
    outline: none;
    font-size: 16px;
}

/* Subject */
.subject-section {
    margin-bottom: 40px;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-group label {
    font-size: 14px;

}

/* Message */
.message-box textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #999;
    background: transparent;
    outline: none;
    resize: none;
    height: 120px;
    padding-top: 10px;
}

/* Button */
.send-btn {
    margin-top: 30px;
    padding: 15px 35px;
    border: none;
    background: #2c39a3;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.send-btn:hover {
    transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }
}

@media (max-width: 576px) {

    .contact-section {
        padding: 50px 15px;
    }

    .contact-info {
        padding: 30px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .input-row {
        flex-direction: column;
        gap: 20px;
    }

    .radio-group {
        flex-direction: column;
        gap: 10px;
    }

    .send-btn {
        width: 100%;
    }
}

/* =========================
   INSIGHT SECTION
========================= */

.insight-section {
    padding: 30px 0;
}

/* Heading */
.insight-heading {
    margin-bottom: 50px;
}

.insight-heading h1 {
    font-size: 50px;
    font-family: "Poppins", sans-serif;
    color: #2435a1;
    font-weight: 600;
}

/* Grid */
.insight-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.insight-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.insight-card:hover {
    transform: translateY(-10px);
}

/* Body */
.insight-body {
    padding: 35px 30px;
    min-height: 240px;
}

.insight-body h2 {
    font-size: 28px;
    line-height: 40px;
    color: #7d87cf;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
}

.insight-body p {
    font-size: 17px;
    line-height: 30px;
    color: #666;
}

/* Footer */
.insight-footer {
    padding: 18px 30px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999;
    font-size: 14px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

    .insight-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

    .insight-section {
        padding: 30px 15px;
    }

    .insight-wrapper {
        grid-template-columns: 1fr;
    }

    .insight-heading h1 {
        font-size: 36px;
    }

    .insight-body {
        padding: 25px 20px;
        min-height: auto;
    }

    .insight-body h2 {
        font-size: 22px;
        line-height: 32px;
    }

    .insight-body p {
        font-size: 15px;
        line-height: 26px;
    }

}