 *{
            margin:0;
            padding:0;
            box-sizing:border-box;
            font-family:Arial,sans-serif;
        }

        body{
            background:#f4f7fb;
            color:#111827;
        }

        /* HERO SECTION */

        .hero{
            width:100%;
            min-height:75vh;
            background:
            linear-gradient(rgba(15,23,42,0.75),rgba(15,23,42,0.75)),
            url('https://img.magnific.com/premium-photo/blurred-college-library-interior-educational-concepts_1208970-68771.jpg?semt=ais_hybrid&w=740&q=80');
            background-size:cover;
            background-position:center;
            display:flex;
            justify-content:center;
            align-items:center;
            text-align:center;
            padding:20px;
        }

        .hero-content{
            max-width:850px;
            color:white;
        }

        .hero-content span{
            display:inline-block;
            background:rgba(255,255,255,0.15);
            padding:10px 22px;
            border-radius:40px;
            margin-bottom:25px;
            font-size:15px;
        }

        .hero-content h1{
            font-size:60px;
            margin-bottom:25px;
        }

        .hero-content p{
            line-height:1.9;
            font-size:18px;
            color:#e5e7eb;
        }

        /* SECTION */

        .facility-section{
            width:100%;
            padding:100px 20px;
        }

        .container{
            max-width:1350px;
            margin:auto;
        }

        /* TITLE */

        .section-title{
            text-align:center;
            margin-bottom:70px;
        }

        .section-title h2{
            font-size:48px;
            margin-bottom:20px;
        }

        .section-title p{
            max-width:750px;
            margin:auto;
            color:#555;
            line-height:1.8;
        }

        /* GRID */

        .facility-grid{
            display:grid;
            grid-template-columns:repeat(3,1fr);
            gap:30px;
        }

        /* CARD */

        .facility-card{
            background:white;
            border-radius:28px;
            overflow:hidden;
            box-shadow:0 12px 35px rgba(0,0,0,0.08);
            transition:0.4s;
        }

        .facility-card:hover{
            transform:translateY(-10px);
        }

        /* IMAGE */

        .facility-image{
            height:240px;
            overflow:hidden;
        }

        .facility-image img{
            width:100%;
            height:100%;
            object-fit:cover;
            transition:0.5s;
        }

        .facility-card:hover img{
            transform:scale(1.08);
        }

        /* CONTENT */

        .facility-content{
            padding:30px;
        }

        .facility-content h3{
            font-size:28px;
            margin-bottom:15px;
        }

        .facility-content p{
            color:#555;
            line-height:1.8;
            margin-bottom:20px;
            font-size:15px;
        }

        .facility-tag{
            display:inline-block;
            background:#dbeafe;
            color:#2563eb;
            padding:8px 18px;
            border-radius:30px;
            font-size:13px;
            font-weight:600;
        }

        /* SPECIAL SECTION */

        .special-section{
            width:100%;
            padding:100px 20px;
            background:white;
        }

        .special-grid{
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:40px;
        }

        .special-box{
            background:#f8fafc;
            padding:40px;
            border-radius:30px;
            transition:0.4s;
        }

        .special-box:hover{
            background:#eff6ff;
            transform:translateY(-8px);
        }

        .special-box i{
            width:80px;
            height:80px;
            background:#2563eb;
            color:white;
            display:flex;
            align-items:center;
            justify-content:center;
            border-radius:20px;
            font-size:38px;
            margin-bottom:25px;
        }

        .special-box h3{
            font-size:32px;
            margin-bottom:18px;
        }

        .special-box p{
            color:#555;
            line-height:1.9;
        }

        /* RESPONSIVE */

        @media(max-width:1100px){

            .facility-grid{
                grid-template-columns:repeat(2,1fr);
            }
        }

        @media(max-width:900px){

            .special-grid{
                grid-template-columns:1fr;
            }

            .hero-content h1{
                font-size:44px;
            }
        }

        @media(max-width:768px){

            .facility-grid{
                grid-template-columns:1fr;
            }

            .hero-content h1{
                font-size:32px;
            }

            .hero-content p{
                font-size:15px;
            }

            .section-title h2{
                font-size:32px;
            }

            .facility-section,
            .special-section{
                padding:70px 15px;
            }

            .special-box{
                padding:30px 25px;
            }

            .special-box h3{
                font-size:26px;
            }
        }
