/*=========================================================
        VINDHYA SHIP MANAGEMENT
        Premium Maritime Theme
=========================================================*/

/*========================
        VARIABLES
========================*/

:root{

    --navy:#082544;
    --blue:#0B5ED7;
    --sky:#2DB7F5;
    --light:#F6FBFF;
    --white:#ffffff;
    --text:#46576A;

    --radius:22px;

    --shadow:
    0 15px 45px rgba(7,37,68,.10);

    --transition:.35s ease;

}

/*========================
        RESET
========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;
    overflow-x:hidden;

}

body{

    font-family:'Poppins',sans-serif;

    color:var(--text);

    background:
    linear-gradient(
    180deg,
    #082544 0%,
    #10396A 18%,
    #1E5C96 35%,
    #F5FAFE 62%,
    #FFFFFF 100%
    );

    overflow-x:hidden;

    line-height:1.7;

}

img{

    display:block;
    max-width:100%;

}

video{

    display:block;
    width:100%;

}

a{

    color:inherit;
    text-decoration:none;

}

.container{

    width:min(1200px,92%);
    margin:auto;

}

/*========================
      TYPOGRAPHY
========================*/

h1{

    font-size:clamp(48px,7vw,82px);
    font-weight:800;
    line-height:1.05;

}

h2{

    font-size:clamp(34px,5vw,58px);
    line-height:1.15;
    color:var(--navy);

}

h3{

    font-size:24px;

}

p{

    font-size:17px;

}

/*========================
        BUTTONS
========================*/

.primary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:17px 38px;

    border-radius:999px;

    background:
    linear-gradient(
    135deg,
    var(--blue),
    var(--sky)
    );

    color:white;

    font-weight:600;

    transition:var(--transition);

    box-shadow:
    0 15px 35px rgba(45,183,245,.35);

}

.primary-btn:hover{

    transform:
    translateY(-5px);

}

.secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:17px 38px;

    border-radius:999px;

    border:1px solid rgba(255,255,255,.35);

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

    color:white;

    transition:var(--transition);

}

.secondary-btn:hover{

    background:white;

    color:var(--blue);

}

/*========================
     SECTION DEFAULT
========================*/

section{

    position:relative;

    padding:120px 0;

}

/*========================
     SCROLLBAR
========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:#168AE4;

    border-radius:100px;

}

::-webkit-scrollbar-track{

    background:#EDF7FF;

}
/*=========================================================
                    NAVBAR
=========================================================*/

.navbar{

    position:absolute;

    top:0;
    left:0;

    width:100%;

    height:90px;

    padding:0 7%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    z-index:1000;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.15);

}

/*========================
        LOGO
========================*/

.logo{

    display:flex;

    align-items:center;

    gap:16px;

}

.logo img{

    width:58px;

    height:auto;

}

.logo-text{

    display:flex;

    flex-direction:column;

    line-height:1.15;

}

.logo-text h2{

    color:white;

    font-size:26px;

    font-weight:700;

    letter-spacing:2px;

}

.logo-text p{

    color:#8EDBFF;

    font-size:11px;

    letter-spacing:1.7px;

    text-transform:uppercase;

}

/*========================
        NAV LINKS
========================*/

nav{

    display:flex;

    align-items:center;

    gap:36px;

}

nav a{

    color:white;

    font-size:15px;

    font-weight:500;

    position:relative;

    transition:.3s;

}

nav a:not(.quote-btn)::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#2DB7F5;

    transition:.3s;

}

nav a:hover{

    color:#7DDCFF;

}

nav a:hover::after{

    width:100%;

}

/*========================
     REQUEST BUTTON
========================*/

.quote-btn{

    padding:14px 30px;

    border-radius:999px;

    background:
    linear-gradient(
    135deg,
    var(--blue),
    var(--sky)
    );

    box-shadow:
    0 15px 35px rgba(45,183,245,.30);

    font-weight:600;

}

.quote-btn::after{

    display:none;

}

.quote-btn:hover{

    transform:translateY(-4px);

}

/*========================
     HAMBURGER
========================*/

.hamburger{

    display:none;

    font-size:34px;

    color:white;

    cursor:pointer;

}

/*========================
     MOBILE NAV
========================*/

@media(max-width:900px){

    .logo-text{

        display:none;

    }

    .hamburger{

        display:block;

        z-index:1002;

    }

    nav{

        position:fixed;

        top:0;

        right:-100%;

        width:300px;

        height:100vh;

        background:#082544;

        display:flex;

        flex-direction:column;

        justify-content:center;

        align-items:flex-start;

        gap:28px;

        padding:50px;

        transition:.45s;

        box-shadow:
        -20px 0 60px rgba(0,0,0,.25);

    }

    nav.active{

        right:0;

    }

    nav a{

        font-size:20px;

    }

    .quote-btn{

        width:100%;

        text-align:center;

    }

}
/*=========================================================
                    HERO
=========================================================*/

