/*======================================================
            H.M. PREMATHILAKA WEBSITE
               PREMIUM ABOUT CSS
======================================================*/


/*=========================
        RESET
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#ffffff;

    color:#222;

    overflow-x:hidden;

}


/*=========================
       ROOT COLORS
=========================*/

:root{

    --primary:#0F8B8D;

    --primary-dark:#075d60;

    --secondary:#18A0A3;

    --gold:#FFD54F;

    --gold-dark:#FFB300;

    --white:#ffffff;

    --light:#f7fbfb;

    --dark:#083E3F;

    --text:#444;

    --shadow:

        0 15px 40px rgba(0,0,0,.12);

}



/*=========================
      GLOBAL SECTION
=========================*/

section{

    width:100%;

    position:relative;

    overflow:hidden;

}

.container{

    width:min(1300px,92%);

    margin:auto;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}



/*=========================
      PREMIUM TITLE
=========================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:700;

    font-size:14px;

}

.section-title h2{

    margin-top:12px;

    color:var(--primary);

    font-size:48px;

    font-weight:800;

}

.title-line{

    width:110px;

    height:5px;

    margin:18px auto;

    border-radius:30px;

    background:

    linear-gradient(

        90deg,

        var(--gold),

        var(--gold-dark)

    );

}



/*=========================
      PREMIUM BUTTON
=========================*/

.premium-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:18px 36px;

    border-radius:18px;

    color:#fff;

    font-weight:700;

    background:

    linear-gradient(

        135deg,

        var(--primary),

        var(--secondary)

    );

    border:2px solid var(--gold);

    transition:.35s;

    box-shadow:var(--shadow);

}

.premium-btn:hover{

    transform:

        translateY(-6px)

        scale(1.03);

}

.secondary{

    background:

    linear-gradient(

        135deg,

        rgba(255,255,255,.15),

        rgba(255,255,255,.08)

    );

}



/*=========================
      HEADER
=========================*/

.header{

    position:sticky;

    top:0;

    z-index:999;

    background:

    linear-gradient(

        135deg,

        var(--primary),

        var(--secondary)

    );

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 8%;

    box-shadow:

        0 10px 30px rgba(0,0,0,.12);

}

.left-side{

    display:flex;

    align-items:center;

    gap:20px;

}
/*=============================
        TEXT BRANDING
=============================*/

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.2;
}

.brand-title{
    font-size:28px;
    font-weight:800;
    color:#ffffff;
    letter-spacing:.5px;
    transition:.3s;
}

.brand-tagline{
    margin-top:5px;
    font-size:12px;
    color:#FFD54F;
    font-weight:500;
    letter-spacing:.8px;
}

.logo:hover .brand-title{
    color:#FFD54F;
}

.logo:hover .brand-tagline{
    color:#ffffff;
}


/*=========================================
            PREMIUM NAVBAR
=========================================*/

nav{
    display:flex;
    align-items:center;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
    margin:0;
    padding:0;
}

.nav-links li{
    list-style:none;
}

.nav-links a{

    position:relative;

    display:flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    color:#fff;
    font-size:15px;
    font-weight:600;
    letter-spacing:.3px;

    border-radius:20px;

    transition:.35s ease;

}

.nav-links a i{

    color:#FFD54F;
    font-size:15px;

}

.nav-links a:hover{

    color:#FFD54F;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    box-shadow:
        0 8px 20px rgba(0,0,0,.12);

}

.nav-links a.active{

    color:#FFD54F;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

}



/* Gold Line */

.nav-links a::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:2px;

    transform:translateX(-50%);

    width:0;
    height:3px;

    border-radius:20px;

    background:#FFD54F;

    transition:.35s ease;

}

.nav-links a:hover::after,
.nav-links a.active::after{

    width:60px;

}



/*=========================================
        LANGUAGE SWITCHER
=========================================*/

.language-switcher{

    display:flex;

    align-items:center;

    gap:10px;

    margin-left:25px;

}

.language-switcher a{

    position:relative;

    overflow:hidden;

    color:#fff;

    font-size:13px;

    font-weight:600;

    padding:8px 16px;

    border-radius:30px;

    border:1px solid rgba(255,255,255,.18);

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    transition:.35s;

}

