/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f4f9fc;
    color: #111;
    overflow-x: hidden;
}


.underline {
    height: 1vh;
    background: linear-gradient(90deg, rgb(20, 137, 191), rgb(46, 49, 146), rgb(20, 137, 191));
}

/* =========================
   Top Header
========================= */

.top-header {

    background:
        linear-gradient(135deg,
            #081521,
            #102c45,
            #2e3192);

    padding: 10px 0;

    position: fixed;
    width: 100%;
    z-index: 999;
}

.top-header-wrapper {

    display: flex;

    align-items: center;

    justify-content: space-between;
}

/* Social */

.top-social {

    display: flex;

    align-items: center;

    gap: 12px;
}

.top-social a {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    color: #fff;

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);

    transition: .4s;
}

.top-social a:hover {

    transform:
        translateY(-4px) rotate(8deg);

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

/* Contact */

.top-contact {

    display: flex;

    align-items: center;

    gap: 25px;
}

.top-contact a {

    color: #fff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 500;

    display: flex;

    align-items: center;

    gap: 8px;

    transition: .3s;
}

.top-contact a:hover {

    color: #7fd3ff;
}

.top-contact i {

    color: #4fc3ff;

    font-size: 15px;
}

/* ===================================
   Mobile Product Dropdown Fix
=================================== */

@media(max-width:991px) {

    .navbar-collapse {

        background: #fcfdff;
        padding: 20px;
        border-radius: 20px;
        margin-top: 15px;
        overflow: scroll;
        height: 45vh;
    }

    .nav-item.dropdown {

        width: 100%;
    }

}

/* Responsive */

@media(max-width:768px) {

    .top-header {

        padding: 8px 0;
    }

    .top-social {
        gap: 5px !important;
    }

    .custom-navbar {
        margin-top: 35px !important;
    }

    .navbar-brand img {
        width: 50px !important;
    }

    .top-header-wrapper {

        flex-direction: row;
    }

    .top-contact {

        flex-direction: row;

        gap: 8px;
    }

    .top-contact a {

        font-size: 10px;
    }

    .top-social a {

        width: 15px;
        height: 15px;
    }

    .top-social a i {
        font-size: 10px;
    }

    .nav-login-btn {
        margin-left: 0px !important;
    }
}

/* =========================
   Navbar
========================= */

.custom-navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    margin-top: 50px;
}

.navbar-brand {
    width: 50%;
}

.navbar-brand img {
    width: 80px;
    max-width: 100%;
}

.navbar-nav .nav-link {
    color: #111;
    font-size: 16px;
    font-weight: 600;
    margin-left: 18px;
    transition: 0.3s;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #1489bf;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: #2e3192;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* =========================
   Login Button
========================= */
.nav-login-btn {
    margin-left: 15px;
}

.premium-login-btn {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 10px 20px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    color: #fff;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    box-shadow:
        0 10px 25px rgba(20, 137, 191, .25);

    transition: all .4s ease;
}

.premium-login-btn i {

    font-size: 16px;
}

.premium-login-btn:hover {

    color: #fff;

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px rgba(46, 49, 146, .35);

    background:
        linear-gradient(135deg,
            #2e3192,
            #1489bf);
}

/* ===================================
   Main Dropdown
=================================== */

.custom-dropdown-menu {

    min-width: 320px;

    border: none;

    padding: 15px;

    border-radius: 22px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.18);
}

.custom-dropdown-menu .dropdown-item {

    color: #000000;

    padding: 6px 6px;

    border-radius: 14px;

    font-size: 13px;

    font-weight: 500;

    transition: 0.4s;
}

.custom-dropdown-menu .dropdown-item:hover {

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    color: #fff;
}

/* ===================================
   Submenu
=================================== */

.dropdown-submenu {

    position: relative;
}

.submenu-dropdown {

    display: none;

    position: absolute;

    top: 0;

    left: 30%;

    min-width: 260px;

    padding: 9px;

    border-radius: 18px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.18);
}

/* Desktop Hover */

@media(min-width:992px) {

    .dropdown-submenu:hover>.submenu-dropdown {

        display: block;
    }

}

/* Mobile */

@media(max-width:991px) {

    .custom-dropdown-menu {

        width: 100%;
    }

    .submenu-dropdown {

        position: static;

        width: 100%;

        margin-top: 10px;

        margin-left: 0;

        box-shadow: none;

        background:
            rgba(255, 255, 255, 0.05);
    }

    .submenu-dropdown.show {

        display: block;
    }

}

/* =========================
   Welcome Modal
========================= */

.custom-modal {

    border: none;

    overflow: hidden;

    border-radius: 35px;

    background: #fff;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.18);
}

/* Close Button */
.custom-close-btn {

    position: absolute;

    right: 20px;

    top: 20px;

    z-index: 10;

    background-color: #fff;

    border-radius: 50%;

    opacity: 1;

    padding: 10px;
}

/* =========================
   Left Side
========================= */

.modal-left-side {

    position: relative;

    height: 100%;

    padding: 60px 40px;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    color: #fff;

    overflow: hidden;
}

/* Glow */
.modal-left-side::before {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    background:
        rgba(255, 255, 255, 0.10);

    border-radius: 50%;

    top: -80px;
    right: -80px;

    filter: blur(20px);
}

/* Tag */
.modal-tag {

    display: inline-block;

    padding: 8px 20px;

    border-radius: 50px;

    margin-bottom: 20px;

    background:
        rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(10px);

    font-size: 14px;
}

/* Heading */
.modal-left-side h2 {

    font-size: 42px;

    font-weight: 800;

    margin-bottom: 20px;
}

.modal-left-side p {

    color: rgba(255, 255, 255, 0.88);

    line-height: 1.8;
}

/* Contact */
.modal-contact-list {

    margin-top: 35px;
}

.modal-contact-item {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 18px;
}

.modal-contact-item i {

    width: 42px;
    height: 42px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255, 255, 255, 0.15);
}

/* =========================
   Right Side
========================= */

.modal-form-side {

    padding: 60px 45px;
}

/* Heading */
.modal-form-heading h3 {

    font-size: 34px;

    font-weight: 800;

    margin-bottom: 12px;

    color: #111;
}

.modal-form-heading p {

    color: #666;

    margin-bottom: 35px;
}

/* Form */
.modal-form-side .form-control {

    height: 58px;

    border-radius: 18px;

    border: 1px solid #d9e4ef;

    padding: 15px 20px;

    box-shadow: none;

    transition: 0.3s;
}

.modal-form-side textarea.form-control {

    height: auto;
}

.modal-form-side .form-control:focus {

    border-color: #1489bf;

    box-shadow:
        0 0 0 0.15rem rgba(20, 137, 191, 0.12);
}

/* Button */
.modal-submit-btn {

    border: none;

    padding: 15px 35px;

    border-radius: 50px;

    color: #fff;

    font-weight: 700;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    display: inline-flex;

    align-items: center;

    gap: 10px;

    transition: 0.4s;
}

.modal-submit-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(20, 137, 191, 0.28);
}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .modal-left-side,
    .modal-form-side {

        padding: 40px;
    }

    .modal-left-side h2 {

        font-size: 34px;
    }

}

@media(max-width:576px) {

    .custom-modal {

        border-radius: 25px;
    }

    .modal-left-side,
    .modal-form-side {

        padding: 25px;
    }

    .modal-left-side h2 {

        font-size: 18px;
    }

    .modal-form-heading h3 {

        font-size: 18px;
    }

    .modal-left-side p {
        font-size: 11px;
    }

    .modal-submit-btn {
        font-size: 10px;
    }

    .modal-form-side .form-control {
        font-size: 11px;
    }

    .form-group {
        margin-bottom: 7px !important;
    }

    .modal-form-heading p {
        font-size: 11px;
    }

    .modal-form-side .form-control {
        height: 30px !important;
    }

}


/* =========================
   Floating Contact Buttons
========================= */

.floating-contact-wrapper {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 9999;

    display: flex;

    flex-direction: column;

    gap: 16px;
}

/* Common Button */
.floating-btn {

    width: 65px;

    height: 65px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    border: none;

    position: relative;

    overflow: hidden;

    font-size: 26px;

    color: #fff;

    transition: 0.4s;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);
}

/* Glow Effect */
.floating-btn::before {

    content: "";

    position: absolute;

    width: 100%;
    height: 100%;

    top: 0;
    left: -100%;

    background:
        rgba(255, 255, 255, 0.18);

    transition: 0.5s;
}

.floating-btn:hover::before {

    left: 100%;
}

/* Hover */
.floating-btn:hover {

    transform: translateY(-6px) scale(1.05);

    color: #fff;
}