.hero{

    position:relative;

    height:100vh;

    min-height:780px;

    display:flex;

    align-items:center;

    overflow:hidden;

}

/*========================
        VIDEO
========================*/

.hero-video{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

/*========================
        DARK OVERLAY
========================*/

.overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(3,20,45,.82) 0%,
    rgba(3,20,45,.55) 45%,
    rgba(3,20,45,.20) 100%
    );

}

/*========================
      HERO CONTENT
========================*/

.hero-content{

    position:relative;

    z-index:3;

    width:min(700px,90%);

    margin-left:8%;

    color:white;

    animation:fadeUp 1.1s ease;

}

.hero-small{

    color:#6FD4FF;

    letter-spacing:5px;

    text-transform:uppercase;

    font-size:.85rem;

    font-weight:600;

    margin-bottom:18px;

}

.hero-content h1{

    color:white;

    margin-bottom:28px;

}

.hero-description{

    max-width:580px;

    font-size:18px;

    color:rgba(255,255,255,.88);

    line-height:1.9;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

/*========================
      SCROLL INDICATOR
========================*/

.scroll-indicator{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    z-index:4;

}

.scroll-indicator span{

    display:block;

    width:26px;

    height:44px;

    border:2px solid rgba(255,255,255,.75);

    border-radius:50px;

    position:relative;

}

.scroll-indicator span::before{

    content:"";

    position:absolute;

    width:5px;

    height:9px;

    border-radius:20px;

    background:white;

    left:50%;

    top:8px;

    transform:translateX(-50%);

    animation:scroll 2s infinite;

}

/*========================
      ANIMATIONS
========================*/

@keyframes scroll{

    0%{

        opacity:1;
        transform:translate(-50%,0);

    }

    100%{

        opacity:0;
        transform:translate(-50%,15px);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

/*========================
        MOBILE
========================*/

@media(max-width:768px){

.hero{

    min-height:100vh;

}

.hero-content{

    margin:auto;

    padding:0 24px;

    width:100%;

}

.hero-small{

    letter-spacing:3px;

    font-size:.75rem;

}

.hero-content h1{

    font-size:clamp(42px,10vw,58px);

    line-height:1.08;

}

.hero-description{

    font-size:16px;

}

.hero-buttons{

    flex-direction:column;

}

.primary-btn,
.secondary-btn{

    width:230px;

}

}
/*=========================================================
                    ABOUT
=========================================================*/

.about{

    background:linear-gradient(
    180deg,
    #F5FAFE,
    #FFFFFF
    );

    overflow:hidden;

}

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:90px;

}

/*========================
        IMAGE
========================*/

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:30px;

    object-fit:cover;

    box-shadow:
    0 35px 80px rgba(7,37,68,.15);

    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.03);

}

/* Floating card */

.about-image::after{

    content:"";

    position:absolute;

    width:170px;

    height:170px;

    background:
    linear-gradient(
    135deg,
    rgba(45,183,245,.25),
    rgba(11,94,215,.18)
    );

    border-radius:30px;

    right:-30px;

    bottom:-30px;

    z-index:-1;

}

/*========================
        CONTENT
========================*/

.about-content{

    max-width:560px;

}

.section-subtitle{

    color:var(--sky);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:14px;

    font-weight:600;

}

.about-content h2{

    margin:18px 0 30px;

}

.about-text{

    color:#617384;

    line-height:2;

    margin-bottom:40px;

}

/*========================
        FEATURES
========================*/

.about-features{

    display:grid;

    gap:18px;

    margin-bottom:45px;

}

.feature{

    display:flex;

    align-items:center;

    gap:18px;

    background:white;

    padding:18px 24px;

    border-radius:18px;

    transition:.35s;

    box-shadow:
    0 15px 35px rgba(7,37,68,.06);

}

.feature svg{

    color:var(--sky);

    width:24px;

    height:24px;

}

.feature span{

    font-weight:600;

    color:#30475F;

}

.feature:hover{

    transform:translateX(10px);

    background:linear-gradient(
    135deg,
    #F8FDFF,
    #EEF8FF
    );

}

/*========================
      LEARN BUTTON
========================*/

.learn-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:17px 34px;

    border-radius:999px;

    background:linear-gradient(
    135deg,
    var(--blue),
    var(--sky)
    );

    color:white;

    font-weight:600;

    transition:.35s;

    box-shadow:
    0 18px 40px rgba(45,183,245,.28);

}