.language-switcher a::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:skewX(-25deg);

    transition:.8s;

}

.language-switcher a:hover::before{

    left:180%;

}

.language-switcher a:hover{

    background:#FFD54F;

    color:#083E3F;

    transform:
        translateY(-3px)
        scale(1.05);

}

.active-lang{

    background:#FFD54F !important;

    color:#083E3F !important;

    font-weight:700;

}



/*=========================================
          MOBILE MENU
=========================================*/

.menu-toggle{

    display:none;

    font-size:32px;

    color:white;

    cursor:pointer;

}



/*=========================================
            MOBILE
=========================================*/

@media(max-width:768px){

.header{

    padding:15px 20px;

}

.logo img{

    width:105px;

}

.menu-toggle{

    display:block;

}

nav{

    display:none;

    width:100%;

    margin-top:20px;

}

nav.active{

    display:flex;

}

.nav-links{

    width:100%;

    flex-direction:column;

    gap:15px;

}

.language-switcher{

    margin:20px auto 0;

}

}
/*=========================================
            ABOUT HERO
=========================================*/

.about-hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:170px 8% 120px;

    background:
    linear-gradient(rgba(8,62,63,.78),rgba(8,62,63,.82)),
    url("images/about-city.jpg") center/cover no-repeat;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(255,213,79,.18),
    transparent 45%);

    pointer-events:none;

}

.hero-content{

    position:relative;

    max-width:900px;

    z-index:2;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.18);

    color:#FFD54F;

    font-weight:600;

    margin-bottom:35px;

}

.hero-tag i{

    color:#FFD54F;

}

.about-hero h1{

    font-size:68px;

    font-weight:800;

    color:#fff;

    line-height:1.15;

    margin-bottom:18px;

}

.about-hero h1 span{

    display:block;

    color:#FFD54F;

}

.hero-subtitle{

    color:#fff;

    font-size:24px;

    font-weight:600;

    margin-bottom:28px;

}

.member-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:14px 28px;

    border-radius:40px;

    background:linear-gradient(135deg,#FFD54F,#FFB300);

    color:#083E3F;

    font-weight:700;

    margin-bottom:35px;

    box-shadow:0 15px 35px rgba(255,213,79,.35);

}

.hero-line{

    width:120px;

    height:5px;

    border-radius:50px;

    margin:0 auto 35px;

    background:#FFD54F;

}

.hero-description{

    max-width:760px;

    margin:auto;

    color:#f4f4f4;

    font-size:18px;

    line-height:1.9;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:22px;

    margin-top:50px;

    flex-wrap:wrap;

}

/*=========================================
        HERO FEATURES
=========================================*/

.hero-features{

    margin-top:-70px;

    padding:0 8% 100px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    position:relative;

    z-index:10;

}

.feature-box{

    background:#fff;

    border-radius:24px;

    padding:35px 25px;

    text-align:center;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.feature-box:hover{

    transform:translateY(-10px);

}

.feature-box i{

    font-size:42px;

    color:#0F8B8D;

    margin-bottom:18px;

}

.feature-box h4{

    font-size:28px;

    color:#083E3F;

    margin-bottom:10px;

}

.feature-box p{

    color:#666;

    line-height:1.7;

}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:992px){

.hero-features{

    grid-template-columns:repeat(2,1fr);

}

.about-hero h1{

    font-size:52px;

}

}

@media(max-width:768px){

.about-hero{

    padding:150px 20px 90px;

}

.about-hero h1{

    font-size:40px;

}

.hero-subtitle{

    font-size:20px;

}

.hero-features{

    grid-template-columns:1fr;

    margin-top:-40px;

}

.hero-buttons{

    flex-direction:column;

    align-items:center;

}

}
/*=========================================
      ABOUT SRI LANKA INSURANCE
=========================================*/

.about-company{

    padding:120px 8%;

    background:#f8fcfc;

}

.company-container{

    display:grid;

    grid-template-columns:1fr 1.1fr;

    gap:70px;

    align-items:center;

}

.company-image{

    position:relative;

}

.company-image img{

    width:100%;

    border-radius:28px;

    overflow:hidden;

    border:6px solid #fff;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    transition:.4s;

}

.company-image img:hover{

    transform:scale(1.03);

}