/* Message Button */
.message-btn {

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

/* WhatsApp Button */
.whatsapp-btn {

    background:
        linear-gradient(135deg,
            #25D366,
            #128C7E);
}

/* =========================
   Floating Modal
========================= */

.floating-modal-content {

    border: none;

    overflow: hidden;

    border-radius: 30px;

    background: #fff;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Close */
.floating-close-btn {

    position: absolute;

    right: 20px;

    top: 20px;

    z-index: 10;

    background-color: #fff;

    border-radius: 50%;

    opacity: 1;
}

/* Header */
.floating-modal-header {

    padding: 45px 35px 25px;

    text-align: center;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    color: #fff;
}

/* Icon */
.floating-modal-icon {

    width: 75px;

    height: 75px;

    margin: auto;

    margin-bottom: 20px;

    border-radius: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(10px);

    font-size: 32px;
}

/* Heading */
.floating-modal-header h3 {

    font-size: 34px;

    font-weight: 800;

    margin-bottom: 10px;
}

.floating-modal-header p {

    margin: 0;

    color: rgba(255, 255, 255, 0.85);
}

/* Body */
.floating-modal-body {

    padding: 35px;
}

/* Form */
.floating-modal-body .form-group {

    margin-bottom: 20px;
}

.floating-modal-body .form-control {

    width: 100%;

    height: 58px;

    border-radius: 18px;

    border: 1px solid #d9e4ef;

    padding: 15px 20px;

    box-shadow: none;

    transition: 0.3s;
}

.floating-modal-body textarea.form-control {

    height: auto;
}

.floating-modal-body .form-control:focus {

    border-color: #1489bf;

    box-shadow:
        0 0 0 0.15rem rgba(20, 137, 191, 0.12);
}

/* Button */
.floating-submit-btn {

    width: 100%;

    border: none;

    height: 58px;

    border-radius: 50px;

    font-weight: 700;

    font-size: 16px;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    transition: 0.4s;
}

.floating-submit-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(20, 137, 191, 0.28);
}

/* =========================
   Responsive
========================= */

@media(max-width:576px) {

    .floating-contact-wrapper {

        right: 18px;

        bottom: 18px;
    }

    .floating-btn {

        width: 58px;

        height: 58px;

        font-size: 22px;
    }

    .floating-modal-header {

        padding: 35px 20px 20px;
    }

    .floating-modal-body {

        padding: 25px;
    }

    .floating-modal-header h3 {

        font-size: 28px;
    }

}

/* =========================
   Premium Hero Slider
========================= */

.premium-hero-slider {

    position: relative;

    overflow: hidden;

    padding-top: 100px;

    background:
        linear-gradient(135deg,
            #071421 0%,
            #0b1f35 45%,
            #132c48 100%);
}

/* Slider Wrapper */

.premium-slider-wrapper {

    min-height: 100vh;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;
}

/* Background Glow */

.premium-slider-wrapper::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        rgba(20, 137, 191, 0.10);

    top: -150px;
    left: -120px;

    filter: blur(80px);
}

.premium-slider-wrapper::after {

    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background:
        rgba(46, 49, 146, 0.10);

    right: -120px;
    bottom: -120px;

    filter: blur(80px);
}

/* =========================
   Image Grid
========================= */

.premium-slider-images {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 28px;

    position: relative;

    z-index: 5;
}

.slider-small-card {

    position: relative;

    height: 240px;

    border-radius: 35px;

    overflow: hidden;

    padding: 12px;

    background:
        linear-gradient(135deg,
            rgba(20, 137, 191, 0.15),
            rgba(46, 49, 146, 0.10));

    backdrop-filter: blur(10px);

    border: 3px solid #37b7f2;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.10);

    transition: 0.5s;

    animation: floatingCard 5s ease-in-out infinite;
}

.slider-small-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: 25px;

    background: #fff;
}

/* Different Floating */

.card-one {

    animation-delay: 0s;
}

.card-two {

    animation-delay: 1s;
}

.card-three {

    animation-delay: 2s;
}

.card-four {

    animation-delay: 3s;
}

/* Hover */

.slider-small-card:hover {

    transform:
        translateY(-12px) scale(1.03);

    box-shadow:
        0 25px 60px rgba(20, 137, 191, 0.25);
}

/* =========================
   Content
========================= */

.premium-slider-content {

    position: relative;

    z-index: 5;

    padding-left: 70px;
}

.premium-slider-tag {

    display: inline-block;

    padding: 10px 28px;

    border-radius: 50px;

    margin-bottom: 28px;

    font-size: 15px;

    font-weight: 600;

    color: #fff;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    animation: fadeUp 1s ease;
}

.premium-slider-content h1 {

    font-size: 50px;

    font-weight: 800;

    line-height: 1.1;

    color: #ffffff;

    margin-bottom: 25px;

    animation: fadeUp 1.2s ease;
    font-family: system-ui;
}

.premium-slider-content h4 {

    font-size: 15px;

    line-height: 1.7;

    color: #ffffff;

    margin-bottom: 38px;

    max-width: 800px;

    animation: fadeUp 1.4s ease;
}

.premium-slider-content h6 {

    font-size: 15px;

    line-height: 1.7;

    color: #ffffff;

    margin-bottom: 20px;

    max-width: 800px;

    animation: fadeUp 1.4s ease;
}


/* Button */

.premium-slider-btn {

    padding: 16px 42px;

    border-radius: 60px;

    color: #fff;

    font-size: 16px;

    font-weight: 700;

    border: none;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    box-shadow:
        0 15px 35px rgba(20, 137, 191, 0.25);

    transition: 0.4s;

    animation: fadeUp 1.6s ease;
}

.premium-slider-btn:hover {

    transform:
        translateY(-5px);

    color: #fff;

    background:
        linear-gradient(135deg,
            #2e3192,
            #1489bf);
}

/* =========================
   Arrows
========================= */

.carousel-control-prev,
.carousel-control-next {

    width: 6%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {

    width: 65px;
    height: 65px;

    border-radius: 20px;

    background-color:
        rgba(20, 137, 191, 0.85);

    background-size: 40%;

    transition: 0.4s;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {

    background-color: #2e3192;
}

/* =========================
   Animation
========================= */

@keyframes floatingCard {

    0%,
    100% {

        transform: translateY(0px);
    }

    50% {

        transform: translateY(-15px);
    }
}

@keyframes fadeUp {

    from {

        opacity: 0;

        transform:
            translateY(40px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .premium-slider-wrapper {

        min-height: auto;

        padding: 80px 0;
    }

    .premium-slider-content {

        padding-left: 0;

        margin-top: 60px;

        text-align: center;
    }

    .premium-slider-content h1 {

        font-size: 52px;
    }

    .premium-slider-content h4 {

        font-size: 22px;
    }

    .slider-small-card {

        height: 200px;
    }
}

@media(max-width:576px) {

    .premium-hero-slider {

        padding-top: 95px;
    }

    .premium-slider-wrapper {

        padding: 60px 0;
    }

    .premium-slider-images {

        gap: 16px;
    }

    .slider-small-card {

        height: 140px;

        border-radius: 20px;

        padding: 8px;
    }

    .slider-small-card img {

        border-radius: 14px;
    }

    .premium-slider-content h1 {

        font-size: 30px;
    }

    .premium-slider-content h4 {

        font-size: 15px;

        line-height: 1.7;
    }

    .premium-slider-btn {

        padding: 12px 22px;

        font-size: 13px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {

        width: 45px;
        height: 45px;
    }
}


/* ===================================
   Floating Achievement Cards
=================================== */

.floating-achievement-section {

    position: relative;

    margin-top: -50px;

    z-index: 20;
}

.achievement-floating-wrapper {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.achievement-card {

    background: #ffffff;

    border-radius: 24px;

    padding: 35px 25px;

    text-align: center;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08);

    transition: all .4s ease;

    position: relative;

    overflow: hidden;
}

/* .achievement-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: linear-gradient(90deg,
            #1489bf,
            #2e3192);
} */

.achievement-card:hover {

    transform: scale(1.08);
    color: #1489bf;
    box-shadow:
        0 25px 50px rgba(20, 137, 191, .18);
}

.achievement-icon {

    width: 75px;

    height: 75px;

    margin: auto;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(135deg,
            rgba(20, 137, 191, .12),
            rgba(46, 49, 146, .12));

    margin-bottom: 20px;
}

.achievement-icon i {

    font-size: 32px;

    color: #1489bf;
}

.achievement-card h3 {

    font-size: 42px;

    font-weight: 800;

    color: #1489bf;

    margin-bottom: 10px;
}

.achievement-card p {

    margin: 0;

    color: #666;

    font-size: 15px;

    font-weight: 600;
}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .floating-achievement-section {

        margin-top: -60px;
    }

    .achievement-floating-wrapper {

        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {

    .floating-achievement-section {

        margin-top: -40px;
    }

    .achievement-floating-wrapper {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .achievement-card {

        padding: 28px 20px;
        width: 45%;
    }

    .achievement-card h3 {

        font-size: 30px;
    }
}



/* =========================
   Premium Gas Section
========================= */

.premium-gas-section {

    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #071421 0%,
            #0b1f35 45%,
            #132c48 100%);
}

/* Glow Effects */

.premium-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(90px);

    z-index: 1;
}

.premium-glow.one {

    width: 350px;
    height: 350px;

    background:
        rgba(20, 137, 191, 0.18);

    top: -120px;
    left: -120px;
}

.premium-glow.two {

    width: 320px;
    height: 320px;

    background:
        rgba(46, 49, 146, 0.18);

    bottom: -120px;
    right: -120px;
}

/* Heading */

.premium-heading {

    position: relative;

    z-index: 5;

    margin-bottom: 70px;
}

.premium-tag {

    display: inline-block;

    padding: 10px 24px;

    border-radius: 50px;

    margin-bottom: 22px;

    color: #fff;

    font-size: 14px;

    letter-spacing: 1px;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

.premium-heading h2 {

    font-size: 40px;

    font-weight: 800;

    line-height: 1.2;

    color: #fff;

    margin-bottom: 24px;
}

.premium-heading p {

    max-width: 820px;

    margin: auto;

    color: rgba(255, 255, 255, 0.75);

    font-size: 4px;

    line-height: 1.9;
}

/* Cards */

.premium-card {

    position: relative;

    z-index: 5;

    height: 100%;

    padding: 45px 35px;

    border-radius: 32px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.03));

    border:
        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);

    transition: 0.5s;
}

.premium-card:hover {

    transform:
        translateY(-12px);
}

/* Animated Border */

.premium-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    background:
        linear-gradient(135deg,
            rgba(20, 137, 191, 0.45),
            rgba(46, 49, 146, 0.05));

    border-radius: 50%;

    top: -60px;
    right: -60px;

    transition: 0.5s;
}

.premium-card:hover::before {

    transform: scale(1.2);
}

/* Icon */

.premium-icon {

    width: 85px;
    height: 85px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 24px;

    margin-bottom: 28px;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    animation: floatingIcon 3s ease-in-out infinite;
}

.premium-icon i {

    color: #fff;

    font-size: 34px;
}

/* Content */

.premium-card h3 {

    color: #fff;

    font-size: 30px;

    font-weight: 700;

    margin-bottom: 14px;

    animation: fadeUp 1s ease;
}

.premium-card h5 {

    color: #43c6ff;

    font-size: 18px;

    margin-bottom: 18px;

    line-height: 1.5;

    animation: fadeUp 1.2s ease;
}

.premium-card p {

    color: rgba(255, 255, 255, 0.75);

    line-height: 1.9;

    font-size: 15px;

    animation: fadeUp 1.4s ease;
}

/* Animations */

@keyframes floatingIcon {

    0%,
    100% {

        transform: translateY(0px);
    }

    50% {

        transform: translateY(-10px);
    }
}

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(35px);
    }

    to {

        opacity: 1;

        transform: translateY(0);
    }
}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .premium-heading h2 {

        font-size: 20px;
    }

    .premium-card {

        padding: 35px 28px;
    }
}

@media(max-width:576px) {

    .premium-gas-section {

        padding: 80px 0;
    }

    .premium-heading h2 {

        font-size: 20px;
    }

    .premium-heading p {

        font-size: 14px;
    }

    .premium-card {

        padding: 28px 22px;

        border-radius: 24px;
    }

    .premium-card h3 {

        font-size: 24px;
    }

    .premium-card h5 {

        font-size: 16px;
    }

    .premium-icon {

        width: 70px;
        height: 70px;
    }

    .premium-icon i {

        font-size: 28px;
    }
}


/* =========================
   Footer
========================= */

/* =========================
   Footer Section
========================= */

.footer-section {
    position: relative;
    overflow: hidden;

    padding-top: 110px;

    background:
        linear-gradient(135deg,
            #0f172a 0%,
            #111827 40%,
            #172554 100%);
}

/* Background Glow */
.footer-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.footer-shape.shape-one {
    width: 320px;
    height: 320px;

    background: rgba(20, 137, 191, 0.18);

    top: -100px;
    left: -100px;
}

.footer-shape.shape-two {
    width: 280px;
    height: 280px;

    background: rgba(93, 223, 122, 0.12);

    bottom: -100px;
    right: -100px;
}

/* Wrapper */
.footer-wrapper {
    position: relative;
    z-index: 2;
}

/* =========================
   About
========================= */

.footer-about img {
    width: 80px;
    margin-bottom: 25px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 30px;
}

/* =========================
   Social Icons
========================= */

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 48px;
    height: 48px;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    color: #fff;

    font-size: 18px;

    background:
        linear-gradient(135deg,
            rgba(20, 137, 191, 0.25),
            rgba(46, 49, 146, 0.25));

    transition: 0.4s;
}

.footer-social a:hover {

    transform: translateY(-5px);

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

/* =========================
   Footer Titles
========================= */

.footer-links-box h4,
.footer-contact h4,
.footer-form-box h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 28px;
}

/* =========================
   Links
========================= */

.footer-links-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links-box ul li {
    margin-bottom: 16px;
}

.footer-links-box ul li a {
    text-decoration: none;

    color: rgba(255, 255, 255, 0.72);

    transition: 0.4s;

    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links-box ul li a:hover {
    color: #5ddf7a;
    transform: translateX(5px);
}

/* =========================
   Contact Info
========================= */

.contact-item {
    display: flex;
    gap: 15px;

    margin-bottom: 22px;
}

.contact-item i {

    width: 48px;
    height: 48px;

    min-width: 48px;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    color: #fff;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

.contact-item span {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    font-size: 15px;
}

/* =========================
   Footer Form
========================= */

.footer-form-box {
    padding: 35px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-input {
    margin-bottom: 18px;
}

.footer-input input,
.footer-input textarea {

    width: 100%;

    border: none;

    outline: none;

    border-radius: 18px;

    padding: 16px 18px;

    color: #fff;

    background: rgba(255, 255, 255, 0.08);

    font-size: 15px;
}

.footer-input input::placeholder,
.footer-input textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

/* Button */
.footer-form-box button {

    width: 100%;

    height: 58px;

    border: none;

    border-radius: 18px;

    font-weight: 700;

    color: #fff;

    background:
        linear-gradient(135deg,
            #5ddf7a,
            #1bbf5f);

    transition: 0.4s;
}

.footer-form-box button:hover {

    transform: translateY(-3px);

    background:
        linear-gradient(135deg,
            #1bbf5f,
            #5ddf7a);
}

.footer-form-box button i {
    margin-left: 8px;
}

/* =========================
   Bottom Footer
========================= */

.footer-bottom {

    margin-top: 70px;

    padding: 28px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.10);

    text-align: center;
}

.footer-bottom p {

    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 15px;
}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .footer-section {
        padding-top: 90px;
    }

    .footer-form-box {
        margin-top: 20px;
    }

}

@media(max-width:576px) {

    .footer-section {
        padding-top: 80px;
    }

    .footer-about img {
        width: 75px;
    }

    .footer-links-box h4,
    .footer-contact h4,
    .footer-form-box h4 {
        font-size: 22px;
    }

    .footer-form-box {
        padding: 25px;
    }

    .footer-social {
        flex-wrap: wrap;
    }

}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-image {
        margin-top: 50px;
    }

    .navbar-brand {
        width: auto;
    }
}

@media(max-width:576px) {

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-image img {
        width: 100%;
    }
}

/* =========================
   About Section
========================= */

.about-section {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    padding-top: 120px;

    /* New Background */
    background:
        linear-gradient(135deg,
            #f5fbff 0%,
            #e4f4ff 35%,
            #ffffff 100%);

    /* Top & Bottom Border */
    /* border-top: 1px solid rgba(20, 137, 191, 0.15);
    border-bottom: 1px solid rgba(20, 137, 191, 0.15); */
}

/* Background Glow */
/* .about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 6px;

    background:
        linear-gradient(90deg,
            #1489bf,
            #2e3192,
            #1489bf);
} */



/* Bottom Light Glow */
.about-section::after {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(20, 137, 191, 0.12);

    border-radius: 50%;

    bottom: -250px;
    right: -180px;

    filter: blur(70px);
}

/* =========================
   Image Side
========================= */

.about-image-wrapper {
    position: relative;
    z-index: 2;
}

.about-image-wrapper img {
    width: 80%;
    border-radius: 35px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: 0.5s;
    height: 80vh;
}

.about-image-wrapper img:hover {
    transform: scale(1.03);
}

/* Shape */
.about-shape {
    position: absolute;
    width: 250px;
    height: 250px;
    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
    border-radius: 35px;
    top: -25px;
    left: -25px;
    z-index: 1;
    opacity: 0.15;
}

/* Experience Card */
.experience-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    padding: 25px 35px;
    border-radius: 25px;
    z-index: 3;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.experience-card h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #1489bf;
}

.experience-card p {
    margin: 0;
    color: #444;
    font-weight: 600;
}

/* =========================
   Content Side
========================= */

.about-content {
    position: relative;
    z-index: 2;
}

.about-tag {
    display: inline-block;
    background: #1489bf;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #111;
}

.about-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 22px;
}

.about-content ul li {
    color: #666;
    font-size: 14px;
    /* line-height: 1.9; */
    margin-bottom: 10px;
}

/* =========================
   Feature Boxes
========================= */

.about-features {
    margin-top: 35px;
}

.feature-box {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.feature-box h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.feature-box p {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* =========================
   Button
========================= */

.about-btn {
    margin-top: 20px;
    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
}

.about-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    background:
        linear-gradient(135deg,
            #2e3192,
            #1489bf);
}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .about-content h2 {
        font-size: 40px;
    }

    .experience-card {
        right: 10px;
        bottom: 10px;
        padding: 20px 25px;
    }

}

@media(max-width:576px) {

    .about-section {
        padding: 80px 0;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-content p {
        font-size: 15px;
    }

    .feature-box {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: auto;
    }

    .experience-card {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
    }

    .about-shape {
        height: 317px !important;
        top: -18px;
        left: 6px;
    }

    .about-image-wrapper img {
        width: 70%;
        left: 50px;
        height: 50vh !important;
    }
}


/* =========================
   Product Showcase
========================= */

.product-showcase {
    padding: 100px 0;
    background:
        linear-gradient(135deg,
            #f7fbff,
            #edf6ff,
            #ffffff);
    position: relative;
    overflow: hidden;
}

/* Section Title */
.section-title span {
    background: #1489bf;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.section-title p {
    color: #666;
    font-size: 17px;
    max-width: 750px;
    margin: auto;
    line-height: 1.8;
}

/* Main Product Card */
.main-product-card {
    margin-top: 70px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.main-product-card:hover {
    transform: translateY(-5px);
}

/* Product Image */
.product-image {
    overflow: hidden;
    border-radius: 25px;
}

.product-image img {
    width: 100%;
    border-radius: 25px;
    transition: 0.5s;
}

.product-image img:hover {
    transform: scale(1.04);
}

/* Product Content */
.product-content {
    padding-left: 30px;
}

.product-tag {
    background: #1489bf;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.product-content h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111;
}

.product-content p {
    font-size: 17px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* Button */
.product-btn {
    background: linear-gradient(45deg, #1489bf, #2e3192);
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
}

.product-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    background: linear-gradient(45deg, #2e3192, #1489bf);
}

/* Product Slider */
.product-slider-wrapper {
    margin-top: 45px;
}

.product-thumb {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    cursor: pointer;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    height: 100%;
    border: 2px solid transparent;
}

.product-thumb:hover {
    transform: translateY(-6px);
}

.product-thumb img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.product-thumb h6 {
    margin: 0;
    font-weight: 700;
    color: #111;
    font-size: 15px;
}

/* Active Product */
.active-product {
    border: 2px solid #1489bf;
    background: linear-gradient(135deg,
            rgba(20, 137, 191, 0.08),
            rgba(46, 49, 146, 0.08));
}

/* Responsive */
@media(max-width:991px) {

    .product-content {
        padding-left: 0;
        padding-top: 35px;
    }

    .section-title h2 {
        font-size: 38px;
    }

    .product-content h3 {
        font-size: 34px;
    }

}

@media(max-width:576px) {

    .section-title h2 {
        font-size: 30px;
    }

    .product-content h3 {
        font-size: 28px;
    }

    .product-content p {
        font-size: 15px;
    }

    .main-product-card {
        padding: 25px;
    }

}

/* =========================
   Services Section
========================= */

.services-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;

    background:
        linear-gradient(135deg,
            #ffffff 0%,
            #f7fbff 50%,
            #eef6ff 100%);
}

.service-link {
    text-decoration: none;

}

/* Decorative Shapes */
.service-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.shape-one {
    width: 350px;
    height: 350px;
    background: rgba(20, 137, 191, 0.10);
    top: -100px;
    left: -120px;
}

.shape-two {
    width: 300px;
    height: 300px;
    background: rgba(46, 49, 146, 0.10);
    bottom: -100px;
    right: -100px;
}

/* Heading */
.services-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
}

.service-tag {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 50px;
    background: #1489bf;
    color: #fff;
    font-size: 14px;
    margin-bottom: 20px;
}

.services-heading h2 {
    font-size: 52px;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    margin-bottom: 20px;
}

.services-heading p {
    max-width: 760px;
    margin: auto;
    color: #666;
    font-size: 17px;
    line-height: 1.9;
}

/* =========================
   Service Card
========================= */

.service-card {
    position: relative;
    z-index: 2;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);

    border-radius: 30px;

    padding: 40px 35px;

    overflow: hidden;

    transition: 0.45s;

    height: 100%;

    border: 1px solid rgba(20, 137, 191, 0.08);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.05);
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-12px);

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

/* Active Card */
.active-service {
    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    transform: translateY(-10px);
}

/* Icon */
.service-icon {
    width: 85px;
    height: 85px;

    border-radius: 22px;

    background:
        linear-gradient(135deg,
            rgba(20, 137, 191, 0.15),
            rgba(46, 49, 146, 0.15));

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 38px;

    color: #1489bf;

    margin-bottom: 30px;

    transition: 0.4s;
}

/* Hover Icon */
.service-card:hover .service-icon,
.active-service .service-icon {

    background: rgba(255, 255, 255, 0.15);

    color: #fff;

    transform: rotate(-8deg) scale(1.05);
}

/* Title */
.service-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
    transition: 0.4s;
}

/* Paragraph */
.service-card p {
    color: #666;
    line-height: 1.9;
    font-size: 15px;
    transition: 0.4s;
}

/* Hover Text */
.service-card:hover h3,
.service-card:hover p,
.active-service h3,
.active-service p {
    color: #fff;
}

/* Number */
.service-number {
    position: absolute;
    right: 25px;
    bottom: 15px;

    font-size: 70px;
    font-weight: 800;

    color: rgba(20, 137, 191, 0.08);

    transition: 0.4s;
}

.service-card:hover .service-number,
.active-service .service-number {
    color: rgba(255, 255, 255, 0.08);
}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .services-heading h2 {
        font-size: 40px;
    }

    .service-card {
        padding: 35px 28px;
    }

}

@media(max-width:576px) {

    .services-section {
        padding: 80px 0;
    }

    .services-heading h2 {
        font-size: 30px;
    }

    .services-heading p {
        font-size: 15px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    .service-icon {
        width: 75px;
        height: 75px;
        font-size: 30px;
    }

}

/* =========================
   Blog Section
========================= */

.blog-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;

    background:
        linear-gradient(135deg,
            #f5fbff 0%,
            #ffffff 45%,
            #eef7ff 100%);
}

/* Background Shapes */
.blog-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 1;
}

.shape-left {
    width: 350px;
    height: 350px;
    background: rgba(20, 137, 191, 0.10);
    top: -120px;
    left: -100px;
}

.shape-right {
    width: 300px;
    height: 300px;
    background: rgba(46, 49, 146, 0.10);
    bottom: -100px;
    right: -100px;
}

/* Heading */
.blog-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
}

.blog-tag {
    display: inline-block;
    background: #1489bf;
    color: #fff;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
}

.blog-heading h2 {
    font-size: 52px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.blog-heading p {
    max-width: 760px;
    margin: auto;
    color: #666;
    line-height: 1.9;
    font-size: 17px;
}

/* =========================
   Blog Card
========================= */

.blog-card {
    position: relative;
    z-index: 2;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);

    border-radius: 30px;

    overflow: hidden;

    transition: 0.45s;

    height: 100%;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.06);
}

.blog-card:hover {
    transform: translateY(-12px);
}

/* Blog Image */
.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

/* Date */
.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;

    width: 70px;
    height: 70px;

    border-radius: 20px;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    font-weight: 700;
}

.blog-date span {
    font-size: 13px;
    font-weight: 500;
}

/* Content */
.blog-content {
    padding: 30px;
}

/* Meta */
.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-meta span {
    color: #1489bf;
    font-size: 14px;
    font-weight: 600;
}

.blog-meta i {
    margin-right: 5px;
}

/* Title */
.blog-content h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 18px;
    color: #111;
    transition: 0.4s;
}