.learn-btn:hover{

    transform:translateY(-5px);

}

/*========================
        MOBILE
========================*/

@media(max-width:900px){

.about-container{

    grid-template-columns:1fr;

    gap:60px;

}

.about-content{

    max-width:100%;

}

.about-content h2{

    text-align:left;

}

.about-image::after{

    display:none;

}

}
/*=========================================================
                    VISION
=========================================================*/

.vision{

    position:relative;

    min-height:850px;

    overflow:hidden;

    display:flex;

    align-items:center;

}

/*=========================
        BACKGROUND
=========================*/

.vision-bg{

    position:absolute;

    inset:0;

}

#visionImage{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:opacity .45s ease,
               transform 8s ease;

    transform:scale(1.08);

}

.vision:hover #visionImage{

    transform:scale(1.12);

}

/*=========================
        OVERLAY
=========================*/

.vision-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(
    90deg,
    rgba(4,22,48,.88) 0%,
    rgba(4,22,48,.65) 45%,
    rgba(4,22,48,.35) 100%
    );

}

/*=========================
        LAYOUT
=========================*/

.vision-wrapper{

    position:relative;

    z-index:3;

    width:min(1200px,92%);

    margin:auto;

    display:grid;

    grid-template-columns:340px 1fr;

    gap:120px;

    align-items:center;

}

/*=========================
        LEFT
=========================*/

.vision-left{

    color:white;

}

.section-tag{

    color:#7FD7FF;

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:14px;

    font-weight:600;

}

.vision-left h2{

    color:white;

    margin:

    18px 0

    55px;

}

/*=========================
      MENU
=========================*/

.vision-menu{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.vision-item{

    padding:22px 26px;

    border-radius:18px;

    cursor:pointer;

    transition:.35s;

    border-left:3px solid transparent;

    color:rgba(255,255,255,.82);

    background:rgba(255,255,255,.03);

}

.vision-item:hover{

    background:rgba(255,255,255,.08);

    transform:translateX(8px);

}

.vision-item.active{

    background:

    rgba(45,183,245,.18);

    border-left:4px solid #42C7FF;

    color:white;

}

/*=========================
        RIGHT
=========================*/

.vision-right{

    max-width:620px;

    color:white;

}

#visionTitle{

    color:white;

    font-size:clamp(40px,5vw,64px);

    margin-bottom:25px;

}

#visionText{

    font-size:20px;

    line-height:2;

    color:rgba(255,255,255,.90);

    margin-bottom:45px;

}

/*=========================
     BLUE ACCENT
=========================*/

.vision-right::before{

    content:"";

    display:block;

    width:90px;

    height:4px;

    border-radius:20px;

    background:#42C7FF;

    margin-bottom:35px;

}

/*=========================
      MOBILE
=========================*/

@media(max-width:900px){

.vision{

    min-height:auto;

    padding:110px 0;

}

.vision-wrapper{

    grid-template-columns:1fr;

    gap:60px;

}

.vision-left h2{

    margin-bottom:35px;

}

.vision-menu{

    gap:8px;

}

.vision-item{

    padding:18px 20px;

}

#visionTitle{

    font-size:42px;

}

#visionText{

    font-size:17px;

}

}
/*=========================================================
                    SERVICES
=========================================================*/

.services{

    background:
    linear-gradient(
    180deg,
    #F8FCFF,
    #EEF8FF
    );

    overflow:hidden;

}

.services-header{

    text-align:center;

    margin-bottom:80px;

}

.services-header p{

    color:var(--sky);

    letter-spacing:4px;

    text-transform:uppercase;

    font-weight:600;

    font-size:14px;

}

.services-header h2{

    margin-top:18px;

}

/*=========================
        GRID
=========================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

/*=========================
        CARD
=========================*/

.service-card{

    position:relative;

    background:white;

    border-radius:28px;

    padding:45px;

    overflow:hidden;

    transition:.45s;

    box-shadow:
    0 20px 60px rgba(7,37,68,.08);

}

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(45,183,245,.05),
    transparent
    );

    opacity:0;

    transition:.4s;

}

.service-card:hover::before{

    opacity:1;

}

.service-card:hover{

    transform:
    translateY(-10px);

}

/*=========================
        ICON
=========================*/

.service-icon{

    width:78px;

    height:78px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:

    linear-gradient(
    135deg,
    var(--blue),
    var(--sky)
    );

    margin-bottom:28px;

}

.service-icon svg{

    width:38px;

    height:38px;

    color:white;

}

