/*==================================================
  IRES SHIP MANAGEMENT LLP
  Main Stylesheet
  Version 1.0
==================================================*/


/*==================================================
  GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');


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

:root{

    /* Brand */

    --primary:#9E1B32;
    --primary-dark:#731223;
    --primary-light:#C62847;

    --gold:#D4AF37;

    /* Neutral */

    --white:#ffffff;

    --background:#F7F8FA;

    --text:#1F2937;

    --text-light:#6B7280;

    --border:#E5E7EB;

    /* Shadows */

    --shadow-sm:0 2px 8px rgba(0,0,0,.05);

    --shadow-md:0 8px 24px rgba(0,0,0,.08);

    --shadow-lg:0 20px 40px rgba(0,0,0,.12);

    /* Radius */

    --radius-sm:8px;

    --radius:14px;

    --radius-lg:24px;

    /* Transition */

    --transition:.3s ease;

}


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

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


html{
    scroll-behavior:smooth;
}


body{

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

    background:var(--background);

    color:var(--text);

    line-height:1.7;

    overflow-x:hidden;

}


img{

    max-width:100%;

    display:block;

}


a{

    text-decoration:none;

    color:inherit;

}


ul{

    list-style:none;

}


button{

    border:none;

    background:none;

    cursor:pointer;

    font:inherit;

}


/*==================================================
  GLOBAL
==================================================*/

.container{

    width:min(1180px,92%);

    margin:auto;

}


.section{

    padding:50px 0;

}


.section-title{

    font-size:2rem;

    font-weight:700;

    margin-bottom:18px;

}


.section-text{

    color:var(--text-light);

    max-width:700px;

}


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

h1{

    font-size:3.2rem;

    line-height:1.1;

    font-weight:800;

}


h2{

    font-size:2.2rem;

    font-weight:700;

}


h3{

    font-size:1.3rem;

    font-weight:700;

}


p{

    color:var(--text-light);

}


/*==================================================
  UTILITIES
==================================================*/

.text-center{

    text-align:center;

}

.mb-1{
    margin-bottom:10px;
}

.mb-2{
    margin-bottom:20px;
}

.mb-3{
    margin-bottom:30px;
}

.mb-4{
    margin-bottom:40px;
}
/*==================================================
  BUTTONS
==================================================*/

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 30px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

    cursor:pointer;

}

.btn-primary{

    background:var(--gold);

    color:var(--text);

    box-shadow:var(--shadow-md);

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:var(--shadow-lg);

}

.btn-outline{

    border:2px solid white;

    color:white;

}

.btn-outline:hover{

    background:white;

    color:var(--primary);

}



/*==================================================
  TOP BAR
==================================================*/

.top-bar{

    background:var(--primary-dark);

    color:white;

    font-size:.9rem;

}

.top-bar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:10px 0;

}

.top-left{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}

.top-left span{

    display:flex;

    align-items:center;

    gap:8px;

}

.divider{

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

    font-weight:300;

}

.top-left i{

    color:var(--gold);

}


/*==================================================
  NAVIGATION
==================================================*/

.nav{

    position:sticky;

    top:0;

    z-index:1000;

    background:white;

    box-shadow:0 3px 20px rgba(0,0,0,.06);

}

.nav .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:85px;

}

.logo{

    display:flex;

    align-items:center;

    gap:14px;

}

.logo img{

    height:55px;

}

.logo h2{

    font-size:1.25rem;

    color:var(--primary);

}

.nav-menu{

    display:flex;

    align-items:center;

    gap:35px;

}

.nav-menu a{

    font-weight:600;

    position:relative;

    transition:var(--transition);

}