.blog-card:hover h3 {
    color: #1489bf;
}

/* Description */
.blog-content p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

/* Button */
.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #1489bf;

    text-decoration: none;

    font-weight: 700;

    transition: 0.4s;
}

.blog-btn i {
    transition: 0.4s;
}

.blog-btn:hover {
    color: #2e3192;
}

.blog-btn:hover i {
    transform: translateX(6px);
}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .blog-heading h2 {
        font-size: 40px;
    }

}

@media(max-width:576px) {

    .blog-section {
        padding: 80px 0;
    }

    .blog-heading h2 {
        font-size: 30px;
    }

    .blog-heading p {
        font-size: 15px;
    }

    .blog-content {
        padding: 25px;
    }

    .blog-content h3 {
        font-size: 21px;
    }

    .blog-image img {
        height: 220px;
    }

}

/* =========================
   Core Industries Section
========================= */

.core-industries-section {

    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #f4faff 0%,
            #ffffff 50%,
            #eef6ff 100%);
}

/* Background Glow */
.core-bg-circle {

    position: absolute;

    border-radius: 50%;

    filter: blur(90px);

    z-index: 1;
}

.core-bg-circle.one {

    width: 320px;
    height: 320px;

    background:
        rgba(20, 137, 191, 0.12);

    top: -100px;
    left: -100px;
}

