body {
    padding-top: 80px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== PRELOADER SECTION START ===== */

#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgb(230, 243, 212);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}

.loader-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(270deg, #00eaff, #4f46e5, #ff00cc) border-box;
    animation: rotate 2s linear infinite;
}

.dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #00eaff;
    border-radius: 50%;
    top: 32px;
    left: 32px;
    box-shadow: 0 0 10px #00eaff,
        0 0 20px #00eaff,
        0 0 40px #00eaff;
    animation: pulse 1.2s infinite;
}

.loading-text {
    margin-top: 20px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.8;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

/* ===== PRELOADER SECTION END ===== */


/* ===== HEADER SECTION START ===== */
.logo {
    height: 65px;
    cursor: pointer;
    transition: transform .35s ease, filter .35s ease;
}

.logo:hover {
    transform: scale(1.06) rotate(-2deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 8px 0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.logo {
    height: 65px;
    cursor: pointer;
}

#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
    margin-left: auto;
}

.nav-links li {
    position: relative;
}

/* ===== MAIN NAVBAR LINKS ===== */

.nav-links>li>a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    transition: all .35s ease;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.nav-links>li>a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0c2b4a, #1e63d5);
    border-radius: 8px;
    transform: scale(0);
    transition: transform .35s ease;
    z-index: -1;
}

.nav-links>li>a:hover::before {
    transform: scale(1);
}

.nav-links>li>a:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* ===== DROPDOWN MENU ===== */

.dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    background: #ffffff;
    min-width: 270px;
    padding: 8px;
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    display: none;
    overflow: hidden;
}

.nav-links li:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    transition: all .25s ease;
    white-space: nowrap;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #f4f8ff;
    color: #1e63d5;
    padding-left: 26px;
}

.dropdown-menu li:first-child a {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.dropdown-menu li:last-child a {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* ===== RESPONSIVE NAVBAR ===== */

@media(max-width:992px){

.menu-icon{
display:block;
}

.nav-links{
position:absolute;
top:75px;
left:0;
width:100%;
background:#fff;
flex-direction:column;
align-items:flex-start;
padding:25px;
display:none;
gap:18px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
max-height:calc(100vh - 75px);
overflow-y:auto;
}

#menu-toggle:checked ~ .nav-links{
display:flex;
}

.nav-links li{
width:100%;
}

.nav-links > li > a{
width:100%;
padding:12px 16px;
}

/* dropdown mobile */

.dropdown-menu{
position:static;
display:block;
box-shadow:none;
padding-left:10px;
border-radius:12px;
background:#f8fbff;
margin-top:5px;
}

.dropdown-menu a{
padding:10px 15px;
}

}


/* ===== HEADER SECTION END ===== */

/* ===== HERO SECTION START ===== */

.hero-section {
    width: 100%;
    min-height: 520px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: calc(120px + 70px) 20px 80px;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.45)),
                url(images/grit\ banner.png) no-repeat center;
    background-size: cover;
    z-index: -1;
    animation: zoomSafe 8s ease-in-out infinite alternate;
}

/* Responsive background position fix */
@media(max-width:768px) {
    .hero-section::before {
        background-position: center;
    }
}

@media(max-width:480px) {
    .hero-section::before {
        background-position: 50% center;
    }
}

@keyframes zoomSafe {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    width: 100%;
}

.hero-text {
    max-width: 520px;
    animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.3;
}

.hero-text p {
    font-size: 18px;
    font-weight: 500;
    color: #e0e6ed;
    line-height: 1.7;
    margin-bottom: 35px;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1f3b57, #2b5c85);
    color: #fff;
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(31, 59, 87, 0.3);
}