.company-content h3{

    font-size:40px;

    color:#0F8B8D;

    margin-bottom:25px;

    line-height:1.3;

}

.company-content p{

    font-size:17px;

    color:#555;

    line-height:1.9;

    margin-bottom:25px;

}

.company-highlights{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;

    margin-top:40px;

}

.highlight-card{

    background:#fff;

    border-radius:22px;

    padding:30px 22px;

    text-align:center;

    border:1px solid rgba(15,139,141,.08);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.highlight-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.highlight-card i{

    font-size:42px;

    color:#FFD54F;

    margin-bottom:18px;

}

.highlight-card h4{

    color:#083E3F;

    font-size:22px;

    margin-bottom:12px;

}

.highlight-card p{

    margin:0;

    color:#666;

    font-size:15px;

    line-height:1.7;

}

/*==========================
      RESPONSIVE
==========================*/

@media(max-width:992px){

.company-container{

    grid-template-columns:1fr;

}

.company-highlights{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.about-company{

    padding:90px 20px;

}

.company-content h3{

    font-size:30px;

}

.company-highlights{

    grid-template-columns:1fr;

}

}
/*=========================================
              ABOUT ME
=========================================*/

.about-me{

    padding:120px 8%;

    background:#ffffff;

}

.about-wrapper{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:30px;

    border:8px solid #fff;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    transition:.4s;

}

.about-image img:hover{

    transform:scale(1.03);

}

.premium-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:14px 26px;

    background:linear-gradient(135deg,#FFD54F,#FFB300);

    color:#083E3F;

    font-weight:700;

    border-radius:40px;

    margin-bottom:25px;

    box-shadow:0 12px 30px rgba(255,213,79,.35);

}

.premium-badge i{

    font-size:20px;

}

.about-content h3{

    font-size:42px;

    color:#0F8B8D;

    margin-bottom:25px;

    line-height:1.3;

}

.about-content p{

    color:#555;

    font-size:17px;

    line-height:1.9;

    margin-bottom:22px;

}

.experience-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-top:40px;

}

.exp-card{

    background:#fff;

    padding:30px;

    border-radius:24px;

    text-align:center;

    border:1px solid rgba(15,139,141,.08);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.exp-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.14);

}

.exp-card i{

    font-size:42px;

    color:#FFD54F;

    margin-bottom:18px;

}

.exp-card h4{

    font-size:32px;

    color:#083E3F;

    margin-bottom:10px;

}

.exp-card p{

    margin:0;

    color:#666;

    font-size:15px;

    line-height:1.7;

}

/*==========================
      RESPONSIVE
==========================*/

@media(max-width:992px){

.about-wrapper{

    grid-template-columns:1fr;

}

.about-image{

    max-width:420px;

    margin:auto;

}

}

@media(max-width:768px){

.about-me{

    padding:90px 20px;

}

.about-content h3{

    font-size:32px;

}

.experience-grid{

    grid-template-columns:1fr;

}

}/*=========================================
        MISSION & VISION
=========================================*/

