/* ==========================================
   ITEME INVESTMENT LTD
   MAIN STYLESHEET
========================================== */

/* ===== GOOGLE FONT ===== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===== ROOT COLORS ===== */

:root{
    --primary:#0b2c6a;
    --secondary:#1d56c2;
    --accent:#f4a000;
    --light:#f8f9fa;
    --dark:#081f4d;
    --success:#28a745;
    --white:#ffffff;
}

/* ===== GLOBAL ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#333;
    line-height:1.7;
    overflow-x:hidden;
}

section{
    padding:80px 0;
}

h1,h2,h3,h4,h5,h6{
    font-weight:700;
}

a{
    text-decoration:none;
}

/* ==========================================
   NAVBAR
========================================== */

.navbar{
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.navbar-brand img{
    height:60px;
}

.nav-link{
    font-weight:600;
    margin-left:12px;
}

.nav-link:hover{
    color:var(--secondary)!important;
}

/* ==========================================
   HERO SECTION
========================================== */

.hero-section{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:white;
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.hero-section::before{
    content:'';
    position:absolute;
    top:-150px;
    right:-150px;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.hero-tag{
    display:inline-block;
    padding:8px 20px;
    background:var(--accent);
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-title{
    font-size:3.2rem;
    font-weight:800;
    margin-bottom:20px;
}

.hero-subtitle{
    font-size:1.2rem;
    margin-bottom:15px;
}

.hero-description{
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-highlights{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-top:25px;
}

.hero-highlights i{
    color:var(--accent);
}

.hero-image{
    max-width:100%;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }
}

/* ==========================================
   SERVICES
========================================== */

.service-card{
    border:none;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-icon{
    font-size:60px;
    color:var(--primary);
    margin-bottom:15px;
}

.service-card:hover .service-icon{
    transform:scale(1.1);
    transition:.3s;
}

/* ==========================================
   WHY US
========================================== */

.why-us{
    background:var(--light);
}

.stat-card{
    background:white;
    border-radius:20px;
    padding:30px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.stat-card:hover{
    transform:translateY(-10px);
}

.stat-card i{
    font-size:50px;
    color:var(--primary);
}

.stat-card h3{
    color:var(--accent);
    margin:15px 0;
}

/* ==========================================
   HOSTING PLANS
========================================== */

.hosting-section{
    background:#f8f9fa;
}

.hosting-card{
    background:white;
    border-radius:20px;
    padding:35px;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    position:relative;
}

.hosting-card:hover{
    transform:translateY(-10px);
}

.featured{
    border:3px solid var(--accent);
}

.popular-badge{
    position:absolute;
    top:-12px;
    right:20px;

    background:var(--accent);
    color:white;

    padding:6px 15px;
    border-radius:20px;
    font-size:14px;
}

.plan-header h3{
    color:var(--primary);
}

.plan-header h2{
    color:var(--accent);
    font-weight:800;
    margin-bottom:20px;
}

.plan-features{
    list-style:none;
    padding:0;
}

.plan-features li{
    margin-bottom:12px;
}

.plan-features i{
    color:var(--success);
    margin-right:8px;
}

/* ==========================================
   CONTACT PAGE
========================================== */

/* ==========================================
   CONTACT HEADER
========================================== */

.contact-header{
    background:linear-gradient(
        135deg,
        #0b2c6a 0%,
        #123f94 50%,
        #1d56c2 100%
    );

    color:white;
    text-align:center;

    padding:120px 0;

    position:relative;
    overflow:hidden;
}

/* Large Circle */

.contact-header::before{
    content:"";

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-120px;
    right:-120px;
}

/* Small Circle */

.contact-header::after{
    content:"";

    position:absolute;

    width:200px;
    height:200px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-80px;
    left:-80px;
}

.contact-header h1{
    font-size:3rem;
    font-weight:800;
    margin-bottom:15px;
    position:relative;
    z-index:2;
}

.contact-header p{
    font-size:1.2rem;
    max-width:700px;
    margin:auto;
    opacity:.95;
    position:relative;
    z-index:2;
}

/* Breadcrumb */

.breadcrumb{
    position:relative;
    z-index:2;
}

.breadcrumb-item a{
    color:#ffffff;
    text-decoration:none;
}

.breadcrumb-item.active{
    color:#f4a000;
}

.breadcrumb-item + .breadcrumb-item::before{
    color:white;
}

.contact-header h1{
    font-size:3rem;
    font-weight:800;
}

.contact-card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.contact-card h3{
    color:var(--primary);
    margin-bottom:20px;
}

.contact-card i{
    color:var(--accent);
    margin-right:10px;
}

.form-control,
.form-select{
    padding:12px;
    border-radius:10px;
}

.form-control:focus,
.form-select:focus{
    border-color:var(--primary);
    box-shadow:none;
}

/* ==========================================
   WHATSAPP BUTTON
========================================== */

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;

    width:65px;
    height:65px;

    background:#25D366;
    color:white;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:35px;

    z-index:9999;

    box-shadow:0 5px 15px rgba(0,0,0,.3);

    animation:pulse 2s infinite;
}

.whatsapp-float:hover{
    color:white;
    transform:scale(1.1);
}

@keyframes pulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }

    70%{
        box-shadow:0 0 0 20px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

/* ==========================================
   FOOTER
========================================== */

.footer{
    background:var(--dark);
    color:white;
    padding:70px 0 20px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#ddd;
}

.footer-links a:hover{
    color:var(--accent);
}

.footer hr{
    border-color:rgba(255,255,255,.2);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:768px){

    .hero-section{
        text-align:center;
    }

    .hero-title{
        font-size:2.3rem;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-highlights{
        justify-content:center;
    }

    .contact-header h1{
        font-size:2.2rem;
    }

    .navbar-brand img{
        height:50px;
    }
}
.contact-card:hover{
    transform:translateY(-5px);
}
.map-container{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}