/* =====================================================
   TAURUL HOLDING COMPANY
   STYLE.CSS
   Version 1.0
   Part 1
===================================================== */


/* =====================================================
   GOOGLE FONT
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');


/* =====================================================
   ROOT VARIABLES
===================================================== */

:root{

    --primary:#2FAFA2;
    --primary-dark:#218C82;

    --secondary:#0F172A;

    --light:#F8FAFC;
    --white:#FFFFFF;

    --text:#1E293B;
    --muted:#64748B;

    --border:#E2E8F0;

    --shadow:0 15px 35px rgba(15,23,42,.08);

    --radius:18px;

    --transition:.35s ease;

}



/* =====================================================
   RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--light);

    color:var(--text);

    overflow-x:hidden;

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    font-family:inherit;

}



/* =====================================================
   CONTAINER
===================================================== */

.container{

    width:min(1200px,92%);
    margin:auto;

}



/* =====================================================
   GLOBAL SECTIONS
===================================================== */

section{

    padding:110px 0;
    position:relative;

}



/* =====================================================
   HEADINGS
===================================================== */

h1{

    font-size:72px;
    line-height:1.08;
    font-weight:800;

}

h2{

    font-size:46px;
    line-height:1.2;
    font-weight:700;

}

h3{

    font-size:30px;

}

h4{

    font-size:22px;

}

p{

    color:var(--muted);

}



/* =====================================================
   SECTION TITLE
===================================================== */

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;

}

.section-title h2{

    margin-bottom:20px;

}

.section-title p{

    max-width:760px;

    margin:auto;

}



/* =====================================================
   BUTTONS
===================================================== */

.button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:60px;

    background:var(--primary);

    color:white;

    font-weight:600;

    transition:var(--transition);

    box-shadow:0 10px 25px rgba(47,175,162,.25);

}

.button:hover{

    transform:translateY(-4px);

    background:var(--primary-dark);

}

.button-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border:2px solid white;

    border-radius:60px;

    color:white;

    margin-left:15px;

    transition:var(--transition);

}

.button-outline:hover{

    background:white;

    color:var(--secondary);

}



/* =====================================================
   HEADER
===================================================== */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:var(--transition);

}

header.scrolled{

    background:white;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}



/* =====================================================
   NAVIGATION
===================================================== */

nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:85px;

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{

    height:58px;

}

.logo h2{

    color:white;

    font-size:28px;

    transition:.35s;

}

header.scrolled .logo h2{

    color:var(--secondary);

}

.menu{

    display:flex;

    gap:40px;

}

.menu a{

    color:white;

    font-weight:600;

    position:relative;

    transition:.3s;

}

header.scrolled .menu a{

    color:var(--secondary);

}

.menu a::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.menu a:hover::after{

    width:100%;

}



/* =====================================================
   HERO
===================================================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
    linear-gradient(135deg,#081220,#102542);

}

.hero::before{

    content:'';

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    right:-180px;

    top:-120px;

    background:radial-gradient(circle,var(--primary),transparent);

    opacity:.12;

}

.hero::after{

    content:'';

    position:absolute;

    width:600px;

    height:600px;

    border-radius:50%;

    left:-250px;

    bottom:-250px;

    background:radial-gradient(circle,var(--primary),transparent);

    opacity:.06;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

    position:relative;

    z-index:5;

}

.hero small{

    display:inline-block;

    padding:10px 20px;

    border-radius:40px;

    border:1px solid rgba(255,255,255,.15);

    background:rgba(255,255,255,.05);

    color:white;

    margin-bottom:30px;

    letter-spacing:2px;

}

.hero h1{

    color:white;

    margin-bottom:30px;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    color:rgba(255,255,255,.8);

    font-size:20px;

    margin-bottom:40px;

    max-width:650px;

}

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

}

.hero-logo{

    display:flex;

    justify-content:center;

}

.hero-logo img{

    width:520px;

    opacity:.06;

    animation:floatLogo 8s ease-in-out infinite;

}



/* =====================================================
   FLOATING LOGO
===================================================== */

@keyframes floatLogo{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-20px);

    }

    100%{

        transform:translateY(0px);

    }

}



/* =====================================================
   SCROLL INDICATOR
===================================================== */

.scroll{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    color:white;

    font-size:13px;

    letter-spacing:3px;

    opacity:.6;

}



/* =====================================================
   FADE ANIMATION
===================================================== */

.fade{

    opacity:0;

    transform:translateY(40px);

    transition:1s;

}

.fade.visible{

    opacity:1;

    transform:translateY(0);

}



/* =====================================================
   BACK TO TOP
===================================================== */