.mission-vision{

    padding:120px 8%;

    background:linear-gradient(180deg,#f8fcfc,#ffffff);

}

.mv-container{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.mv-card{

    background:#fff;

    padding:50px 40px;

    border-radius:28px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    border:1px solid rgba(15,139,141,.08);

    transition:.35s;

}

.mv-card:hover{

    transform:translateY(-10px);

    box-shadow:0 28px 60px rgba(0,0,0,.12);

}

.mv-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:linear-gradient(135deg,#FFD54F,#FFB300);

    color:#083E3F;

    font-size:38px;

}

.mv-card h3{

    font-size:30px;

    color:#0F8B8D;

    margin-bottom:18px;

}

.mv-card p{

    color:#666;

    line-height:1.9;

    font-size:17px;

}


/*=========================================
            CORE VALUES
=========================================*/

.core-values{

    padding:120px 8%;

    background:#ffffff;

}

.values-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.value-card{

    background:#fff;

    border-radius:24px;

    padding:40px 28px;

    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    border:1px solid rgba(15,139,141,.08);

    transition:.35s;

}

.value-card:hover{

    transform:translateY(-10px);

    box-shadow:0 28px 60px rgba(0,0,0,.12);

}

.value-card i{

    font-size:42px;

    color:#FFD54F;

    margin-bottom:20px;

}

.value-card h3{

    color:#083E3F;

    font-size:24px;

    margin-bottom:15px;

}

.value-card p{

    color:#666;

    font-size:15px;

    line-height:1.8;

}


/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:992px){

.mv-container{

    grid-template-columns:1fr;

}

.values-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.mission-vision,
.core-values{

    padding:90px 20px;

}

.values-grid{

    grid-template-columns:1fr;

}

.mv-card{

    padding:40px 25px;

}

}/*=========================================
            WHY CHOOSE ME
=========================================*/

.why-choose{

    padding:120px 8%;

    background:#f8fcfc;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    background:#fff;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    border:1px solid rgba(15,139,141,.08);

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 28px 60px rgba(0,0,0,.12);

}

.why-card i{

    font-size:46px;

    color:#FFD54F;

    margin-bottom:20px;

}

.why-card h3{

    color:#083E3F;

    font-size:24px;

    margin-bottom:15px;

}

.why-card p{

    color:#666;

    line-height:1.8;

}


/*=========================================
            ACHIEVEMENTS
=========================================*/

.achievements{

    padding:120px 8%;

    background:#fff;

}

.achievement-wrapper{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.achievement-card{

    background:linear-gradient(135deg,#0F8B8D,#18A0A3);

    color:#fff;

    text-align:center;

    border-radius:25px;

    padding:40px 25px;

    box-shadow:0 20px 50px rgba(15,139,141,.25);

    transition:.35s;

}

.achievement-card:hover{

    transform:translateY(-10px);

}

.achievement-card i{

    font-size:42px;

    color:#FFD54F;

    margin-bottom:18px;

}

.achievement-card h3{

    font-size:40px;

    margin-bottom:12px;

}

.achievement-card p{

    line-height:1.7;

}


/*=========================================
            STATISTICS
=========================================*/

.statistics{

    padding:100px 8%;

    background:linear-gradient(135deg,#083E3F,#0F8B8D);

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-box{

    text-align:center;

    padding:40px 20px;

    border-radius:24px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.12);

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.12);

}

.stat-box h2{

    color:#FFD54F;

    font-size:50px;

    margin-bottom:12px;

}

.stat-box span{

    color:#fff;

    font-size:18px;

    font-weight:500;

}


/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:992px){

.why-grid{

    grid-template-columns:repeat(2,1fr);

}

.achievement-wrapper{

    grid-template-columns:repeat(2,1fr);

}

.statistics{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.why-choose,
.achievements{

    padding:90px 20px;

}

.why-grid,
.achievement-wrapper,
.statistics{

    grid-template-columns:1fr;

}

.stat-box h2{

    font-size:40px;

}

}/*=========================================
            PREMIUM FOOTER
=========================================*/

.premium-footer{

    width:100%;

    margin:0;

    padding:0;

    background:
    linear-gradient(
        135deg,
        #083E3F,
        #0F8B8D
    );

    color:#fff;

    position:relative;

    overflow:hidden;

}


/*=========================================
            FOOTER CONTENT
=========================================*/

.footer-content{

    width:100%;

    padding:50px 60px;

    display:grid;

    grid-template-columns:
        2fr 1fr 1fr 1.5fr;

    gap:50px;

}


/*=========================================
            FOOTER BRAND
=========================================*/

.footer-brand h3{

    color:#FFD54F;

    font-size:30px;

    font-weight:800;

    margin-bottom:10px;

    line-height:1.2;

}

.footer-brand p{

    color:rgba(255,255,255,.85);

    line-height:1.9;

    margin-bottom:12px;

    font-size:15px;

    max-width:350px;

}


/*=========================================
            FOOTER BOX
=========================================*/

.footer-box h3,
.footer-box h4{

    margin-bottom:25px;

    color:#fff;

    text-shadow:
        0 0 15px rgba(255,255,255,.15);

}

.footer-box p{

    color:rgba(255,255,255,.85);

    line-height:1.9;

    margin-bottom:12px;

}

.footer-box a{

    display:block;

    color:#fff;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s ease;

}

.footer-box a:hover{

    color:#FFD54F;

    transform:translateX(8px);

}


/*=========================================
            CONTACT
=========================================*/

.footer-box p i{

    color:#FFD54F;

    margin-right:10px;

}

.footer-box p a{

    display:inline;

    margin:0;

}


/*=========================================
            SOCIAL
=========================================*/

.footer-social{

    display:flex;

    gap:12px;

    margin-top:20px;

}

.footer-social a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0;

    border-radius:12px;

    background:rgba(255,255,255,.10);

    color:#fff;

    transition:.3s ease;

}

.footer-social a:hover{

    background:#FFD54F;

    color:#083E3F;

    transform:
        translateY(-5px)
        scale(1.05);

}


/*=========================================
            FOOTER BOTTOM
=========================================*/

.footer-bottom{

    grid-column:1 / -1;

    width:100%;

    margin-top:20px;

    padding:25px 20px;

    border-top:
        1px solid rgba(255,255,255,.15);

    text-align:center;

    color:#fff;

    font-weight:600;

    line-height:1.7;

}

.footer-bottom strong{

    color:#FFD54F;

}


/*=========================================
            MOBILE
=========================================*/

@media(max-width:768px){

    .footer-content{

        grid-template-columns:1fr;

        text-align:center;

        padding:50px 25px;

        gap:30px;

    }

    .footer-brand p{

        margin-left:auto;

        margin-right:auto;

    }

    .footer-social{

        justify-content:center;

    }

    .footer-box a:hover{

        transform:none;

    }

}.contact-section{
    display:grid !important;
    grid-template-columns:1.6fr 1fr !important;
    gap:30px !important;
}

.contact-form-box{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;

    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    padding:40px;
    border-radius:25px;

    min-height:600px;
}

.info-top{
    grid-area:info1;
}

.info-bottom{
    grid-area:info2;
}
.footer-social{
    display:flex;
    gap:15px;
    margin-top:20px;

    justify-content:flex-start;
    align-items:center;
}
.footer-social a{

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    background:rgba(255,255,255,.08);

    color:white;

    text-decoration:none;

    transition:.35s ease;

    backdrop-filter:blur(10px);
}

.footer-social a:hover{

    transform:
        translateY(-5px)
        scale(1.08);
color:#083E3F;
    background:#FFD54F;

    box-shadow:
        0 0 20px rgba(37,211,102,.4);
}.footer-social a:nth-child(1):hover{
    background:#1877F2;
}

.footer-social a:nth-child(2):hover{
    background:#0A66C2;
}

.footer-social a:nth-child(3):hover{
    background:#25D366;
}
.footer-box p{
    display:flex;
    align-items:center;
    gap:10px;
}
.contact-item{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
    color:white;
    font-size:16px;
    font-weight:500;
}

.contact-item i{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:rgba(255,255,255,.08);
    color:#FFD54F;
    font-size:16px;
    transition:.3s ease;
}

.contact-item:hover i{
    background:#FFD54F;
    color:#083E3F;
    transform:scale(1.08);
}

.contact-item a{
    color:white;
    text-decoration:none;
}

.contact-item a:hover{
    color:#FFD54F;
}
.footer-bottom{
    width:100% !important;
    display:block !important;

    text-align:center !important;

    margin-top:40px !important;

    padding-top:25px !important;

    border-top:1px solid rgba(255,255,255,.15) !important;

    color:white !important;
}

.footer-bottom p{
    text-align:center !important;
}.footer-content{
    width:100%;
    max-width:none;
    margin:0;
    padding:70px 40px;

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
}

.footer-bottom{
    grid-column:1 / -1 !important;

    width:100% !important;

    text-align:center !important;

    margin-top:30px !important;
}.footer-content{
    padding:50px 60px;
}

.footer-box h3,
.footer-box h4{
    margin-bottom:25px;
}

.footer-bottom{
    margin-top:20px;
    opacity:.9;
}
.premium-footer{
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
}

footer{
    width:100% !important;
    margin:0 !important;
}
/*=========================================
        ABOUT PAGE CTA SECTION
=========================================*/

.about-cta{

    width:100%;

    padding:110px 8%;

    position:relative;

    overflow:hidden;

    text-align:center;

    color:#fff;

    background:
    linear-gradient(
        135deg,
        #083E3F 0%,
        #0F8B8D 55%,
        #18A0A3 100%
    );

}


/*=========================================
            BACKGROUND GLOW
=========================================*/

.about-cta::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    top:-220px;

    right:-150px;

    border-radius:50%;

    background:
        rgba(255,213,79,.12);

    filter:blur(5px);

    pointer-events:none;

}

.about-cta::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    bottom:-200px;

    left:-130px;

    border-radius:50%;

    background:
        rgba(255,255,255,.07);

    pointer-events:none;

}