/*=========================
        TEXT
=========================*/

.service-card h3{

    color:var(--navy);

    margin-bottom:18px;

}

.service-card p{

    color:#647587;

    line-height:1.9;

    margin-bottom:28px;

}

.service-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--blue);

    font-weight:600;

}

.service-card:hover .service-link{

    gap:18px;

}

/*=========================
        MOBILE
=========================*/

@media(max-width:900px){

.services-grid{

    grid-template-columns:1fr;

}

}
/*=========================================================
                    FLEET SHOWCASE
=========================================================*/

.fleet{

    position:relative;

    min-height:700px;

    display:flex;

    align-items:center;

    overflow:hidden;

}

/*========================
        BACKGROUND
========================*/

.fleet-video,
.fleet-image{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.fleet-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(3,20,45,.82),
    rgba(3,20,45,.55),
    rgba(3,20,45,.25)
    );

}

/*========================
        CONTENT
========================*/

.fleet-content{

    position:relative;

    z-index:2;

    color:white;

    max-width:700px;

}

.fleet-tag{

    color:#6FD4FF;

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.fleet-content h2{

    color:white;

    margin-bottom:25px;

}

.fleet-content p{

    color:rgba(255,255,255,.90);

    font-size:18px;

    line-height:2;

    margin-bottom:45px;

}

/*========================
        GLASS CARD
========================*/

.fleet-info{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-top:55px;

}

.fleet-box{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:22px;

    padding:30px;

    transition:.35s;

}

.fleet-box:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.13);

}

.fleet-box h3{

    color:white;

    font-size:22px;

    margin-bottom:10px;

}

.fleet-box p{

    color:#D8E9F8;

    font-size:15px;

}

/*========================
        MOBILE
========================*/

@media(max-width:900px){

.fleet{

    min-height:auto;

    padding:110px 0;

}

.fleet-info{

    grid-template-columns:1fr;

}

}
/*=========================================================
                    QUOTE SECTION
=========================================================*/

.quote-section{

    position:relative;

    min-height:700px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

/*=========================
        VIDEO
=========================*/

.quote-video{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    transform:scale(1.05);

}

/*=========================
        OVERLAY
=========================*/

.quote-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    180deg,
    rgba(4,20,45,.82),
    rgba(6,32,66,.78)
    );

}

/* floating blue glow */

.quote-section::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(45,183,245,.20),
    transparent 70%);

    right:-250px;

    top:-250px;

    filter:blur(30px);

}

.quote-section::after{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(11,94,215,.15),
    transparent 70%);

    left:-200px;

    bottom:-250px;

}

/*=========================
        CONTENT
=========================*/

.quote-section .container{

    position:relative;

    z-index:3;

    max-width:950px;

    text-align:center;

}

.quote-tag{

    color:#6FD4FF;

    font-size:14px;

    letter-spacing:5px;

    text-transform:uppercase;

    font-weight:600;

    margin-bottom:25px;

}

.quote-section h2{

    color:white;

    font-size:clamp(38px,5vw,64px);

    font-weight:700;

    line-height:1.3;

    margin-bottom:40px;

}

.quote-line{

    width:90px;

    height:4px;

    border-radius:999px;

    margin:0 auto 40px;

    background:
    linear-gradient(
    90deg,
    #0B5ED7,
    #42C7FF
    );

}

.quote-author{

    color:rgba(255,255,255,.85);

    font-size:17px;

    letter-spacing:2px;

    text-transform:uppercase;

}
@media(max-width:768px){

.quote-section{

    min-height:550px;

    padding:90px 25px;

}

.quote-section h2{

    font-size:34px;

    line-height:1.4;

}

.quote-author{

    font-size:14px;

    letter-spacing:1px;

}

}

/*=========================
      INFO BOXES
=========================*/

.global-points{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.global-point{

    display:flex;

    align-items:center;

    gap:20px;

    background:white;

    padding:22px 26px;

    border-radius:20px;

    box-shadow:

    0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

}

.global-point:hover{

    transform:translateX(10px);

}

.global-point svg{

    width:30px;

    height:30px;

    color:#29B6F6;

}

.global-point h4{

    color:#0B3D91;

    margin-bottom:4px;

}

.global-point span{

    color:#66768A;

}

/*=========================
        MOBILE
=========================*/

@media(max-width:900px){

.global-wrapper{

    grid-template-columns:1fr;

    gap:60px;

}

.global-right{

    order:-1;

}

.global-right img{

    max-width:100%;

}

}
.uae-marker{

    position:absolute;

    top:43%;

    left:66%;

    width:14px;

    height:14px;

    border-radius:50%;

    background:#29B6F6;

    box-shadow:0 0 20px #29B6F6;

    animation:pulse 2.5s infinite;

}

@keyframes pulse{

    0%{
        transform:scale(1);
        opacity:1;
    }

    70%{
        transform:scale(2.2);
        opacity:0;
    }

    100%{
        transform:scale(1);
        opacity:1;
    }

}
@media(max-width:900px){

.global::before{
    background-size:150%;
    background-position:center bottom;
}

.global-left h2{
    font-size:40px;
}

}
/*=========================================================
                    WHY CHOOSE US
=========================================================*/

.why{

    position:relative;

    background:linear-gradient(
        180deg,
        #FFFFFF,
        #F7FBFF
    );

    overflow:hidden;

}

.why::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(41,182,246,.10),
        transparent 70%
    );

    top:-320px;
    right:-250px;

}