.hero-btn:hover {
    background: linear-gradient(135deg, #0f2a40, #1f3b57);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(15, 42, 64, 0.4);
}

@media(max-width:992px) {
    .hero-text h1 { font-size: 36px; }
    .hero-text p { font-size: 16px; }
}

@media(max-width:768px) {
    .hero-section {
        padding: calc(80px + 60px) 20px 60px;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 30px;
    }
}

@media(max-width:576px) {
    .hero-text h1 { font-size: 26px; }
    .hero-text p { font-size: 15px; }
}

@media(max-width:350px) {
    .hero-section {
        padding: 120px 15px 40px;
    }

    .hero-text h1 {
        font-size: 22px;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* ===== HERO SECTION END ===== */

/* ===== WHY CHOOSE US SECTION START ===== */

.why-section {
    background: #f3f5f7;
    padding: 50px 0;
}

.why-title {
    font-size: 38px;
    font-weight: 700;
    color: #1c2b39;
    margin-bottom: 15px;
}

.why-desc {
    font-size: 16px;
    color: #5c6773;
    line-height: 1.7;
    max-width: 720px;
    margin: auto;
    font-weight: 500;
}

.ai-box {
    transition: all .4s ease;
}

.ai-box:hover {
    transform: translateY(-8px);
}

.ai-box .why-icon {
    transition: all .4s ease;
}

.ai-box:hover .why-icon {
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px rgba(0, 123, 255, 0.35));
}

.ai-box .why-head {
    transition: all .3s ease;
}

.ai-box:hover .why-head {
    color: #0d6efd;
}

.why-head {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    color: #1c2b39;
    max-width: 320px;
    margin: auto;
    text-align: center;
}

.why-text {
    font-size: 16px;
    font-weight: 500;
    color: #5f6b77;
    line-height: 1.7;
    max-width: 320px;
    margin: 6px auto 0;
    text-align: center;
}

.why-box {
    margin-bottom: 40px;
    transition: all .4s ease;
}

.why-box:hover {
    transform: translateY(-8px);
}

.why-box h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1c2b39;
    margin-top: 10px;
    max-width: 320px;
    transition: all .3s ease;
}

.why-box:hover h5 {
    color: #0d6efd;
}

.why-box p {
    font-size: 16px;
    font-weight: 500;
    color: #5f6b77;
    line-height: 1.7;
    max-width: 320px;
    margin-top: 6px;
}

.why-left .why-box {
    text-align: right;
}

.why-left .why-box h5,
.why-left .why-box p {
    margin-left: auto;
}

.why-right .why-box {
    text-align: left;
}

.why-right .why-box h5,
.why-right .why-box p {
    margin-right: auto;
}

.why-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 10px;
    transition: all .4s ease;
}

.why-box:hover .why-icon {
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px rgba(0, 123, 255, 0.35));
}

.why-center {
    text-align: center;
    margin-top: 20px;
}

.why-woman {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 2;
    animation: floatMove 4s ease-in-out infinite;
}

@keyframes floatMove {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }

}

@media (max-width:991px) {

    .why-left,
    .why-right {
        text-align: center !important;
    }

    .why-left .why-box h5,
    .why-left .why-box p,
    .why-right .why-box h5,
    .why-right .why-box p {
        margin: auto;
    }

    .why-center {
        margin: 40px 0;
    }

}

@media (max-width:768px) {

    .why-title {
        font-size: 30px;
    }

    .why-desc {
        font-size: 15px;
    }

}

@media (max-width:576px) {

    .why-title {
        font-size: 26px;
    }

    .why-desc {
        font-size: 14px;
    }

    .why-box h5 {
        font-size: 16px;
    }

    .why-box p {
        font-size: 14px;
    }

    .why-woman {
        max-width: 320px;
    }

}

/* ===== WHY CHOOSE US SECTION END ===== */


/* ===== ABOUT SECTION START ===== */

.about-section {
    padding: 30px 0;
    background: #f4f6f8;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: #0c2b4a;
    margin-bottom: 60px;
}

.about-grid {
    align-items: center;
}

.about-text {
    font-size: 18px;
    line-height: 1.9;
    color: #1f2d3a;
    font-weight: 500;
    margin-bottom: 25px;
    max-width: 520px;
    text-align: justify;
}

.about-right .about-text {
    margin-left: 25px;
}

.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    transition: all .4s ease;
}

.about-img img {
    width: 100%;
    display: block;
    border-radius: 30px;
    transition: transform .6s ease;
}

.about-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.7),
            transparent);
    transform: skewX(-25deg);
    transition: .6s;
    z-index: 2;
}