#topButton{

    position:fixed;

    right:30px;

    bottom:30px;

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:white;

    font-size:22px;

    cursor:pointer;

    opacity:0;

    pointer-events:none;

    transition:.35s;

    z-index:999;

}

#topButton.show{

    opacity:1;

    pointer-events:auto;

}



/* =====================================================
   MOBILE
===================================================== */

@media(max-width:992px){

    h1{

        font-size:48px;

    }

    h2{

        font-size:34px;

    }

    .hero-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    .hero-logo{

        display:none;

    }

    .menu{

        display:none;

    }

    .button-outline{

        margin-left:0;

    }

    .hero-buttons{

        justify-content:center;

    }

}

/* =====================================================
   PART 2
   TAURUL GROUP / ABOUT / VALUES
===================================================== */


/* =====================================================
   TAURUL GROUP
===================================================== */

.group-tree{
    text-align:center;
}

.parent-box{
    width:340px;
    margin:0 auto;
    background:#fff;
    border-radius:24px;
    padding:45px 35px;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.parent-box:hover{
    transform:translateY(-8px);
}

.parent-box img{
    width:110px;
    height:auto;
    margin:0 auto 20px;
}

.parent-box h3{
    margin-bottom:8px;
    color:var(--secondary);
}

.parent-box p{
    font-weight:600;
    color:var(--primary);
}

.parent-box small{
    display:block;
    margin-top:12px;
    color:var(--muted);
}

.tree-line{
    width:4px;
    height:70px;
    background:var(--primary);
    margin:25px auto;
    border-radius:10px;
}

.company-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    align-items:stretch;
}


/* =====================================================
   COMPANY CARD
===================================================== */

.company-node{
    background:#fff;
    border-radius:22px;
    padding:35px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:var(--transition);
    display:flex;
    flex-direction:column;
    height:100%;
}

.company-node:hover{
    transform:translateY(-10px);
}


/* =====================================================
   FIXED LOGO CONTAINER
===================================================== */

.company-logo{
    width:100%;
    height:180px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:28px;

    background:#F8FAFC;
    border:1px solid var(--border);
    border-radius:18px;

    overflow:hidden;
}

.company-logo img{

    max-width:85%;
    max-height:130px;

    width:auto;
    height:auto;

    object-fit:contain;

    transition:.35s;
}

.company-node:hover .company-logo img{
    transform:scale(1.05);
}


/* Placeholder */

.logo-placeholder{

    width:100%;
    height:180px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#F8FAFC;

    border:2px dashed #CBD5E1;

    border-radius:18px;

    color:#94A3B8;

    font-weight:600;

    margin-bottom:28px;

}


/* =====================================================
   COMPANY CONTENT
===================================================== */

.company-node h4{
    margin-bottom:10px;
    color:var(--secondary);
}

.company-node span{
    display:block;
    color:var(--primary);
    font-weight:700;
    margin-bottom:18px;
}

.company-node p{
    margin-top:auto;
    line-height:1.8;
}


/* =====================================================
   ABOUT
===================================================== */

.about-section{
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:70px;
    align-items:center;
}

.about-grid h5{
    color:var(--primary);
    letter-spacing:2px;
    margin-bottom:15px;
}

.about-grid h2{
    margin-bottom:30px;
}

.about-grid p{
    margin-bottom:22px;
    font-size:17px;
}


/* =====================================================
   ABOUT CARDS
===================================================== */

.about-card{
    background:var(--light);
    border-left:5px solid var(--primary);
    border-radius:18px;
    padding:30px;
    margin-bottom:22px;
    transition:var(--transition);
}

.about-card:hover{
    transform:translateX(8px);
}

.about-card h3{
    color:var(--primary);
    font-size:42px;
    margin-bottom:6px;
}

.about-card p{
    margin:0;
}


/* =====================================================
   MISSION
===================================================== */

.mission{
    background:linear-gradient(135deg,#0F172A,#172B45);
    color:#fff;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.mission-card{
    padding:45px;
    border-radius:22px;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.08);
}

.mission-card h3{
    margin-bottom:20px;
    color:#fff;
}

.mission-card p{
    color:rgba(255,255,255,.75);
}


/* =====================================================
   VALUES
===================================================== */

.values{
    background:var(--light);
}