/*=========================================
            CTA CONTENT
=========================================*/

.about-cta .cta-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:0 auto;

}

.about-cta .cta-content h2{

    margin:0 auto 22px;

    color:#FFD54F;

    font-size:48px;

    font-weight:800;

    line-height:1.2;

    letter-spacing:.3px;

    text-shadow:
        0 5px 20px rgba(0,0,0,.18);

}

.about-cta .cta-content p{

    max-width:760px;

    margin:0 auto 38px;

    color:rgba(255,255,255,.92);

    font-size:18px;

    line-height:1.9;

}


/*=========================================
            CTA BUTTONS
=========================================*/

.about-cta .cta-buttons{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

.about-cta .premium-btn{

    min-width:190px;

    padding:16px 28px;

    border-radius:16px;

    border:2px solid #FFD54F;

    background:
        linear-gradient(
            135deg,
            #0F8B8D,
            #18A0A3
        );

    color:#fff;

    box-shadow:
        0 12px 30px rgba(0,0,0,.18);

    transition:.35s ease;

}

.about-cta .premium-btn:hover{

    transform:
        translateY(-6px)
        scale(1.03);

    background:#FFD54F;

    color:#083E3F;

    box-shadow:
        0 18px 40px rgba(0,0,0,.25);

}

.about-cta .premium-btn i{

    color:#FFD54F;

    transition:.3s;

}

.about-cta .premium-btn:hover i{

    color:#083E3F;

}


/*=========================================
        SECONDARY CTA BUTTON
=========================================*/

.about-cta .premium-btn.secondary{

    background:
        rgba(255,255,255,.08);

    color:#fff;

    border:
        2px solid rgba(255,213,79,.85);

    backdrop-filter:blur(12px);

}

.about-cta .premium-btn.secondary:hover{

    background:#FFD54F;

    color:#083E3F;

}


/*=========================================
            MOBILE
=========================================*/

@media(max-width:768px){

    .about-cta{

        padding:85px 20px;

    }

    .about-cta .cta-content h2{

        font-size:34px;

        line-height:1.3;

    }

    .about-cta .cta-content p{

        font-size:16px;

        line-height:1.8;

        margin-bottom:30px;

    }

    .about-cta .cta-buttons{

        flex-direction:column;

        width:100%;

    }

    .about-cta .premium-btn{

        width:100%;

        max-width:300px;

    }

}

/* =====================================================
   SLIC FAMILY + STATISTICS SECTION
===================================================== */

.slic-performance{
    width:100%;
    max-width:1400px;
    margin:100px auto 0;
    padding:0 25px;
}

.slic-performance-container{
    width:100%;
    min-height:620px;
    position:relative;

    display:grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(500px, .9fr);

    gap:35px;
    align-items:stretch;
}


/* FAMILY PHOTO */

.slic-family-photo{
    width:100%;
    height:620px;

    overflow:hidden;
    position:relative;

    border-radius:32px;

    background:#0F8B8D;

    box-shadow:
        0 25px 60px rgba(0,0,0,.16);
}

.slic-family-photo img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
    object-position:center;

    transition:transform .6s ease;
}