.core-bg-circle.two {

    width: 300px;
    height: 300px;

    background:
        rgba(46, 49, 146, 0.10);

    bottom: -100px;
    right: -100px;
}

/* Container */
.core-industries-section .container {

    position: relative;

    z-index: 5;
}

/* =========================
   Heading
========================= */

.core-heading {

    margin-bottom: 70px;
}

.core-tag {

    display: inline-block;

    padding: 8px 24px;

    border-radius: 50px;

    margin-bottom: 22px;

    font-size: 14px;

    color: #fff;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

.core-heading h2 {

    font-size: 56px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 25px;

    color: #111;
}

.core-heading p {

    max-width: 760px;

    margin: auto;

    color: #666;

    line-height: 1.9;

    font-size: 16px;
}

/* =========================
   Industry Card
========================= */

.core-industry-card {

    position: relative;

    height: 100%;

    padding: 45px 35px;

    border-radius: 32px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.82);

    backdrop-filter: blur(15px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.06);

    transition: 0.5s;

    animation: fadeUp 1s ease;
}

/* Hover */
.core-industry-card:hover {

    transform:
        translateY(-12px);

    box-shadow:
        0 25px 60px rgba(20, 137, 191, 0.16);
}

/* Top Glow Effect */
.core-industry-card::before {

    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    background:
        rgba(20, 137, 191, 0.10);

    border-radius: 50%;

    top: -50px;
    right: -40px;

    transition: 0.5s;
}

.core-industry-card:hover::before {

    transform: scale(1.4);
}

/* Icon */
.core-icon {

    width: 85px;

    height: 85px;

    border-radius: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 28px;

    font-size: 34px;

    color: #fff;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    box-shadow:
        0 12px 30px rgba(20, 137, 191, 0.25);

    transition: 0.4s;
}

/* Icon Hover */
.core-industry-card:hover .core-icon {

    transform:
        rotate(-8deg) scale(1.08);
}

/* Title */
.core-industry-card h4 {

    font-size: 28px;

    font-weight: 700;

    line-height: 1.4;

    margin-bottom: 18px;

    color: #111;
}

/* Description */
.core-industry-card p {

    color: #666;

    line-height: 1.9;

    font-size: 15px;

    margin-bottom: 0;
}

/* Animation */
@keyframes fadeUp {

    from {

        opacity: 0;

        transform:
            translateY(50px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }

}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .core-heading h2 {

        font-size: 42px;
    }

    .core-industry-card {

        padding: 35px 28px;
    }

}

@media(max-width:576px) {

    .core-industries-section {

        padding: 90px 0;
    }

    .core-heading h2 {

        font-size: 32px;
    }

    .core-heading p {

        font-size: 15px;
    }

    .core-industry-card {

        padding: 28px 24px;

        border-radius: 24px;
    }

    .core-icon {

        width: 70px;
        height: 70px;

        font-size: 28px;

        border-radius: 20px;
    }

    .core-industry-card h4 {

        font-size: 22px;
    }

}

/* =========================
   Counter Section
========================= */

.counter-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;

    background:
        linear-gradient(135deg,
            #ffffff 0%,
            #eef7ff 50%,
            #f8fcff 100%);
}

/* Background Shapes */
.counter-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.counter-shape.shape-one {
    width: 320px;
    height: 320px;
    background: rgba(20, 137, 191, 0.10);
    top: -120px;
    left: -100px;
}

.counter-shape.shape-two {
    width: 280px;
    height: 280px;
    background: rgba(46, 49, 146, 0.10);
    bottom: -100px;
    right: -100px;
}

/* Wrapper */
.counter-wrapper {
    position: relative;
    z-index: 2;
}

/* Heading */
.counter-heading {
    margin-bottom: 70px;
}