.about-img:hover::before {
    left: 125%;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-img-top {
    margin-bottom: 25px;
}

.about-img-bottom {
    margin-top: 25px;
}

@media(max-width:992px) {

    .about-text {
        max-width: 100%;
        font-size: 17px;
    }

    .about-right {
        margin-top: 30px;
    }

    .about-right .about-text {
        margin-left: 0;
    }

}

@media(max-width:768px) {

    .about-title {
        font-size: 32px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-text {
        font-size: 16px;
    }

    .about-img img {
        border-radius: 25px;
    }

}

@media(max-width:480px) {

    .about-title {
        font-size: 26px;
    }

    .about-text {
        font-size: 15px;
        line-height: 1.7;
    }

}

/* ===== ABOUT SECTION END ===== */


/* ===== TECHNOLOGIES SECTION START ===== */

.tech-section {
    padding: 30px 0;
    background: #f5f7fa;
}

.tech-title {
    font-size: 38px;
    font-weight: 750;
    color: #0c2b4a;
    margin-bottom: 60px;
}

.tech-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    transition: all .4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tech-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.tech-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: .7s;
}

.tech-card:hover::before {
    left: 125%;
}

.tech-img {
    width: 100%;
    display: block;
}

.tech-content {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0 35px;
    transition: all .4s ease;
}

.tech-card:hover .tech-content {
    transform: translateY(-3px);
}

.tech-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: #0c2b4a;
    margin-bottom: 10px;
}