.value-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.value-card{
    background:#fff;
    border-radius:22px;
    padding:40px 30px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.value-card:hover{
    transform:translateY(-10px);
}

.icon-circle{
    width:78px;
    height:78px;
    border-radius:50%;
    background:#EAF9F7;
    color:var(--primary);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    margin:0 auto 22px;
}

.value-card h3{
    margin-bottom:16px;
}

.value-card p{
    font-size:15px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:992px){

    .company-grid{
        grid-template-columns:1fr;
    }

    .about-grid{
        grid-template-columns:1fr;
    }

    .mission-grid{
        grid-template-columns:1fr;
    }

    .value-grid{
        grid-template-columns:1fr;
    }

    .parent-box{
        width:100%;
    }

}

/* =====================================================
   PART 3
   PORTFOLIO • TIMELINE • STATS • CTA
===================================================== */


/* =====================================================
   PORTFOLIO
===================================================== */

.portfolio{
    background:#ffffff;
}

.portfolio-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.portfolio-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    box-shadow:0 20px 45px rgba(15,23,42,.08);

    transition:.35s;

    display:flex;

    flex-direction:column;

    position:relative;

    overflow:hidden;

}

.portfolio-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:transparent;

    transition:.35s;

}

.portfolio-card:hover{

    transform:translateY(-12px);

}

.portfolio-card:hover::before{

    background:var(--primary);

}

.featured{

    border:2px solid rgba(47,175,162,.25);

}

.featured::before{

    background:var(--primary);

}


/* =====================================================
   PORTFOLIO LOGO
===================================================== */

.portfolio-logo{

    height:170px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#F8FAFC;

    border-radius:18px;

    margin-bottom:25px;

    border:1px solid var(--border);

}

.portfolio-logo img{

    max-width:82%;

    max-height:120px;

    object-fit:contain;

}

.portfolio-card small{

    color:var(--primary);

    font-weight:700;

    letter-spacing:1px;

}

.portfolio-card h3{

    margin:18px 0 15px;

    color:var(--secondary);

}

.portfolio-card p{

    margin-bottom:25px;

    flex-grow:1;

    line-height:1.8;

}

.portfolio-card a{

    color:var(--primary);

    font-weight:700;

    transition:.3s;

}

.portfolio-card a:hover{

    padding-left:8px;

}


/* =====================================================
   TIMELINE
===================================================== */

.timeline{

    background:#F8FAFC;

}

.timeline-wrapper{

    max-width:900px;

    margin:auto;

    position:relative;

}