.slic-family-photo:hover img{
    transform:scale(1.02);
}


/* STATISTICS AREA */

.slic-statistics{
    position:relative;

    width:100%;
    min-height:620px;

    display:flex;
    align-items:center;
    justify-content:center;
}


/* CARD PAGE */

.slic-card-page{
    width:100%;

    display:grid;
    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:18px;

    opacity:0;
    visibility:hidden;

    position:absolute;

    top:50%;
    left:0;

    transform:
        translateY(-50%)
        translateX(30px);

    transition:
        opacity .45s ease,
        transform .45s ease,
        visibility .45s ease;
}

.slic-card-page.active{
    opacity:1;
    visibility:visible;

    transform:
        translateY(-50%)
        translateX(0);
}


/* CARD */

.slic-card{
    min-height:250px;

    position:relative;

    padding:24px;

    border-radius:24px;

    background:rgba(255,255,255,.97);

    border:1px solid rgba(15,139,141,.08);

    box-shadow:
        0 15px 35px rgba(0,0,0,.10);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.slic-card:hover{
    transform:translateY(-7px);

    box-shadow:
        0 25px 50px rgba(0,0,0,.16);
}


/* ICON */

.slic-card-icon{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#FFD54F;

    color:#0F6F72;

    font-size:17px;

    margin-bottom:17px;

    box-shadow:
        0 5px 15px rgba(255,213,79,.25);
}


/* TITLE */

.slic-card h3{
    margin:0 0 14px;

    color:#164952;

    font-size:18px;
    font-weight:700;

    line-height:1.3;
}


/* DATA */

.slic-card span{
    display:block;

    color:#168B99;

    font-size:13px;
    font-weight:500;

    margin-bottom:3px;
}

.slic-card strong{
    display:block;

    color:#168B99;

    font-size:17px;
    font-weight:700;

    margin-bottom:18px;
}

.slic-card small{
    display:block;

    color:#999;

    font-size:12px;

    margin-bottom:3px;
}

.slic-card p{
    margin:0;

    color:#999;

    font-size:13px;
}


/* CARD ARROW */

.slic-arrow{
    position:absolute;

    right:17px;
    bottom:17px;

    width:34px;
    height:34px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#FFD54F;

    color:#164952;

    font-size:17px;
    font-weight:700;
}


/* NEXT BUTTON */

.slic-next-btn{
    position:absolute;

    right:0;
    bottom:-5px;

    width:58px;
    height:45px;

    border:none;
    border-radius:25px;

    background:#0F8B8D;

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;

    cursor:pointer;

    box-shadow:
        0 10px 25px rgba(15,139,141,.25);

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.slic-next-btn:hover{
    background:#FFD54F;
    color:#164952;

    transform:translateX(4px);

    box-shadow:
        0 12px 30px rgba(255,213,79,.35);
}

.slic-next-btn:active{
    transform:scale(.94);
}


/* PAGE 2 */

#slicPage2{
    grid-template-columns:
        repeat(2,minmax(0,1fr));
}

#slicPage2 .slic-card:last-child{
    grid-column:1 / 2;
}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:1100px){

    .slic-performance-container{
        grid-template-columns:
            minmax(0,1.15fr)
            minmax(430px,.85fr);

        gap:25px;

        min-height:570px;
    }

    .slic-family-photo{
        height:570px;
    }

    .slic-statistics{
        min-height:570px;
    }

    .slic-card{
        min-height:225px;
        padding:20px;
    }

    .slic-card h3{
        font-size:16px;
    }

    .slic-card strong{
        font-size:15px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px){

    .slic-performance{
        margin-top:40px;
        padding:0 15px;
    }

    .slic-performance-container{
        display:flex;
        flex-direction:column;

        gap:25px;

        min-height:auto;
    }

    .slic-family-photo{
        width:100%;
        height:420px;
        border-radius:24px;
    }

    .slic-statistics{
        width:100%;
        min-height:520px;
    }

    .slic-card-page{
        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap:12px;
    }

    .slic-card{
        min-height:220px;
        padding:17px;
        border-radius:19px;
    }

    .slic-card-icon{
        width:36px;
        height:36px;

        font-size:14px;

        margin-bottom:12px;
    }

    .slic-card h3{
        font-size:14px;
        margin-bottom:10px;
    }

    .slic-card strong{
        font-size:14px;
    }

    .slic-card span,
    .slic-card small,
    .slic-card p{
        font-size:11px;
    }

    .slic-arrow{
        width:29px;
        height:29px;

        right:12px;
        bottom:12px;

        font-size:14px;
    }

    .slic-next-btn{
        right:5px;
        bottom:-10px;

        width:50px;
        height:40px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px){

    .slic-family-photo{
        height:350px;
    }

    .slic-statistics{
        min-height:500px;
    }

    .slic-card{
        min-height:205px;
        padding:14px;
    }

    .slic-card h3{
        font-size:13px;
    }

    .slic-card strong{
        font-size:13px;
    }
}

</style>