
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

 :root {
    --primary: #1a5fb4;
    --primary-dark: #0d4a8a;
    --secondary: #26a269;
    --dark: #1e1e1e;
    --light: #f9f9f9;
    --gray: #8a8a8a;
    --light-gray: #f0f0f0;
    --transition: all 0.3s ease;
}

body {
            color: var(--dark);
            background-color: var(--light);
            line-height: 1.6;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 5rem 0;
            position: relative;
            max-width: 700px;
        }
        .logo .kontact {
            position: absolute;
            top: 1rem;
            left: 35rem;
            padding-inline: 1.5rem;
            font-size: 19px;
            padding-block: .7rem;
            border-radius: 10px;
            background: #D9E7F8;
            color: var(--primary);
            font-weight: 550;
            cursor: pointer;
        }

        .logo-icon {
            color: var(--primary);
            font-size: 70px;
        }

        .logo-text {
            font-size: 60px;
            font-weight: 700;
            color: var(--primary);
        }

        .logo-text span {
            color: var(--secondary);
        }

        .tagline {
            font-size: 40px;
            color: var(--gray);
            font-weight: 500;
            margin-top: -5px;
            letter-spacing: 0.5px;
        }

         /* Services Section */
        .services {
            padding: 100px 0;
            background: white;
            border-radius: 30px;
            padding-inline: 1.5rem;
            margin-bottom: 3rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 36px;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }

        .section-header p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            font-size: 18px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: white;
            border-radius: 12px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: var(--primary);
            transition: var(--transition);
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(26, 95, 180, 0.1);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(26, 95, 180, 0.3) 0%, rgba(38, 162, 105, 0.3) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 28px;
            color: var(--primary);
        }

        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }

        .service-card p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .service-list {
            list-style: none;
            margin-top: 20px;
        }

        .service-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .service-list i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 14px;
        }


        @media(max-width:1250px){
            .container{
                max-width: 100%;
                padding-inline: 3rem;
            }
            .services{
            padding-inline: 0;

            }
        }

        @media(max-width:790px){
            .logo-icon {
            color: var(--primary);
            font-size: 50px;
        }
        .logo-text {
            font-size: 50px;
        }
        .tagline {
            font-size: 20px;
        }
        .logo .kontact {
            left: 28rem;
        }
    
        }

        @media(max-width:600px){
            
            .container {
                padding-inline: 1rem;
            }
             .logo .kontact {
            position: absolute;
             top: -30px;
             transform: translateX(-50%,-50%)   ;
            left: 40%;
            padding-inline: 1rem;
            font-size: 13px;
            padding-block: .4rem;
            border-radius: 10px;
            background: #D9E7F8;
            color: var(--primary);
            font-weight: 550;
        }
        }

        @media(max-width:487px){
            .logo{
                display: flex;
                justify-content: center;
            }
            .logo-text {
            font-size: 30px;
        }
        .tagline {
            font-size: 15px;
        }
        }