.section-heading{

    text-align:center;

    margin-bottom:80px;

    position:relative;
    z-index:2;

}

.section-heading p{

    color:#29B6F6;

    text-transform:uppercase;

    letter-spacing:4px;

    font-weight:600;

    font-size:14px;

    margin-bottom:15px;

}

.section-heading h2{

    font-size:3rem;

    color:#0B3D91;

}

/*=========================
        GRID
=========================*/

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    position:relative;
    z-index:2;

}

/*=========================
        CARD
=========================*/

.why-card{

    background:white;

    border-radius:26px;

    padding:50px 40px;

    text-align:center;

    transition:.35s;

    box-shadow:
    0 18px 45px rgba(0,0,0,.06);

    border:1px solid rgba(41,182,246,.08);

}

.why-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 35px 80px rgba(11,61,145,.12);

}

.why-card svg{

    width:58px;

    height:58px;

    color:#29B6F6;

    margin-bottom:28px;

    transition:.35s;

}

.why-card:hover svg{

    transform:rotate(-8deg) scale(1.12);

}

.why-card h3{

    font-size:1.5rem;

    color:#0B3D91;

    margin-bottom:18px;

}

.why-card p{

    color:#66768A;

    line-height:1.8;

}

/*=========================
        MOBILE
=========================*/

@media(max-width:900px){

.why-grid{

grid-template-columns:1fr;

}

.section-heading h2{

font-size:2.3rem;

}

} 
/*=========================================================
                    FOOTER
=========================================================*/

.footer{

    position:relative;

    background:#061C36;

    color:white;

    overflow:hidden;

    padding-top:120px;

}

.footer-bg{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top right,
    rgba(45,183,245,.10),
    transparent 45%),

    radial-gradient(circle at bottom left,
    rgba(11,94,215,.12),
    transparent 45%);

}

/* optional world map */

.footer::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    url("world-map.png") center center / 70% no-repeat;

    opacity:.04;

}

.footer-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:
    2fr
    1fr
    1fr
    1fr;

    gap:60px;

}

.footer-brand img{

    width:70px;

    margin-bottom:25px;

}

.footer-brand h3{

    color:white;

    margin-bottom:18px;

}

.footer-brand p{

    color:#C8D6E6;

    line-height:2;

}

.footer h4{

    margin-bottom:25px;

    color:#53C9FF;

}

.footer a{

    display:block;

    margin-bottom:14px;

    color:#D7E8F8;

    transition:.3s;

}

.footer a:hover{

    color:#53C9FF;

    transform:translateX(6px);

}

.footer p{

    color:#D7E8F8;

    margin-bottom:14px;

}

.footer-bottom{

    margin-top:90px;

    border-top:1px solid rgba(255,255,255,.08);

    padding:28px;

    text-align:center;

    color:#AFC5DA;

}

/* Mobile */

@media(max-width:900px){

.footer-grid{

grid-template-columns:1fr;

gap:50px;

}

.footer{

text-align:center;

}

.footer a:hover{

transform:none;

}

}
.global{
    position:relative;
    padding:140px 0;
    overflow:hidden;
    background:#f7fbff;
}

.global::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            rgba(255,255,255,.92),
            rgba(255,255,255,.92)
        ),
        url("worldmap.avif");
    background-size:75%;
    background-repeat:no-repeat;
    background-position:right center;
    opacity:1;
}

.global .container{
    position:relative;
    z-index:2;
}

.global-grid{
    display:grid;
    grid-template-columns:1fr;
    max-width:650px;
}

.global-left h2{
    font-size:58px;
    line-height:1.1;
    color:#0B2C58;
    margin:20px 0 30px;
}

.global-left p{
    color:#5b6d84;
    line-height:1.9;
    font-size:17px;
    margin-bottom:40px;
}