.counter-tag {
    display: inline-block;

    padding: 8px 22px;

    border-radius: 50px;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    color: #fff;

    font-size: 14px;

    margin-bottom: 20px;
}

.counter-heading h2 {
    font-size: 52px;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    margin-bottom: 20px;
}

.counter-heading p {
    max-width: 760px;
    margin: auto;
    color: #666;
    line-height: 1.9;
    font-size: 17px;
}

/* =========================
   Counter Card
========================= */

.counter-card {
    position: relative;

    background: rgba(255, 255, 255, 0.75);

    backdrop-filter: blur(15px);

    border-radius: 30px;

    padding: 45px 30px;

    text-align: center;

    overflow: hidden;

    transition: 0.45s;

    height: 100%;

    border: 1px solid rgba(20, 137, 191, 0.08);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.06);
}

/* Hover */
.counter-card:hover {
    transform: translateY(-12px);

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

/* Active Card */
.active-counter {
    transform: translateY(-10px);

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

/* Icon */
.counter-icon {
    width: 90px;
    height: 90px;

    margin: auto auto 28px;

    border-radius: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg,
            rgba(20, 137, 191, 0.12),
            rgba(46, 49, 146, 0.12));

    font-size: 38px;

    color: #1489bf;

    transition: 0.4s;
}

/* Hover Icon */
.counter-card:hover .counter-icon,
.active-counter .counter-icon {

    background: rgba(255, 255, 255, 0.15);

    color: #fff;

    transform: rotate(-8deg) scale(1.05);
}

/* Number */
.counter-card h3 {
    font-size: 58px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
    transition: 0.4s;
}

/* Title */
.counter-card h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
    transition: 0.4s;
}

/* Description */
.counter-card p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    transition: 0.4s;
}

/* Hover Text */
.counter-card:hover h3,
.counter-card:hover h5,
.counter-card:hover p,
.active-counter h3,
.active-counter h5,
.active-counter p {
    color: #fff;
}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .counter-heading h2 {
        font-size: 40px;
    }

    .counter-card {
        padding: 40px 25px;
    }

}

@media(max-width:576px) {

    .counter-section {
        padding: 80px 0;
    }

    .counter-heading h2 {
        font-size: 30px;
    }

    .counter-heading p {
        font-size: 15px;
    }

    .counter-card h3 {
        font-size: 46px;
    }

    .counter-card h5 {
        font-size: 20px;
    }

}

/* =========================
   Why Choose Us Section
========================= */

.why-choose-section {

    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #f5fbff 0%,
            #ffffff 50%,
            #eef7ff 100%);
}

/* Background Glow */

.why-bg {

    position: absolute;

    border-radius: 50%;

    filter: blur(90px);

    z-index: 1;
}

.why-bg.one {

    width: 320px;
    height: 320px;

    background:
        rgba(20, 137, 191, 0.10);

    top: -120px;
    left: -100px;
}

.why-bg.two {

    width: 280px;
    height: 280px;

    background:
        rgba(46, 49, 146, 0.08);

    bottom: -100px;
    right: -100px;
}

/* Heading */

.why-heading {

    position: relative;

    z-index: 5;

    margin-bottom: 70px;
}

.why-tag {

    display: inline-block;

    padding: 8px 24px;

    border-radius: 50px;

    margin-bottom: 22px;

    color: #fff;

    font-size: 14px;

    font-weight: 600;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

.why-heading h2 {

    font-size: 56px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 20px;

    color: #111;
}

.why-heading p {

    max-width: 760px;

    margin: auto;

    font-size: 17px;

    line-height: 1.9;

    color: #666;
}

/* Card */

.why-card {

    position: relative;

    z-index: 5;

    height: 100%;

    padding: 45px 35px;

    border-radius: 32px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.82);

    backdrop-filter: blur(14px);

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.07);

    transition: 0.5s;

    animation: whyFloat 4s ease-in-out infinite;
}

.why-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 20px 50px rgba(20, 137, 191, 0.15);
}

/* Number Circle */

.why-number {

    position: absolute;

    top: 25px;
    right: 25px;

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 22px;

    font-weight: 800;

    color: #1489bf;

    border: 2px dashed #1489bf;

    background:
        rgba(20, 137, 191, 0.08);

    transition: 0.8s;
}

.why-card:hover .why-number {

    transform: rotate(360deg);
}

/* Icon */

.why-icon {

    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 24px;

    margin-bottom: 28px;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    box-shadow:
        0 12px 30px rgba(20, 137, 191, 0.25);
}

.why-icon i {

    font-size: 34px;

    color: #fff;
}

/* Content */

.why-card h4 {

    font-size: 26px;

    font-weight: 700;

    margin-bottom: 18px;

    color: #111;
}

.why-card p {

    color: #666;

    line-height: 1.9;

    font-size: 16px;

    margin-bottom: 0;
}

/* Animation */

@keyframes whyFloat {

    0%,
    100% {

        transform: translateY(0px);
    }

    50% {

        transform: translateY(-6px);
    }
}

/* Responsive */

@media(max-width:991px) {

    .why-heading h2 {

        font-size: 40px;
    }

    .why-card {

        padding: 35px 28px;
    }
}

@media(max-width:576px) {

    .why-choose-section {

        padding: 80px 0;
    }

    .why-heading {

        margin-bottom: 50px;
    }

    .why-heading h2 {

        font-size: 30px;
    }

    .why-heading p {

        font-size: 15px;
    }

    .why-card {

        padding: 30px 24px;

        border-radius: 24px;
    }

    .why-icon {

        width: 65px;
        height: 65px;
    }

    .why-icon i {

        font-size: 28px;
    }

    .why-card h4 {

        font-size: 22px;
    }

    .why-number {

        width: 58px;
        height: 58px;

        font-size: 18px;
    }
}


/* =========================
   Technology Section
========================= */

.technology-section {

    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #ffffff 0%,
            #f5fbff 50%,
            #eef7ff 100%);
}

/* Background Glow */

.tech-bg {

    position: absolute;

    border-radius: 50%;

    filter: blur(90px);

    z-index: 1;
}

.tech-bg.one {

    width: 320px;
    height: 320px;

    background:
        rgba(20, 137, 191, 0.10);

    top: -120px;
    left: -120px;
}

.tech-bg.two {

    width: 280px;
    height: 280px;

    background:
        rgba(46, 49, 146, 0.08);

    bottom: -120px;
    right: -120px;
}

/* Heading */

.technology-heading {

    position: relative;

    z-index: 5;

    margin-bottom: 70px;
}

.technology-tag {

    display: inline-block;

    padding: 8px 24px;

    border-radius: 50px;

    margin-bottom: 22px;

    color: #fff;

    font-size: 14px;

    font-weight: 600;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

.technology-heading h2 {

    font-size: 56px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 20px;

    color: #111;
}

.technology-heading p {

    max-width: 760px;

    margin: auto;

    font-size: 17px;

    line-height: 1.9;

    color: #666;
}

/* Technology Card */

.technology-card {

    position: relative;

    z-index: 5;

    height: 100%;

    padding: 45px 35px;

    border-radius: 34px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.82);

    backdrop-filter: blur(14px);

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.07);

    transition: 0.5s;

    animation: techFloat 5s ease-in-out infinite;
}

.technology-card:nth-child(2) {

    animation-delay: 1.5s;
}

.technology-card:hover {

    transform:
        translateY(-12px);

    box-shadow:
        0 22px 55px rgba(20, 137, 191, 0.16);
}

/* Icon */

.technology-icon {

    width: 85px;
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 28px;

    margin-bottom: 28px;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    box-shadow:
        0 14px 35px rgba(20, 137, 191, 0.25);

    animation: pulseGlow 3s infinite;
}

.technology-icon i {

    font-size: 38px;

    color: #fff;
}

/* Content */

.technology-card h3 {

    font-size: 30px;

    font-weight: 700;

    margin-bottom: 28px;

    color: #111;
}

/* List */

.technology-list {

    display: flex;

    flex-direction: column;

    gap: 18px;
}

.technology-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px 20px;

    border-radius: 20px;

    background:
        linear-gradient(135deg,
            rgba(20, 137, 191, 0.08),
            rgba(46, 49, 146, 0.08));

    transition: 0.4s;
}

.technology-item:hover {

    transform:
        translateX(10px);

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

.technology-item i {

    font-size: 20px;

    color: #1489bf;

    transition: 0.4s;
}

.technology-item span {

    font-size: 15px;

    font-weight: 600;

    color: #222;

    transition: 0.4s;
}

.technology-item:hover i,
.technology-item:hover span {

    color: #fff;
}

/* Animations */

@keyframes techFloat {

    0%,
    100% {

        transform: translateY(0px);
    }

    50% {

        transform: translateY(-8px);
    }
}

@keyframes pulseGlow {

    0% {

        box-shadow:
            0 0 0 rgba(20, 137, 191, 0.25);
    }

    50% {

        box-shadow:
            0 0 25px rgba(20, 137, 191, 0.35);
    }

    100% {

        box-shadow:
            0 0 0 rgba(20, 137, 191, 0.25);
    }
}

/* Responsive */

@media(max-width:991px) {

    .technology-heading h2 {

        font-size: 40px;
    }

    .technology-card {

        padding: 35px 28px;
    }

    .technology-card h3 {

        font-size: 26px;
    }
}

@media(max-width:576px) {

    .technology-section {

        padding: 80px 0;
    }

    .technology-heading {

        margin-bottom: 50px;
    }

    .technology-heading h2 {

        font-size: 30px;
    }

    .technology-heading p {

        font-size: 15px;
    }

    .technology-card {

        padding: 28px 22px;

        border-radius: 26px;
    }

    .technology-icon {

        width: 70px;
        height: 70px;
    }

    .technology-icon i {

        font-size: 30px;
    }

    .technology-card h3 {

        font-size: 22px;
    }

    .technology-item {

        padding: 16px 18px;
    }

    .technology-item span {

        font-size: 14px;
    }
}


/* =========================
   About Page Hero
========================= */

/* =========================
   Inner Banner Section
========================= */

.inner-banner-section {

    position: relative;

    padding: 170px 0 90px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            rgba(112, 112, 117, 0.96),
            rgba(43, 54, 74, 0.94),
            rgba(41, 55, 102, 0.95)),
        url('../images/about_us_banner.jpg');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    text-align: center;
}

