*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
    }
    
    body{
    background:#f4f6f9;
    line-height:1.6;
    }
    
    .container{
    width:90%;
    max-width:1200px;
    margin:auto;
    }
    
    .flex{
    display:flex;
    justify-content:space-between;
    }
    
    /* TOPBAR */
    
    .topbar{
    background:#072c66;
    color:white;
    font-size:14px;
    padding:6px 0;
    }
    
    /* HEADER */
    
    header{
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    }
    
    .navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
    }
    
    .logo{
    font-size:24px;
    font-weight:bold;
    color:#0b3d91;
    }
    
    .menu a{
    margin-left:25px;
    text-decoration:none;
    font-weight:bold;
    color:#333;
    }
    
    .menu a:hover{
    color:#0b3d91;
    }
    
    /* HERO */
    
    .hero{
    height:520px;
    background:url("../images/baner.jpg") center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    }
    
    .hero h1{
    font-size:48px;
    margin-bottom:20px;
    color:rgb(41, 40, 40);
    }
    
    .hero p{
    font-size:20px;
    }
    
    .btn{
    display:inline-block;
    background:#0b3d91;
    color:white;
    padding:14px 28px;
    margin-top:25px;
    text-decoration:none;
    border-radius:5px;
    }
    
    /* SECTION */
    
    section{
    padding:70px 0;
    }
    
    h2{
    text-align:center;
    margin-bottom:40px;
    color:#0b3d91;
    }
    
    /* GRID */
    
    .grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    }
    
    /* ABOUT */
    
    .about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    }
    
    .about img{
    width:100%;
    border-radius:6px;
    }
    
    /* CARD */
    
    .card{
    background:white;
    padding:25px;
    border-radius:6px;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
    }
    
    /* PROJECT */
    
    .project{
    background:white;
    padding:25px;
    border-radius:6px;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
    }
    
    /* FOOTER */
    
    footer{
    background:#072c66;
    color:white;
    padding:50px 0;
    }
    
    .footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    }
    
    footer ul{
    list-style:none;
    }
    
    footer li{
    margin-bottom:8px;
    }
    
    .copyright{
    text-align:center;
    margin-top:30px;
    border-top:1px solid #333;
    padding-top:20px;
    }
    
    /* RESPONSIVE */
    
    @media(max-width:900px){
    
    .about-grid{
    grid-template-columns:1fr;
    }
    
    .hero h1{
    font-size:36px;
    }
    
    }
    .projects{
        background:#f8f9fb;
        }
        
        .project{
        background:white;
        border-radius:8px;
        overflow:hidden;
        box-shadow:0 4px 15px rgba(0,0,0,0.1);
        transition:0.3s;
        }
        
        .project:hover{
        transform:translateY(-5px);
        }
        
        .project img{
        width:100%;
        height:200px;
        object-fit:cover;
        }
        
        .project-content{
        padding:20px;
        }
        
        .project-content h3{
        margin-bottom:10px;
        color:#0b3d91;
        }

        .page-banner{
        height:250px;
        background:#0b3d91;
        display:flex;
        align-items:center;
        justify-content:center;
        color:white;
        font-size:36px;
        }
        
        .cta{
        background:#0b3d91;
        color:white;
        text-align:center;
        padding:60px 0;
        }
        
        .cta p{
        margin:20px 0;
        }
        
        .vision{
        background:#f8f9fb;
        }

        .service-card{
            background:white;
            border-radius:8px;
            overflow:hidden;
            box-shadow:0 4px 15px rgba(0,0,0,0.1);
            transition:0.3s;
            }
            
            .service-card:hover{
            transform:translateY(-5px);
            }
            
            .service-card img{
            width:100%;
            height:200px;
            object-fit:cover;
            }
            
            .service-card h3{
            padding:20px 20px 10px 20px;
            color:#0b3d91;
            }
            
            .service-card p{
            padding:0 20px 20px 20px;
            }
            .contact-grid{
                display:grid;
                grid-template-columns:1fr 1fr;
                gap:40px;
                }
                
                .contact-info p{
                margin-bottom:10px;
                }
                
                .contact-form form{
                display:flex;
                flex-direction:column;
                }
                
                .contact-form input,
                .contact-form textarea{
                
                padding:12px;
                margin-bottom:15px;
                border:1px solid #ddd;
                border-radius:4px;
                font-size:14px;
                
                }
                
                .contact-form textarea{
                height:120px;
                }
                
                .contact-form button{
                
                background:#0b3d91;
                color:white;
                padding:12px;
                border:none;
                border-radius:4px;
                cursor:pointer;
                
                }
                
                .contact-form button:hover{
                background:#072c66;
                }
                
                .map{
                margin-top:30px;
                }
                
                @media(max-width:900px){
                
                .contact-grid{
                grid-template-columns:1fr;
                }
                
                }