.nav-menu a:hover{

    color:var(--primary);

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav-menu a:hover::after{

    width:100%;

}

.nav-menu .active{

    color:var(--primary);

}

.nav-menu .active::after{

    width:100%;

}



/*==================================================
  MOBILE MENU BUTTON
==================================================*/

.menu-toggle{

    display:none;

    font-size:1.5rem;

    cursor:pointer;

    color:var(--primary);

}
/*==================================================
  SECTION HEADER
==================================================*/

.section-header{

    text-align:center;

    margin-bottom:60px;

}

.section-subtitle{

    display:inline-block;

    color:var(--primary);

    font-size:.95rem;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.section-header h2{

    margin-bottom:18px;

}

.section-header p{

    max-width:700px;

    margin:auto;

}


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

.grid-2{

    display:grid;

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

    gap:50px;

    align-items:center;

}

.grid-3{

    display:grid;

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

    gap:30px;

}


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

.service-card{

    background:var(--white);

    padding:40px 30px;

    border-radius:var(--radius);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    border-top:4px solid transparent;

    display:flex;
    flex-direction:column;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

    border-top-color:var(--primary);

}

.service-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:rgba(158,27,50,.08);

    display:flex;

    flex-direction: column;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.service-icon i{

    font-size:28px;

    color:var(--primary);

}

.service-card h3{

    margin-bottom:15px;

}

.service-card p{

    margin-bottom:25px;

}

.service-card a{

    color:var(--primary);

    font-weight:600;

    margin-top:auto;

}

.service-card a:hover{

    color:var(--primary-dark);

}


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

.image-box{

    overflow:hidden;

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow-lg);

}

.image-box img{

    width:100%;

    transition:.5s;

}

.image-box:hover img{

    transform:scale(1.05);

}


/*==================================================
  FEATURE LIST
==================================================*/

.feature-list{

    display:flex;

    flex-direction:column;

    gap:16px;

    margin-top:30px;

}

.feature-list li{

    display:flex;

    align-items:center;

    gap:14px;

    font-weight:500;

}

.feature-list i{

    width:28px;

    height:28px;

    border-radius:50%;

    background:var(--primary);

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:.8rem;

}


/*==================================================
  PAGE HERO
==================================================*/

.page-hero{

    background:linear-gradient(
        135deg,
        #9E1B32 0%,
        #7D1629 50%,
        #5E0F1E 100%
    );

    color:var(--white);

    padding:80px 0;

    text-align:center;

}

.page-hero h1{

    color:white;

    margin-bottom:20px;

}

.page-hero p{

    max-width:700px;

    margin:auto;

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

    font-size:1.1rem;

}


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

.hero{
    background:linear-gradient(
        135deg,
        #9E1B32 0%,
        #7D1629 50%,
        #5E0F1E 100%
    );

    color:var(--white);

    padding:130px 0 140px;

    position:relative;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    top:-120px;
    right:-120px;

    width:380px;
    height:380px;

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

    border-radius:50%;

}

.hero::after{

    content:"";

    position:absolute;

    bottom:-180px;
    left:-150px;

    width:500px;
    height:500px;

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

    border-radius:50%;

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:760px;

    text-align:center;

    margin:auto;

    padding-top:20px;

}

.hero-badge{

    display:inline-block;

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

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

    color:var(--gold);

    padding:10px 22px;

    border-radius:50px;

    font-size:.9rem;

    font-weight:600;

    letter-spacing:.5px;

    margin-bottom:30px;

}

.hero h1{

    color:white;

    font-size:3.8rem;

    line-height:1.15;

    margin-bottom:30px;

}

.hero p{

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

    font-size:1.1rem;

    max-width:680px;

    margin:0 auto 40px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}


/*==================================================
  HERO DIVIDER
==================================================*/

.hero-divider{

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    overflow:hidden;

    line-height:0;

}

.hero-divider svg{

    display:block;

    width:100%;

    height:80px;

    fill:var(--background);

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

.about-content h2{
    margin-bottom:20px;
}

.about-content p{
    color: var(--text-light);
    margin-bottom:20px;
}

.about-image{
    position:relative;
}

.about-image img{
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-lg);
}


/*==================================================
  STATS
==================================================*/

.stats{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.stat-box{
    background:#fff;
    padding:25px;
    border-radius:var(--radius);
    text-align:center;
    box-shadow:var(--shadow-sm);
}

.stat-box h3{
    color:var(--primary);
    font-size:2rem;
    margin-bottom:8px;
}

.stat-box p{
    font-size:.95rem;
}


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

.footer{

    background:#1A1A1A;

    color:#fff;

    padding:70px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:1.5fr 1fr 1.2fr;

    gap:50px;

}

.footer h3{

    color:white;

    margin-bottom:22px;

}

.footer p{

    color:#CFCFCF;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-links a{

    color:#CFCFCF;

    transition:.3s;

}

.footer-links a:hover{

    color:var(--gold);

    padding-left:6px;

}

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.footer-contact div{

    display:flex;

    align-items:flex-start;

    gap:12px;

}

.footer-contact i{

    color:var(--gold);

    margin-top:5px;

}

.footer-bottom{

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

    margin-top:50px;

    padding-top:25px;

    text-align:center;

    color:#BDBDBD;

    font-size:.95rem;

}


/*==================================================
  SCROLL TO TOP
==================================================*/

.scroll-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:48px;

    height:48px;

    border-radius:50%;

    background:var(--primary);

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:var(--shadow-md);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999;

}

.scroll-top.show{

    opacity:1;

    visibility:visible;

}

.scroll-top:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

}

/* Footer Vacancies */

.footer-divider{
    border:0;
    border-top:1px solid rgba(255,255,255,.15);
    margin:25px 0 20px;
}

.footer-vacancies{
    font-size:.95rem;
    line-height:1.8;
    margin-top:10px;
    color:#ddd;

}

.footer-vacancies i{
    color:var(--gold);
    margin-right:6px;
}

.footer-vacancies strong{
    color:#fff;
    display:inline-block;
    margin-bottom:6px;
}

.footer-vacancies a{
    color:var(--gold);
    text-decoration:none;
}

.footer-vacancies a:hover{
    text-decoration:underline;
}
.about-content h3 {
    color: #8B0000;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.about-content h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #d4af37;
    margin-top: 8px;
}
/* ===========================
   GOOGLE MAP
=========================== */

.map-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.map-button {
    text-align: center;
    margin-top: 30px;
}

.map-button i {
    margin-right: 8px;
}
.about-content {
    margin-top: 30px;
}
/* ===========================
   OFFICE GRID
=========================== */

.office-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:70px;
    margin-top:40px;
}

.office h3{
    color:#8B0000;
    font-size:1.8rem;
    margin-bottom:18px;
    position:relative;
}

.office h3::after{
    content:"";
    display:block;
    width:55px;
    height:3px;
    background:#D4AF37;
    margin-top:10px;
}

.office p{
    line-height:2;
    color:#5b6473;
}

@media (max-width:768px){

    .office-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

}
/* ===========================
   CONTACT GRID
=========================== */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
    max-width:900px;
    margin:40px auto 0;
}

.contact-grid h3{
    margin-bottom:15px;
}

.contact-grid p{
    line-height:1.8;
}

@media(max-width:768px){

    .contact-grid{
        grid-template-columns:1fr;
        text-align:center;
        gap:35px;
    }

}
.footer-content {
    max-width: 950px;
    margin: 0 auto;
}