/* Overlay Glow */
.banner-overlay {

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        rgba(20, 137, 191, 0.18);

    filter: blur(90px);

    top: -150px;
    left: -120px;
}

/* Content */
.inner-banner-content {

    position: relative;
    top: 35px;
    z-index: 2;
}

.inner-banner-content h1 {

    font-size: 64px;

    font-weight: 800;

    color: #fff;

    margin-bottom: 18px;

    letter-spacing: 1px;
}

/* Breadcrumb */
.banner-breadcrumb {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}

.banner-breadcrumb a {

    color: #5ddf7a;

    text-decoration: none;

    font-size: 17px;

    font-weight: 600;

    transition: 0.3s;
}

.banner-breadcrumb a:hover {
    color: #fff;
}

.banner-breadcrumb span {

    color: rgba(255, 255, 255, 0.60);
}

.banner-breadcrumb p {

    margin: 0;

    color: rgba(255, 255, 255, 0.75);

    font-size: 16px;
}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .inner-banner-section {

        padding: 150px 0 80px;
    }

    .inner-banner-content h1 {

        font-size: 50px;

    }

}

@media(max-width:576px) {

    .inner-banner-section {

        padding: 180px 0 40px;
    }

    .inner-banner-content {
        top: 0px;
    }

    .inner-banner-content h1 {
        font-size: 36px;
    }

    .banner-breadcrumb a,
    .banner-breadcrumb p {

        font-size: 14px;
    }

}

.about-page-hero {
    padding: 170px 0 120px;

    background:
        linear-gradient(135deg,
            #eef7ff 0%,
            #ffffff 50%,
            #f3faff 100%);

    overflow: hidden;
}

.about-page-tag {
    display: inline-block;

    padding: 8px 22px;

    border-radius: 50px;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    color: #fff;

    margin-bottom: 25px;
}

.about-hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-hero-content p {
    color: #666;
    line-height: 1.9;
    font-size: 17px;
}

.about-hero-image img {
    width: 100%;
    border-radius: 35px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.10);
}

/* =========================
   Company About
========================= */

.company-about-section {
    padding: 110px 0;
}

.company-about-image img {
    width: 100%;
    border-radius: 35px;
}

.section-tag {
    display: inline-block;

    padding: 8px 22px;

    border-radius: 50px;

    background: #1489bf;

    color: #fff;

    margin-bottom: 20px;
}

.company-about-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
}

.company-about-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-feature-list {
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 18px;
}

.about-feature-item i {
    color: #1489bf;
    font-size: 22px;
}

/* =========================
   Mission Vision
========================= */

.mission-vision-section {
    padding: 110px 0;

    background:
        linear-gradient(135deg,
            #f5fbff 0%,
            #eef7ff 100%);
}

.mission-card,
.vision-card {

    padding: 50px;

    border-radius: 35px;

    background: #fff;

    height: 100%;

    transition: 0.4s;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.06);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
}

.mission-icon {
    width: 90px;
    height: 90px;

    border-radius: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    font-size: 38px;

    color: #fff;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

.mission-card h3,
.vision-card h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    color: #666;
    line-height: 1.9;
}

/* =========================
   Why Choose Us
========================= */

.why-choose-section {
    padding: 110px 0;
}

.section-heading h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-heading p {
    max-width: 760px;
    margin: auto;
    color: #666;
    line-height: 1.9;
}

.why-card {

    padding: 45px 30px;

    border-radius: 30px;

    text-align: center;

    background: #fff;

    transition: 0.4s;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.06);
}

.why-card:hover {
    transform: translateY(-10px);

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

.why-card i {
    font-size: 45px;

    color: #1489bf;

    margin-bottom: 25px;

    transition: 0.4s;
}

.why-card h4 {
    font-size: 24px;
    font-weight: 700;
    transition: 0.4s;
}

.why-card:hover i,
.why-card:hover h4 {
    color: #fff;
}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .about-hero-content h1,
    .company-about-content h2,
    .section-heading h2 {
        font-size: 42px;
    }

    .about-hero-image {
        margin-top: 40px;
    }

}

@media(max-width:576px) {

    .about-page-hero {
        padding: 60px 0 80px;
    }

    .about-hero-content h1,
    .company-about-content h2,
    .section-heading h2 {
        font-size: 32px;
    }

    .mission-card,
    .vision-card,
    .why-card {
        padding: 35px 25px;
    }

    .why-card i {

        color: #ffffff !important;
        margin-bottom: 0px !important;
    }

}

/* =========================
   Industries Section
========================= */

.industries-section {

    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #f4faff 0%,
            #ffffff 50%,
            #eef6ff 100%);
}

/* Heading */
.industry-heading {

    margin-bottom: 70px;
}

.industry-tag {

    display: inline-block;

    padding: 8px 22px;

    border-radius: 50px;

    margin-bottom: 22px;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    color: #fff;

    font-size: 14px;
}

.industry-heading h2 {

    font-size: 54px;

    font-weight: 800;

    margin-bottom: 20px;

    color: #111;
}

.industry-heading p {

    max-width: 760px;

    margin: auto;

    color: #666;

    line-height: 1.9;

    font-size: 16px;
}

/* Card */
.industry-card {

    position: relative;

    height: 100%;

    padding: 40px 35px;

    border-radius: 32px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.88);

    backdrop-filter: blur(14px);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.06);

    transition: 0.4s;
}

/* Hover */
.industry-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 22px 55px rgba(20, 137, 191, 0.12);
}

/* Icon */
.industry-icon {

    width: 85px;

    height: 85px;

    border-radius: 24px;

    margin-bottom: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 34px;

    color: #fff;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    box-shadow:
        0 12px 30px rgba(20, 137, 191, 0.25);
}

/* Title */
.industry-card h4 {

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 18px;

    line-height: 1.4;

    color: #111;
}

/* Description */
.industry-card p {

    color: #666;

    line-height: 1.9;

    font-size: 15px;

    margin-bottom: 0;
}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .industry-heading h2 {

        font-size: 42px;
    }

    .industry-card {

        padding: 35px 28px;
    }

}

@media(max-width:576px) {

    .industries-section {

        padding: 80px 0;
    }

    .industry-heading h2 {

        font-size: 32px;
    }

    .industry-card {

        padding: 28px 24px;

        border-radius: 25px;
    }

    .industry-icon {

        width: 70px;
        height: 70px;

        font-size: 28px;

        border-radius: 20px;
    }

    .industry-card h4 {

        font-size: 22px;
    }

}


/* =========================
   Services Page
========================= */

.services-page-section {
    padding: 110px 0;

    background:
        linear-gradient(135deg,
            #f5fbff 0%,
            #ffffff 50%,
            #eef7ff 100%);
}

/* Service Box */
.service-detail-box {

    padding: 70px;

    border-radius: 40px;

    margin-bottom: 60px;

    background: rgba(255, 255, 255, 0.85);

    backdrop-filter: blur(16px);

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.06);

    transition: 0.4s;
}

.service-detail-box:hover {
    transform: translateY(-8px);
}

/* Image */
.service-detail-image img {

    width: 100%;

    border-radius: 30px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.10);
}

/* Tag */
.service-page-tag {

    display: inline-block;

    padding: 8px 22px;

    border-radius: 50px;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    color: #fff;

    margin-bottom: 22px;

    font-size: 14px;
}

/* Title */
.service-detail-content h2 {

    font-size: 46px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 22px;

    color: #111;
}

/* Paragraph */
.service-detail-content p {

    color: #666;

    line-height: 1.9;

    font-size: 16px;

    margin-bottom: 25px;
}

/* Subheading */
.service-detail-content h5 {

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 18px;

    color: #111;
}

/* List */
.service-detail-content ul {

    padding-left: 20px;

    margin-bottom: 28px;
}

.service-detail-content ul li {

    color: #555;

    margin-bottom: 12px;

    line-height: 1.8;
}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .service-detail-box {
        padding: 40px;
    }

    .service-detail-content h2 {
        font-size: 38px;
    }

}

@media(max-width:576px) {

    .services-page-section {
        padding: 80px 0;
    }

    .service-detail-box {
        padding: 25px;
        border-radius: 28px;
    }

    .service-detail-content h2 {
        font-size: 30px;
    }

    .service-detail-content h5 {
        font-size: 22px;
    }

    .service-detail-content p,
    .service-detail-content ul li {
        font-size: 15px;
    }

}


/* =========================
   Clientele Section
========================= */

.clientele-section {

    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #ffffff 0%,
            #f4faff 50%,
            #eef7ff 100%);
}

/* Heading */
.clientele-heading {
    margin-bottom: 70px;
}

.clientele-tag {

    display: inline-block;

    padding: 8px 22px;

    border-radius: 50px;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    color: #fff;

    font-size: 14px;

    margin-bottom: 20px;
}

.clientele-heading h2 {

    font-size: 52px;

    font-weight: 800;

    color: #111;

    margin-bottom: 20px;
}

.clientele-heading p {

    max-width: 720px;

    margin: auto;

    color: #666;

    line-height: 1.9;

    font-size: 16px;
}

/* =========================
   Slider
========================= */

.clientele-slider {

    position: relative;

    overflow: hidden;

    width: 100%;
}

/* Track */
.clientele-track {

    display: flex;

    align-items: center;

    gap: 40px;

    width: calc(250px * 8);

    animation: scrollClient 25s linear infinite;
}

/* Item */
.clientele-item {

    width: 220px;

    height: 140px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 28px;

    background: rgba(255, 255, 255, 0.85);

    backdrop-filter: blur(10px);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.06);

    transition: 0.4s;
}