.tech-content p {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tech-btn {
    display: inline-block;
    background: #0c2b4a;
    color: #fff;
    padding: 7px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    text-decoration: none;
    transition: all .3s ease;
}

.tech-btn:hover {
    background: #142c54;
    color: #fff;
}

/* ===== RESPONSIVE ===== */

@media (max-width:1200px) {

    .tech-content {
        bottom: 25px;
        padding: 0 25px;
    }

    .tech-content h5 {
        font-size: 17px;
    }

    .tech-content p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .tech-btn {
        padding: 6px 16px;
        font-size: 12px;
    }

}

@media (max-width:768px) {

    .tech-card {
        max-width: 420px;
        margin: auto;
    }

    .tech-content {
        bottom: 60px;
        padding: 0 20px;
    }

    .tech-content h5 {
        font-size: 16px;
    }

    .tech-content p {
        font-size: 13px;
        line-height: 1.4;
    }

    .tech-btn {
        padding: 6px 14px;
        font-size: 12px;
    }

}

@media (max-width:355px) {

    .tech-card {
        width: 100%;
        margin: 0;
    }

    .tech-content {
        bottom: 20px;
        padding: 0 12px;
    }

    .tech-content h5 {
        font-size: 14px;
    }

    .tech-content p {
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .tech-btn {
        padding: 5px 12px;
        font-size: 11px;
    }

}

@media (max-width:1400px) {

    .tech-content {
        bottom: 30px;
        padding: 0 30px;
    }

    .tech-content h5 {
        font-size: 17px;
    }

    .tech-content p {
        font-size: 13.5px;
        line-height: 1.5;
    }

}

@media (min-width:992px) and (max-width:1200px) {

    .tech-content {
        bottom: 15px;
        padding: 0 28px;
    }

    .tech-content h5 {
        font-size: 17px;
    }

    .tech-content p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .tech-btn {
        padding: 6px 16px;
        font-size: 12px;
    }

}

@media (max-width:767px) {

    .tech-card {
        max-width: 420px;
        margin: auto;
    }

    .tech-content {
        bottom: 75px;
        padding: 0 20px;
    }

    .tech-content h5 {
        font-size: 16px;
    }

    .tech-content p {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .tech-btn {
        padding: 6px 14px;
        font-size: 12px;
    }

}

@media (min-width:300px) and (max-width:365px) {

    .tech-content {
        bottom: 30px;
        padding: 0 15px;
    }

    .tech-content h5 {
        font-size: 15px;
    }

    .tech-content p {
        font-size: 12px;
        line-height: 1.35;
    }

    .tech-btn {
        padding: 5px 12px;
        font-size: 11px;
    }

}

/* ===== TECHNOLOGIES SECTION END ===== */

/* ===== PRODUCTS SECTION START ===== */

.products-section {
    padding: 30px 0;
    background: #f3f4f6;
}

.products-title {
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1b2b45;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    justify-items: center;
}

.product-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 14px;
    overflow: hidden;
    transition: all .5s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 0 25px rgba(27, 43, 69, 0.25);
}

.product-card img {
    width: 100%;
    display: block;
    transition: transform .7s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-info {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 28px;
}

.product-info h3 {
    font-size: 23px;
    font-weight: 700;
    color: #1b2b45;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 600;
    color: #555;
    max-width: 260px;
    margin: 0 auto;
}

@media (max-width:1400px) {
    .product-info {
        bottom: 32px;
        padding: 0 24px;
    }

    .product-info h3 {
        font-size: 21px;
    }

    .product-info p {
        font-size: 16px;
        max-width: 240px;
    }
}

@media (max-width:992px) {
    .product-info {
        bottom: 30px;
        padding: 0 22px;
    }

    .product-info h3 {
        font-size: 20px;
    }

    .product-info p {
        font-size: 15px;
        max-width: 220px;
    }
}

@media (max-width:768px) {
    .product-info {
        bottom: 60px;
        padding: 0 40px;
    }

    .product-info h3 {
        font-size: 26px;
    }

    .product-info p {
        font-size: 18px;
        max-width: 420px;
        line-height: 1.7;
    }
}

@media (max-width:576px) {
    .products-title {
        font-size: 30px;
    }

    .product-info {
        bottom: 70px;
        padding: 0 28px;
    }

    .product-info h3 {
        font-size: 20px;
    }

    .product-info p {
        font-size: 15px;
    }
}

@media (max-width:350px) {
    .product-info {
        bottom: 90px;
        padding: 0 18px;
    }

    .product-info h3 {
        font-size: 19px;
    }

    .product-info p {
        font-size: 14px;
        max-width: 220px;
        line-height: 1.5;
    }
}

@media (max-width:362px) {
    .product-info {
        bottom: 20px;
        padding: 0 16px;
    }

    .product-info h3 {
        font-size: 18px;
    }

    .product-info p {
        font-size: 13px;
        max-width: 200px;
        line-height: 1.4;
    }
}

/* ===== PRODUCTS SECTION END ===== */


/* ===== SERVICE SECTION START ===== */

.service-section {
    padding: 30px 0;
    background: #f5f6f7;
    text-align: center;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    color: #1f3b4d;
    margin-bottom: 35px;
}

.service-container {
    max-width: 1100px;
    width: 100%;
    padding: 0 15px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.service-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.service-image img {
    width: 100%;
    max-width: 480px;
    transition: transform .4s ease;
    position: relative;
    z-index: 1;
}

.service-image:hover img {
    transform: scale(1.06);
}

.service-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120px;
    width: 120px;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    pointer-events: none;
    opacity: 0;
}

.service-image:hover::after {
    animation: shine .8s ease;
    opacity: 1;
}

@keyframes shine {
    0% {
        left: -120px;
    }

    100% {
        left: 480px;
    }
}

.service-content {
    flex: 1;
    text-align: left;
    max-width: 520px;
}

.service-content p {
    font-size: 16.5px;
    line-height: 1.9;
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: justify;
    text-align-last: left;
    letter-spacing: .2px;
}

.service-btn {
    padding: 12px 30px;
    border: none;
    background: #0b2a4a;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.service-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    transform: skewX(-25deg);
    transition: .5s;
}

.service-btn:hover::before {
    left: 130%;
}

.service-btn:hover {
    transform: scale(1.04);
}

@media(max-width:1024px) {

    .service-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .service-content {
        text-align: center;
        max-width: 700px;
    }

    .service-content p {
        text-align: justify;
    }

}

@media(max-width:768px) {

    .section-title {
        font-size: 30px;
    }

    .service-content p {
        font-size: 15.5px;
        line-height: 1.8;
    }

    .service-image img {
        max-width: 340px;
    }

}

/* ===== SERVICE SECTION END ===== */


/* ===== JOURNEY SECTION START ===== */

.journey-section {
    padding: 30px 0;
    background: #f5f7fa;
}

.journey-title {
    font-size: 44px;
    font-weight: 700;
    color: #1f3a4d;
    margin-bottom: 70px;
    line-height: 1.3;
}

.journey-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.journey-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent);
    transition: 0.6s;
}

.journey-card:hover::before {
    left: 100%;
}

.journey-icon {
    width: 110px;
    height: auto;
    margin-bottom: 25px;
    transition: 0.4s;
}

.journey-card:hover .journey-icon {
    transform: scale(1.12) rotate(4deg);
}

.journey-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1f3a4d;
    margin-bottom: 18px;
}

