* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            color: white;
        }

        nav {
            width: 100%;
            height: 80px;
            background: darkblue;
        }

        .container {
            width: 100%;
            min-height:600px;
            display: flex;
            background-color: #003366;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding:40px 60px;
            gap: 30px;
        }

        .left {
            flex: 1 1 400px;
            padding:65px 0;
            
        }

        .left p {
            font-size: 20px;
            color: orangered;
            text-transform: uppercase;
            font-family: cursive;
        }

        .left .join {
            color: white;
            text-transform: uppercase;
            font-weight: bold;
            font-size: 40px;
            letter-spacing: 1.5px;
            font-family: serif;
            text-shadow: 5px 5px 40px aqua;
        }

        .left i {
            font-size: 20px;
            color: orangered;
            font-weight: bold;
            padding: 10px 5px;
        }

        .left span {
            font-size: 20px;
            color: white;
            text-transform: uppercase;
        }

        .lag {
            color: aqua;
            padding-left: 10px;
            font-size: 35px;
            font-weight: bold;
        }

        .left button {
            margin-top: 20px;
            width: 200px;
            padding: 12px;
            border: none;
            background-color: orange;
            color: white;
            cursor: pointer;
            border-radius: 10px;
            font-size: 16px;
            box-shadow: 5px 5px 50px aqua;
            transition: all 0.4s ease;
        }

        .left button:hover {
            background-color: darkorange;
            transform: scale(1.08);
        }

        .right {
            flex: 1 1 300px;
            display: flex;
            justify-content: center;
        }

        .right img {
            width: 100%;
            max-width:500px;
            height: auto;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .container {
                padding: 20px 30px;
                text-align: center;
            }

            .left {
                flex: 1 1 100%;
            }

            .left .join {
                font-size: 35px;
            }

            .lag {
                font-size: 30px;
            }

            .left button {
                width: 180px;
                font-size: 15px;
            }

            .right img {
                max-width: 400px;
            }
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                text-align: center;
                padding:20px 15px;
            }

            .left .join {
                font-size: 30px;
            }

            .left p,
            .left span {
                font-size: 18px;
            }

            .right img {
                max-width: 320px;
            }

            .left button {
                width: 160px;
            }
        }

        @media (max-width: 480px) {
            nav {
                height: 60px;
            }

            .left .join {
                font-size: 25px;
            }

            .lag {
                font-size: 25px;
            }

            .left button {
                width:200px;
                font-size: 14px;
                padding: 10px;
            }

            .right img {
                max-width: 300px;
            }
        }
        
        /***********our services***************/
        
     *
	{
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

	.our-service
	{
		width: 100%;
		height:400px;
		padding:10px;
		background-color:#2f4f4f;
		border-top:3px solid yellow ;
		border-bottom:3px solid yellow ;
		
		
	}
	.our-service h2
	{
		text-align:center;
		color:yellow;
		letter-spacing: 1.5px;
		font-weight: bold;
	}
	.our-service .service
	{
		width: 100%;
		height:350px;
		display:flex;
		justify-content:space-between;
		align-items:center;
		padding:10px;

	}

	.our-service .service .card
	{
		width:25%;
		height:330px;
		
		
	}

	.our-service .service .card h3
	{
		text-align: center;
		color:yellow;
		margin-bottom:20px;
	}

	.our-service .service .card pre 
	{
		color:white;
		font-size:18px;
	}
	
	/***html css photo and paragraph***/
	
		.section
		{
			width: 100%;
			height:320px;
			background-color:yellow;
			padding:15px;
			display:flex;
			
		}
		.section .left-section img 
		{
			width:400px;
			border-radius: 20px;
		}
		.section .right-section
		{
			padding:0px 10px;
		}
		
		.section .left-section h2 
		{
		    color:black;
		}
		.section .right-section p 
		{
			text-align:justify;
			color:black;
		}
		
		.section .right-section h2 
		{
		    color:black;
		}
        