/* Hover */
.clientele-item:hover {

    transform: translateY(-8px);

    background:
        linear-gradient(135deg,
            #ffffff,
            #f5fbff);
}

/* Image */
.clientele-item img {

    width: 170px;

    object-fit: contain;

    filter: grayscale(0%);

    transition: 0.4s;
}

.clientele-item:hover img {

    transform: scale(1.08);
}

/* Animation */
@keyframes scrollClient {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 4));
    }

}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .clientele-heading h2 {
        font-size: 40px;
    }

    .clientele-item {
        width: 180px;
        height: 120px;
    }

    .clientele-item img {
        width: 140px;
    }

}

@media(max-width:576px) {

    .clientele-section {
        padding: 80px 0;
    }

    .clientele-heading h2 {
        font-size: 30px;
    }

    .clientele-heading p {
        font-size: 15px;
    }

    .clientele-item {
        width: 150px;
        height: 100px;
        border-radius: 20px;
    }

    .clientele-item img {
        width: 100px;
    }

    .clientele-track {
        gap: 20px;
    }

}

/* =========================
   PRODUCTS & SOLUTIONS
========================= */

.products-solutions-section {

    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #f4fbff 0%,
            #ffffff 50%,
            #eef7ff 100%);
}

/* =========================
   Background Glow
========================= */

.products-bg {

    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    z-index: 1;
}

.products-bg.one {

    width: 350px;
    height: 350px;

    background: rgba(20, 137, 191, 0.12);

    top: -120px;
    left: -120px;
}

.products-bg.two {

    width: 320px;
    height: 320px;

    background: rgba(46, 49, 146, 0.10);

    bottom: -120px;
    right: -120px;
}

/* =========================
   Heading
========================= */

.products-heading {

    position: relative;

    z-index: 5;

    margin-bottom: 90px;
}

.products-tag {

    display: inline-block;

    padding: 10px 24px;

    border-radius: 50px;

    margin-bottom: 22px;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

    color: #fff;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

.products-heading h2 {

    font-size: 58px;

    font-weight: 800;

    color: #111;

    margin-bottom: 22px;
}

.products-heading p {

    max-width: 760px;

    margin: auto;

    font-size: 17px;

    line-height: 1.9;

    color: #666;
}

/* =========================
   Product Card
========================= */

.product-modern-card {

    position: relative;

    z-index: 5;

    margin-bottom: 80px;

    padding: 60px;

    border-radius: 40px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.85);

    backdrop-filter: blur(16px);

    box-shadow:
        0 18px 60px rgba(0, 0, 0, 0.08);

    transition: 0.5s;

    animation: fadeUp 1s ease;
}

.product-modern-card:hover {

    transform: translateY(-10px);
}

/* =========================
   Product Image
========================= */

.product-modern-image {

    overflow: hidden;

    border-radius: 30px;
}

.product-modern-image img {

    width: 100%;

    height: 480px;

    object-fit: cover;

    transition: 0.6s;
}

.product-modern-card:hover .product-modern-image img {

    transform: scale(1.06);
}

/* =========================
   Product Content
========================= */

.product-modern-label {

    display: inline-block;

    padding: 8px 22px;

    border-radius: 50px;

    margin-bottom: 20px;

    font-size: 14px;

    font-weight: 600;

    color: #fff;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

.product-modern-content h2 {

    font-size: 46px;

    font-weight: 800;

    line-height: 1.2;

    color: #111;

    margin-bottom: 16px;
}

.product-modern-content h5 {

    font-size: 24px;

    font-weight: 700;

    color: #1489bf;

    margin-bottom: 24px;
}

.product-modern-content p {

    font-size: 16px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 25px;
}

/* =========================
   Feature Grid
========================= */

.modern-feature-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-top: 35px;

    margin-bottom: 35px;
}

/* =========================
   Feature Card
========================= */

.modern-feature-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 20px 22px;

    border-radius: 24px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            rgba(20, 137, 191, 0.08),
            rgba(46, 49, 146, 0.08));

    transition: 0.5s;

    animation: floatCard 4s ease-in-out infinite;
}

.modern-feature-card:nth-child(even) {

    animation-delay: 1.5s;
}

.modern-feature-card:hover {

    transform:
        translateY(-8px) scale(1.02);

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    box-shadow:
        0 12px 35px rgba(20, 137, 191, 0.28);
}

.modern-feature-card i {

    min-width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;

    color: #1489bf;

    font-size: 22px;

    transition: 0.5s;
}

.modern-feature-card span {

    font-size: 15px;

    font-weight: 600;

    line-height: 1.6;

    color: #222;

    transition: 0.5s;
}

.modern-feature-card:hover span {

    color: #fff;
}

.modern-feature-card:hover i {

    background: rgba(255, 255, 255, 0.15);

    color: #fff;
}

/* =========================
   Application Box
========================= */

.application-box {

    margin-top: 30px;

    padding: 30px;

    border-radius: 28px;

    background:
        linear-gradient(135deg,
            rgba(20, 137, 191, 0.08),
            rgba(46, 49, 146, 0.08));

    border: 1px solid rgba(20, 137, 191, 0.08);
}

.application-box h6 {

    font-size: 24px;

    font-weight: 700;

    color: #111;

    margin-bottom: 15px;
}

.application-box p {

    margin-bottom: 0;

    color: #555;

    line-height: 1.8;
}

/* =========================
   Animations
========================= */

@keyframes fadeUp {

    from {

        opacity: 0;

        transform:
            translateY(60px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}

@keyframes floatCard {

    0%,
    100% {

        transform: translateY(0px);
    }

    50% {

        transform: translateY(-8px);
    }
}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .products-solutions-section {

        padding: 90px 0;
    }

    .products-heading {

        margin-bottom: 60px;
    }

    .products-heading h2 {

        font-size: 40px;
    }

    .product-modern-card {

        padding: 35px;
    }

    .product-modern-content h2 {

        font-size: 34px;
    }

    .product-modern-image img {

        height: 340px;
    }

    .modern-feature-grid {

        grid-template-columns: 1fr;
    }
}

@media(max-width:576px) {

    .products-solutions-section {

        padding: 75px 0;
    }

    .products-heading h2 {

        font-size: 30px;
    }

    .products-heading p {

        font-size: 15px;
    }

    .product-modern-card {

        padding: 24px;

        border-radius: 28px;
    }

    .product-modern-content h2 {

        font-size: 28px;
    }

    .product-modern-content h5 {

        font-size: 20px;
    }

    .product-modern-image img {

        height: 240px;
    }

    .modern-feature-card {

        padding: 16px 18px;
    }

    .modern-feature-card i {

        min-width: 45px;
        height: 45px;

        font-size: 18px;
    }

    .modern-feature-card span {

        font-size: 14px;
    }

    .application-box {

        padding: 22px;
    }

    .application-box h6 {

        font-size: 20px;
    }
}


/* =========================
   Blog Details Banner
========================= */

.blog-details-banner {

    position: relative;

    padding: 190px 0 0px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #071c2c 0%,
            #0d2d45 35%,
            #123d5a 70%,
            #0a2335 100%);
}

.blog-details-banner::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: -120px;
    right: -120px;

    border-radius: 50%;

    background:
        rgba(20, 137, 191, 0.14);

    filter: blur(90px);
}

.blog-details-banner::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -100px;
    left: -100px;

    border-radius: 50%;

    background:
        rgba(46, 49, 146, 0.15);

    filter: blur(80px);
}

.blog-banner-content {

    position: relative;

    z-index: 2;

    max-width: 950px;

    margin: auto;

    text-align: center;
}

.blog-banner-tag {

    display: inline-block;

    padding: 10px 24px;

    border-radius: 50px;

    margin-bottom: 28px;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

    color: #fff;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

.blog-banner-content h1 {

    font-size: 62px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 24px;

    color: #fff;
}

.blog-banner-content p {

    color: rgba(255, 255, 255, 0.82);

    font-size: 18px;

    line-height: 1.9;
}

/* =========================
   Blog Details Section
========================= */

.blog-details-section {

    padding: 110px 0;

    background:
        linear-gradient(135deg,
            #f5fbff 0%,
            #ffffff 50%,
            #eef7ff 100%);
}

/* =========================
   Main Blog Card
========================= */

.blog-details-card {

    padding: 55px;

    border-radius: 40px;

    background:
        rgba(255, 255, 255, 0.88);

    backdrop-filter: blur(18px);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.07);
}

/* Featured Image */

.blog-feature-image {

    overflow: hidden;

    border-radius: 30px;

    margin-bottom: 35px;
}

.blog-feature-image img {

    width: 100%;

    height: 520px;

    object-fit: cover;

    transition: 0.6s;
}

.blog-details-card:hover .blog-feature-image img {

    transform: scale(1.05);
}

/* Meta */

.blog-meta-wrapper {

    display: flex;

    align-items: center;

    gap: 30px;

    flex-wrap: wrap;

    margin-bottom: 35px;
}

.blog-meta-item {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #555;

    font-size: 15px;
}

.blog-meta-item i {

    color: #1489bf;
}

/* Content */

.blog-details-content h2 {

    font-size: 42px;

    font-weight: 800;

    margin-bottom: 22px;

    color: #111;
}

.blog-details-content h3 {

    font-size: 32px;

    font-weight: 700;

    margin-top: 45px;

    margin-bottom: 20px;

    color: #111;
}

.blog-details-content p {

    color: #666;

    font-size: 16px;

    line-height: 1.95;

    margin-bottom: 24px;
}

/* Highlight Box */

.blog-highlight-box {

    display: flex;

    gap: 20px;

    padding: 30px;

    border-radius: 28px;

    margin: 40px 0;

    background:
        linear-gradient(135deg,
            rgba(20, 137, 191, 0.08),
            rgba(46, 49, 146, 0.08));
}

.blog-highlight-box i {

    font-size: 42px;

    color: #1489bf;
}

.blog-highlight-box h5 {

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 10px;
}

/* Feature Grid */

.blog-feature-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 35px;
}