.journey-card p {
    font-weight: bold;
    color: #4f6475;
    line-height: 1.7;
}

/* ===== JOURNEY RESPONSIVE ===== */

@media(max-width:992px) {

    .journey-title {
        font-size: 36px;
    }

}

@media(max-width:768px) {

    .journey-title {
        font-size: 30px;
    }

    .journey-card {
        padding: 40px 25px;
    }

}

@media(max-width:576px) {

    .journey-icon {
        width: 95px;
    }

    .journey-title {
        font-size: 26px;
    }

}

@media(max-width:576px) {

    .journey-card p {
        font-size: 16px;
        min-height: auto;
    }

}

@media(max-width:576px) {

    .journey-section {
        padding: 20px 0;
    }

}

@media(max-width:350px) {

    .journey-card {
        padding: 35px 18px;
    }

}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

/* ===== JOURNEY SECTION END ===== */


/* ===== FOOTER SECTION START ===== */

.main-footer {
    background: #0f2f47;
    color: #cfd8dc;
    padding: 60px 0 0;
    font-family: 'Inter', sans-serif;
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    transition: 0.4s;
}

.footer-title::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: .4s;
}

.footer-title:hover {
    transform: translateY(-3px);
    color: #00e5ff;
}

.footer-title:hover::after {
    width: 70px;
    background: #00e5ff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cfd8dc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    position: relative;
    padding-left: 14px;
    display: inline-block;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #9fb3c8;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00e5ff;
    transform: translateX(6px);
}

.footer-links a:hover::before {
    color: #00e5ff;
}

/* SOCIAL ICONS */

.footer-social {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #4a6a82;
    color: #fff;
    transition: 0.4s;
}

.footer-social a:hover {
    background: #00e5ff;
    color: #0f2f47;
    box-shadow: 0 0 12px #00e5ff;
    transform: translateY(-4px);
}

.address-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s;
    backdrop-filter: blur(5px);
}

.address-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    transition: 0.4s;
}

.address-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: #00e5ff;
}

.address-card:hover p {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 40px;
    background: #8a949d;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    color: #fff;
}

.footer-bottom span {
    color: #0f2f47;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */

@media(max-width:1400px) {
    .footer-social {
        gap: 12px;
    }
}

@media(max-width:1200px) {
    .footer-social {
        gap: 14px;
    }
}

@media(max-width:992px) {

    .main-footer {
        padding: 50px 0 0;
    }

    .footer-title {
        margin-top: 20px;
    }

}

@media(max-width:768px) {

    .main-footer {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links a {
        padding-left: 0;
    }

    .footer-links a::before {
        display: none;
    }

    .address-card {
        margin: auto;
        max-width: 320px;
    }

}

@media(max-width:576px) {

    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .address-card {
        margin-top: 10px;
    }

}

/* ===== FOOTER SECTION END ===== */


/* ===== SCROLL TO TOP BUTTON START ===== */

#scrollTopBtn {
    position: fixed;
    bottom: 40px;
    right: 35px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #0c2b4a;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: all .3s ease;
    z-index: 999;
}

#scrollTopBtn:hover {
    background: #154c7a;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* mobile */

@media(max-width:576px) {

    #scrollTopBtn {
        width: 45px;
        height: 45px;
        bottom: 25px;
        right: 20px;
        font-size: 16px;
    }

}

/* ===== SCROLL TO TOP BUTTON END ===== */