.timeline-wrapper::before{

    content:"";

    position:absolute;

    left:75px;

    top:0;

    width:4px;

    height:100%;

    background:linear-gradient(var(--primary),#b7ece7);

}

.timeline-item{

    display:flex;

    gap:45px;

    margin-bottom:60px;

    position:relative;

}

.year{

    width:80px;
    height:80px;

    border-radius:50%;

    background:var(--primary);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

    font-size:22px;

    flex-shrink:0;

    z-index:2;

    box-shadow:0 10px 25px rgba(47,175,162,.35);

}

.content{

    flex:1;

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:0 15px 35px rgba(15,23,42,.08);

}

.content h3{

    margin-bottom:15px;

    color:var(--secondary);

}

.content p{

    line-height:1.8;

}


/* =====================================================
   STATS
===================================================== */

.stats{

    background:#0F172A;

    color:white;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-card{

    text-align:center;

    padding:40px;

    border-radius:18px;

    background:rgba(255,255,255,.03);

    transition:.35s;

}

.stat-card:hover{

    background:rgba(255,255,255,.06);

    transform:translateY(-6px);

}

.stat-card h2{

    font-size:60px;

    color:var(--primary);

    margin-bottom:15px;

}

.stat-card p{

    color:rgba(255,255,255,.75);

}


/* =====================================================
   GLOBAL PRESENCE
===================================================== */

.presence{

    background:#fff;

}

.presence-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.country{

    background:#F8FAFC;

    border-radius:22px;

    padding:45px;

    transition:.35s;

    border:1px solid var(--border);

}

.country:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(15,23,42,.08);

}

.country h3{

    margin-bottom:20px;

    color:var(--secondary);

}

.country p{

    line-height:1.8;

}


/* =====================================================
   CTA
===================================================== */

.cta{

    background:
    linear-gradient(135deg,
    #2FAFA2,
    #238E86);

    color:white;

    text-align:center;

    overflow:hidden;

}

.cta::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-150px;

    right:-120px;

}

.cta h2{

    color:white;

    margin-bottom:20px;

}

.cta p{

    max-width:720px;

    margin:auto;

    color:rgba(255,255,255,.85);

    font-size:18px;

    margin-bottom:35px;

}

.cta .button{

    background:white;

    color:var(--primary);

    box-shadow:none;

}

.cta .button:hover{

    background:#0F172A;

    color:white;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:992px){

.portfolio-grid{

grid-template-columns:1fr;

}

.stats-grid{

grid-template-columns:1fr 1fr;

}

.presence-grid{

grid-template-columns:1fr;

}

.timeline-wrapper::before{

left:38px;

}

.timeline-item{

gap:20px;

}

.year{

width:70px;
height:70px;

font-size:18px;

}

}

@media(max-width:600px){

.stats-grid{

grid-template-columns:1fr;

}

}

/* =====================================================
   PART 4
   CONTACT • FOOTER • UTILITIES • FINAL
===================================================== */


/* =====================================================
   CONTACT
===================================================== */

.contact{
    background:#ffffff;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

.contact-info h3{
    margin-bottom:35px;
    color:var(--secondary);
}

.info-box{
    padding:22px 0;
    border-bottom:1px solid var(--border);
}

.info-box strong{
    display:block;
    margin-bottom:8px;
    color:var(--secondary);
    font-size:15px;
}

.info-box p{
    margin:0;
    font-size:17px;
}

.contact-form{
    background:#F8FAFC;
    padding:45px;
    border-radius:22px;
    box-shadow:var(--shadow);
}

.contact-form form{
    display:flex;
    flex-direction:column;
}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px 20px;

    border:1px solid var(--border);

    border-radius:14px;

    background:#fff;

    margin-bottom:20px;

    font-size:15px;

    transition:.3s;

    font-family:inherit;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:var(--primary);

    outline:none;

    box-shadow:0 0 0 4px rgba(47,175,162,.12);

}

.contact-form textarea{
    resize:vertical;
    min-height:170px;
}

.contact-form button{
    border:none;
    cursor:pointer;
    width:fit-content;
}



/* =====================================================
   FOOTER
===================================================== */

footer{

    background:#081220;

    color:#fff;

    padding:90px 0 35px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:45px;

}

.footer-logo{

    width:90px;

    margin-bottom:20px;

}

.footer-about p{

    color:#B8C4D6;

    max-width:340px;

    line-height:1.9;

}

footer h4{

    color:white;

    margin-bottom:20px;

    font-size:18px;

    position:relative;

}

footer h4::after{

    content:"";

    display:block;

    width:40px;

    height:3px;

    background:var(--primary);

    margin-top:12px;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:#B8C4D6;

    transition:.3s;

}

.footer-links a:hover{

    color:var(--primary);

    padding-left:6px;

}

footer hr{

    margin:55px 0 30px;

    border:none;

    height:1px;

    background:#233247;

}

.copyright{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.copyright p{

    color:#94A3B8;

}

.social-links{

    display:flex;

    gap:15px;

}

.social-links a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#132236;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    transition:.3s;

}

.social-links a:hover{

    background:var(--primary);

    transform:translateY(-3px);

}



/* =====================================================
   SCROLL PROGRESS BAR
===================================================== */

#progressBar{

    position:fixed;

    top:0;

    left:0;

    height:4px;

    width:0;

    background:var(--primary);

    z-index:9999;

}



/* =====================================================
   BACK TO TOP
===================================================== */

#topButton:hover{

    transform:translateY(-4px);

}



/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-toggle{

    display:none;

    width:45px;

    height:45px;

    border:none;

    background:none;

    cursor:pointer;

}

.menu-toggle span{

    display:block;

    width:26px;

    height:2px;

    background:white;

    margin:6px auto;

    transition:.3s;

}

header.scrolled .menu-toggle span{

    background:var(--secondary);

}



/* =====================================================
   UTILITIES
===================================================== */

.text-center{
    text-align:center;
}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:60px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:60px;}

.shadow{
    box-shadow:var(--shadow);
}

.rounded{
    border-radius:22px;
}



/* =====================================================
   FADE ANIMATION
===================================================== */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.animate{

    animation:fadeUp .8s ease forwards;

}



/* =====================================================
   SELECTION
===================================================== */

::selection{

    background:var(--primary);

    color:#fff;

}



/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#E2E8F0;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}



/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:992px){

    .contact-grid{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:1fr 1fr;

    }

    .menu{

        display:none;

    }

    .menu-toggle{

        display:block;

    }

}

@media(max-width:768px){

    section{

        padding:80px 0;

    }

    .footer-grid{

        grid-template-columns:1fr;

    }

    .copyright{

        flex-direction:column;

        text-align:center;

    }

    .contact-form{

        padding:30px;

    }

    h1{

        font-size:42px;

    }

    h2{

        font-size:32px;

    }

}

@media(max-width:480px){

    .button,
    .button-outline{

        width:100%;

    }

    .hero-buttons{

        flex-direction:column;

    }

}



/* =====================================================
   PRINT
===================================================== */

@media print{

    header,
    footer,
    #topButton,
    #progressBar{

        display:none;

    }

    body{

        background:#fff;

        color:#000;

    }

    section{

        padding:25px 0;

    }

}