.blog-feature-card {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 20px 22px;

    border-radius: 22px;

    background:
        linear-gradient(135deg,
            rgba(20, 137, 191, 0.08),
            rgba(46, 49, 146, 0.08));

    transition: 0.4s;

    font-weight: 600;
}

.blog-feature-card:hover {

    transform: translateY(-6px);

    color: #fff;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

.blog-feature-card i {

    color: #1489bf;

    font-size: 22px;

    transition: 0.4s;
}

.blog-feature-card:hover i {

    color: #fff;
}

/* Inner Image */

.blog-inner-image {

    overflow: hidden;

    border-radius: 30px;

    margin: 40px 0;
}

.blog-inner-image img {

    width: 100%;

    height: 420px;

    object-fit: cover;

    transition: 0.5s;
}

.blog-inner-image:hover img {

    transform: scale(1.05);
}

/* =========================
   Sidebar
========================= */

.blog-sidebar-card,
.blog-sidebar-contact {

    padding: 35px;

    border-radius: 32px;

    margin-bottom: 35px;

    background:
        rgba(255, 255, 255, 0.88);

    backdrop-filter: blur(16px);

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.06);
}

.blog-sidebar-card h4,
.blog-sidebar-contact h4 {

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 28px;
}

/* Recent Blog */

.recent-blog-item {

    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 24px;
}

.recent-blog-item img {

    width: 95px;

    height: 95px;

    border-radius: 20px;

    object-fit: cover;
}

.recent-blog-item h6 {

    font-size: 17px;

    font-weight: 700;

    line-height: 1.5;

    margin-bottom: 8px;
}

.recent-blog-item span {

    color: #777;

    font-size: 14px;
}

/* Contact Card */

.blog-sidebar-contact {

    text-align: center;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

.blog-sidebar-contact h4,
.blog-sidebar-contact p {

    color: #fff;
}

.blog-sidebar-contact a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 10px;

    padding: 14px 34px;

    border-radius: 50px;

    text-decoration: none;

    background: #fff;

    color: #111;

    font-weight: 700;

    transition: 0.4s;
}

.blog-sidebar-contact a:hover {

    transform: translateY(-5px);
}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .blog-banner-content h1 {

        font-size: 42px;
    }

    .blog-details-card {

        padding: 35px;
    }

    .blog-feature-image img {

        height: 350px;
    }

    .blog-feature-grid {

        grid-template-columns: 1fr;
    }

}

@media(max-width:576px) {

    .blog-details-banner {

        padding: 150px 0 80px;
    }

    .blog-banner-content h1 {

        font-size: 30px;
    }

    .blog-banner-content p {

        font-size: 14px;
    }

    .blog-details-section {

        padding: 70px 0;
    }

    .blog-details-card {

        padding: 22px;

        border-radius: 24px;
    }

    .blog-feature-image img {

        height: 240px;
    }

    .blog-details-content h2 {

        font-size: 28px;
    }

    .blog-details-content h3 {

        font-size: 24px;
    }

    .blog-highlight-box {

        flex-direction: column;
    }

    .blog-sidebar-card,
    .blog-sidebar-contact {

        padding: 24px;
    }

}

/* =========================
   Contact Page Section
========================= */

.contact-page-section {

    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #f5fbff 0%,
            #ffffff 50%,
            #eef7ff 100%);
}

/* Left Info Box */
.contact-info-box {

    position: relative;

    padding: 50px;

    border-radius: 35px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    color: #fff;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.12);
}

/* Tag */
.contact-tag {

    display: inline-block;

    padding: 8px 22px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(10px);

    margin-bottom: 22px;

    font-size: 14px;
}

/* Heading */
.contact-info-box h2 {

    font-size: 48px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 25px;
}

.contact-info-box p {

    color: rgba(255, 255, 255, 0.85);

    line-height: 1.9;
}

/* Contact List */
.contact-info-list {

    margin-top: 40px;
}

.contact-info-item {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 30px;
}

/* Icon */
.contact-icon {

    width: 60px;

    height: 60px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255, 255, 255, 0.12);

    font-size: 22px;

    flex-shrink: 0;
}

.contact-info-item h5 {

    font-size: 22px;

    margin-bottom: 8px;

    font-weight: 700;
}

/* =========================
   Form Box
========================= */

.contact-form-box {

    padding: 60px;

    border-radius: 35px;

    background: rgba(255, 255, 255, 0.88);

    backdrop-filter: blur(14px);

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.06);
}

/* Heading */
.form-heading span {

    display: inline-block;

    color: #1489bf;

    font-weight: 600;

    margin-bottom: 15px;
}

.form-heading h3 {

    font-size: 42px;

    font-weight: 800;

    margin-bottom: 40px;

    color: #111;
}

/* Form */
.form-group {

    margin-bottom: 25px;
}

.form-group label {

    font-weight: 600;

    margin-bottom: 12px;

    display: block;

    color: #111;
}

.form-control {

    width: 100%;

    height: 60px;

    border-radius: 18px;

    border: 1px solid #d9e4ef;

    padding: 15px 22px;

    background: #fff;

    box-shadow: none;

    transition: 0.3s;
}

textarea.form-control {

    height: auto;
}

.form-control:focus {

    border-color: #1489bf;

    box-shadow:
        0 0 0 0.15rem rgba(20, 137, 191, 0.15);
}

/* Button */
.contact-submit-btn {

    border: none;

    padding: 16px 40px;

    border-radius: 50px;

    font-size: 16px;

    font-weight: 700;

    color: #fff;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    display: inline-flex;

    align-items: center;

    gap: 12px;

    transition: 0.4s;
}

.contact-submit-btn:hover {

    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(20, 137, 191, 0.30);
}

/* =========================
   Contact Intro Section
========================= */

.contact-page-section {

    position: relative;

    padding: 120px 0 90px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #f5fbff 0%,
            #ffffff 50%,
            #eef7ff 100%);
}

/* Background Glow */

.contact-bg {

    position: absolute;

    border-radius: 50%;

    filter: blur(90px);

    z-index: 1;
}

.contact-bg.one {

    width: 320px;
    height: 320px;

    background:
        rgba(20, 137, 191, 0.10);

    top: -120px;
    left: -120px;
}

.contact-bg.two {

    width: 280px;
    height: 280px;

    background:
        rgba(46, 49, 146, 0.08);

    bottom: -120px;
    right: -120px;
}

/* Wrapper */

.contact-intro-wrapper {

    position: relative;

    z-index: 5;
}

/* Heading */

.contact-tag {

    display: inline-block;

    padding: 9px 24px;

    border-radius: 50px;

    margin-bottom: 22px;

    font-size: 14px;

    font-weight: 600;

    color: #fff;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

.contact-intro-content h2 {

    font-size: 58px;

    font-weight: 800;

    line-height: 1.2;

    color: #111;

    margin-bottom: 24px;
}

.contact-intro-content p {

    max-width: 850px;

    margin: auto;

    font-size: 17px;

    line-height: 1.9;

    color: #666;
}

/* =========================
   Service Card
========================= */

.contact-service-card {

    position: relative;

    height: 100%;

    padding: 40px 32px;

    border-radius: 30px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.82);

    backdrop-filter: blur(14px);

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.07);

    transition: 0.5s;

    animation: contactFloat 5s ease-in-out infinite;
}

.contact-service-card:nth-child(even) {

    animation-delay: 1.5s;
}

.contact-service-card:hover {

    transform:
        translateY(-12px);

    box-shadow:
        0 24px 60px rgba(20, 137, 191, 0.18);
}

/* Icon */

.contact-service-icon {

    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 26px;

    margin-bottom: 28px;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    box-shadow:
        0 14px 35px rgba(20, 137, 191, 0.28);

    position: relative;

    overflow: hidden;
}

.contact-service-icon::before {

    content: "";

    position: absolute;

    width: 120%;
    height: 120%;

    background:
        rgba(255, 255, 255, 0.18);

    transform: rotate(45deg);

    left: -120%;
    top: -120%;

    transition: 0.6s;
}

.contact-service-card:hover .contact-service-icon::before {

    left: 120%;
    top: 120%;
}

.contact-service-icon i {

    font-size: 36px;

    color: #fff;

    position: relative;

    z-index: 2;
}

/* Content */

.contact-service-card h4 {

    font-size: 26px;

    font-weight: 700;

    margin-bottom: 16px;

    color: #111;
}

.contact-service-card p {

    color: #666;

    line-height: 1.9;

    font-size: 16px;

    margin-bottom: 0;
}

/* Animation */

@keyframes contactFloat {

    0%,
    100% {

        transform: translateY(0px);
    }

    50% {

        transform: translateY(-8px);
    }
}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .contact-intro-content h2 {

        font-size: 42px;
    }

    .contact-service-card {

        padding: 35px 28px;
    }
}

@media(max-width:576px) {

    .contact-page-section {

        padding: 80px 0 60px;
    }

    .contact-intro-content h2 {

        font-size: 30px;
    }

    .contact-intro-content p {

        font-size: 15px;
    }

    .contact-service-card {

        padding: 28px 24px;

        border-radius: 24px;
    }

    .contact-service-icon {

        width: 68px;
        height: 68px;
    }

    .contact-service-icon i {

        font-size: 28px;
    }

    .contact-service-card h4 {

        font-size: 22px;
    }
}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .contact-info-box,
    .contact-form-box {

        padding: 40px;
    }

    .contact-info-box h2 {

        font-size: 38px;
    }

    .form-heading h3 {

        font-size: 34px;
    }

}

@media(max-width:576px) {

    .contact-page-section {

        padding: 80px 0;
    }

    .contact-info-box,
    .contact-form-box {

        padding: 25px;

        border-radius: 28px;
    }

    .contact-info-box h2 {

        font-size: 30px;
    }

    .form-heading h3 {

        font-size: 28px;
    }

    .contact-icon {

        width: 50px;
        height: 50px;

        font-size: 18px;
    }

    .contact-info-item h5 {

        font-size: 18px;
    }

}