* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

.banner {
    width:100%;
	height: 700px;
	background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url("images/amc home page-5.jpg");
	background-size:cover;
	background-position: center;
	display: flex;
}

@media screen and (max-width: 1024px){
	.banner{
		background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url("images/amc home page-5.jpg");
		background-size: cover;
		background-position: center;
		width: 100%;
		height: 500px;
	}
}
@media screen and (max-width: 1023px) and (min-width: 768px){
	.banner{
		background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url("images/amc home page-5.jpg");
		background-size:cover;
		background-position: center;
		height: 400px;
		width: 100%;
	}
}
@media screen and (max-width: 767px){
	.banner {
		background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url("images/amc home page-4.jpg");
		background-position:center;
		background-size:cover ;
		height: 200px;
		width: 100%;
	}
}
	
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
	position: fixed;
	width: 100%;
	z-index: 1000;
    background-color: #0A3578;
    padding: 0px;
}

.navbar ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.navbar li{
	margin-left: 20px;
}
.navbar a{
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	font-width: bold;
}

.navbar ul li a {
	display: block;
    color: white;
    text-align: center;
	padding: 10px 16px;
	text-decoration: none;
	text-transform: uppercase;
}
.navbar li a:hover:not(.active){
	background-color: #111;
}
.active{
	background-color: #000000;
}
	
.menu-toggle {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.logo{
	width: 250px;
	padding: 0px 10px;
	cursor: pointer;
	
}

@media (max-width: 820px) {
    .menu-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
        flex-direction: column;
        background-color: #0A3578;
        position: absolute;
        top: 38px;
        left: 0;
        width: 100%;
    }

    .navbar ul.active {
        display: flex;
    }

    .navbar li {
        text-align: center;
        padding: 15px 0;
        width: 100%;
    }

}

.content1{
	width: 100%;
	position: absolute;
	top: 68%;
	transform: translateY(-50%);
	text-align: center;
	color:#fff;
}
.content1 h1{
	font-size: 70px;
	margin-top: 80px;
}
.content1 p{
	margin: 20px auto;
	font-weight:100%;
	line-height:25px;
}


button{
	width: 200px;
	padding: 15px 0;
	text-align: center;
	margin: 20px 10px;
	border-radius: 25px;
	font-weight: bold;
	border: 2px solid #0A3578;
	background: transparent;
	color: #fff;
	cursor: pointer;
	position: relative;
	overflow: hidden;

}
span{
	background: #0A3578;
	height: 100%;
	width: 0%;
	border-radius: 25px;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index:-1;
	transition: 0.5s;
	
}
button:hover span{
	width: 100%;
	
}
button:hover{
	border: none;
	
}
/*phone screen small*/
@media screen and (max-width: 320px){
	.content1{
		top: 19.8%;
		width: 100%;
	}
	.content1 button{
		padding:5px 0;
		width: 75px;
		text-align: center;
		font-size: 6px;
		}	
}
/*phone screen medium*/
@media screen and (min-width: 321px) and (max-width: 375px){
	.content1{
		top: 21%;
		width: 100%;
	}
	.content1 button{
		padding:5px 0;
		width: 80px;
		text-align: center;
		font-size: 6.5px;
		}	
}
/*phone screen large*/
@media screen and (min-width: 376px) and (max-width: 430px){
	.content1{
		top: 22%;
		width: 100%;
	}
	.content1 button{
		padding:5px 0;
		width: 85px;
		text-align: center;
		font-size: 7px;
		}	
}
/*tablet screen*/
@media screen and (min-width: 431px) and (max-width: 768px){
	.content1{
		top: 21.5%;
		width: 100%;
	}
	.content1 button{
		width: 140px;
		font-size: 9px;
		padding: 10px 0px;
	}
}
/*laptop 1024 screen*/
@media screen and (min-width: 769px) and (max-width: 1024px){
	.content1{
		top: 27.5%;
		width:100%;
	}
	.content1 button{
		font-size: 12px;
	}
}

.testimonials-section{
	padding-bottom: 50px;
}
.testimonials-section h1{
	font-size: 30px;
	text-align: center;
	padding-top: 80px;
	padding-bottom: 30px;
	font-family: 'Times New Roman', Times, serif;
}
.testimonials-section p{
	font-size: 20px;
	font-family: 'Montserrat';
	text-transform: uppercase;
}
/*laptop 1024 screen*/
@media screen and (min-width: 769px) and (max-width: 1024px){
	.testimonials-section{
		padding-bottom: 50px;
	}
	.testimonials-section h1{
		font-size: 20px;
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.testimonials-section p{
		font-size: 20px;
	}
}
/*tablet screen*/
@media screen and (min-width: 431px) and (max-width: 768px){
	.testimonials-section{
		padding-bottom: 30px;
	}
	.testimonials-section h1{
		font-size: 20px;
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.testimonials-section p{
		font-size: 15px;
	}
}
/*phone screen large*/
@media screen and (min-width: 376px) and (max-width: 430px){
	.testimonials-section{
		padding-bottom: 20px;
	}
	.testimonials-section h1{
		font-size: 12px;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.testimonials-section p{
		font-size: 12px;
	}
}
/*phone screen medium*/
@media screen and (min-width: 321px) and (max-width: 375px){
	.testimonials-section{
		padding-bottom: 10px;
	}
	.testimonials-section h1{
		font-size: 11px;
		padding-top: 30px;
		padding-bottom: 30px;
	} 
	.testimonials-section p{
		font-size: 11px;
	}
}
/*phone screen small*/
@media screen and (max-width: 320px){
	.testimonials-section{
		padding-bottom: 0px;
	}
	.testimonials-section h1{
		font-size: 10px;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.testimonials-section p{
		font-size: 10px;
	}
}
.testimonial-scroll{
    display: flex;
	flex-direction: row;
    overflow-x: auto;
	gap: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
	scroll-behavior: smooth;
}

.testimonial-scroll::-webkit-scrollbar {
    display: none;
}

.testimonial-box {
	flex: 0 0 auto;
    width: 460px;
	min-height: 250px;
    background-color: #0A3578;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
	box-sizing: border-box;
	word-wrap: break-word;
	overflow-wrap: break-word;
	overflow: hidden;
}
/*laptop 1024 screen*/
@media screen and (min-width: 769px) and (max-width: 1024px){
	.testimonial-box {
		width: 320px;
	}
}
/*tablet screen*/
@media screen and (min-width: 431px) and (max-width: 768px){
	.testimonial-box{
		width: 355px;
	}
}
/*phone screen large*/
@media screen and (min-width: 376px) and (max-width: 430px){
	.testimonial-box{
		width: 375px;
	}
}
/*phone screen medium*/
@media screen and (min-width: 321px) and (max-width: 375px){
	.testimonial-box{
		width: 330px;
	}
}
/*phone screen small*/
@media screen and (max-width: 320px){
	.testimonial-box{
		width: 275px;
	}
}
.contact-section {
    background-color: #000000;
    padding: 50px 20px;
    color: white;
    text-align: center;
	padding-bottom: 100px;;
}

.contact-section h1 {
    font-size: 30px;
    margin-bottom: 30px;
	font-family: 'Times New Roman', Times, serif;
	padding-top: 80px;
	padding-bottom: 30px;
}
/*laptop 1024 screen*/
@media screen and (min-width: 769px) and (max-width: 1024px){
	.contact-section{
		padding: 40px 10px;
		padding-bottom: 80px;
	}
	.contact-section h1{
		font-size: 25px;
		padding-top: 60px;
		padding-bottom: 60px;
	}
}
/*tablet screen*/
@media screen and (min-width: 431px) and (max-width: 768px){
	.contact-section{
		padding: 30px 0px;
		padding-bottom: 90px;
	}
	.contact-section h1{
		font-size: 20px;
		padding-top: 40px;
		padding-bottom: 40px;
	}
}
/*phone screen large*/
@media screen and (min-width: 376px) and (max-width: 430px){
	.contact-section{
		padding: 20px 0px;
		padding-bottom: 80px;
	}
	.contact-section h1{
		font-size: 12px;
		padding-top: 20px;
		padding-bottom: 20px;
	}
}
/*phone screen medium*/
@media screen and (min-width: 321px) and (max-width: 375px){
	.contact-section{
		padding: 20px 0px;
		padding-bottom: 80px;
	}
	.contact-section h1{
		font-size: 11px;
		padding-top: 20px;
		padding-bottom: 20px;
	}
}
/*phone screen small*/
@media screen and (max-width: 320px){
	.contact-section{
		padding: 20px 0px;
		padding-bottom: 70px;
	}
	.contact-section h1{
		font-size: 10px;
		padding-top: 20px;
		padding-bottom: 20px;
	}
}
.contact-container{
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
}
.contact-container label{
    font-weight: bold;
    margin-top: 10px;
    display: block;
    font-size: 20px;
    color: #333;
}
.contact-container input,
.contact-container textarea{
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 20px;
}
.contact-container input[type="submit"]{
    background-color: #0A3578;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size:20px;
    padding: 12px 0;
    transition: background-color 0.3s ease;
}
.contact-container input[type="submit"]:hover {
    background-color: #0056b3;
}
/* Honeypot field: hidden from users */
.honeypot {
   display: none;
}
/*1024 laptop screen*/
@media screen and (min-width: 769px) and (max-width: 1024px){
	.contact-container{
	max-width: 700px;
	}
	.contact-container label{
	font-size: 15px;	
	}
	.contact-container textarea{
	font-size: 15px;
	}
	.contact-container input[type="submit"]{
	font-size: 15px;
	}
}
/*tablet screen*/
@media screen and (min-width: 431px) and (max-width: 768px){
	.contact-container{
	max-width: 600px;
	}
	.contact-container label{
	font-size: 12px;
	}
	.contact-container textarea{
	font-size: 12px;
	}
	.contact-container input[type="submit"]{
	font-size: 12px;
	}
}
/*phone screen large*/
@media screen and (min-width: 376px) and (max-width: 430px){
	.contact-container{
	max-width: 350px;
	
	}
	.contact-container label{
	font-size: 12px;
	}
	.contact-container textarea{
	font-size: 12px;
    width: 100%;
    padding: 1px;
    margin-top: 1px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 1px;
	}
	.contact-container input[type="submit"]{
	font-size: 12px;
	}
}
/*phone screen medium*/
@media screen and (min-width: 321px) and (max-width: 375px){
	.contact-container{
	max-width: 300px;
	}
	.contact-container label{
	font-size: 11px;
	}
	.contact-container textarea{
	font-size: 11px;
    width: 100%;
    padding: 1px;
    margin-top: 1px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 1px;
	}
	.contact-container input[type="submit"]{
	font-size: 11px;
	}
}
/*phone screen small*/
@media screen and (max-width: 320px){
	.contact-container{
	max-width: 250px;
	}
	.contact-container label{
	font-size: 10px;
	}
	.contact-container textarea{
	font-size: 10px;
    width: 100%;
    padding: 1px;
    margin-top: 1px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 1px;
	}
	.contact-container input[type="submit"]{
	font-size: 10px;
	}
}
.footer{
	background: #0A3578;
	text-align: center;
	padding: 25px;
	color: #FFFFFF;
	position: static;
	
}
.footer p{
	font-size:15px;
}
/*1024 laptop screen*/
@media screen and (min-width: 769px) and (max-width: 1024px){
	.footer{
		padding: 20px;
	}
	.footer p{
		font-size: 15px;
	}
}
/*tablet screen*/
@media screen and (min-width: 431px) and (max-width: 768px){
	.footer{
		padding: 12px;
		width: 100%;
		bottom: 0;
	}
	.footer p{
		font-size: 12px;
	}
}
/*phone screen large*/
@media screen and (min-width: 376px) and (max-width: 430px){
	.footer{
		padding: 10px;
		width: 100%;
		bottom: 0;
	}
	.footer p{
		font-size: 12px;
	}
}
/*phone screen medium*/
@media screen and (min-width: 321px) and (max-width: 375px){
	.footer{
		padding: 10px;
		width: 100%;
		bottom: 0;
	}
	.footer p{
		font-size: 12px;
	}
}
/*phone screen small*/
@media screen and (max-width: 320px){
	.footer{
		padding: 10px;
		width: 100%;
		bottom: 0;
	}
	.footer p{
		font-size: 12px;
	}
}
.social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 10px;
        }

        .social-icons a {
            color: white;
            font-size: 20px;
            text-decoration: none;
            transition: 0.3s;
        }

        .social-icons a:hover {
            color: #f39c12;
        }
/*1024 laptop screen*/
@media screen and (min-width: 769px) and (max-width: 1024px){
	.social-icons a{
		font-size: 30px;
	}
}    
/*tablet screen*/
@media screen and (min-width: 431px) and (max-width: 768px){
	.social-icons a{
		font-size: 25px;
	}
}
/*phone screen large*/
@media screen and (min-width: 376px) and (max-width: 430px){
	.social-icons a{
		font-size: 20px;
	}
}
/*phone screen medium*/
@media screen and (min-width: 321px) and (max-width: 375px){
	.social-icons a{
		font-size: 20px;
	}
}
/*phone screen small*/
@media screen and (max-width: 320px){
	.social-icons a{
		font-size: 12px;
	}
}
.rating-section {
	background-color: #000000;
    color: white;
    text-align: center;
	justify-content: center;
	align-items: center;
	padding-top: 120px;
	padding-bottom: 100px;
	
	
}
  .rating-container {
            background: white;
            padding: 45px;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
            text-align: center;
            width: 100%;
            max-width: 700px;
	  		color: black;
	  		height: 500px;
	 	 	margin: 0 auto;		
        }

        .rating-container h2 {
            margin-bottom: 15px;
        }

        .stars {
            display: flex;
            justify-content: center;
            gap: 15px;
            font-size: 40px;
            color: gray;
            cursor: pointer;
        }

        .stars input {
            display: none;
        }

        .stars label {
            cursor: pointer;
            transition: 0.3s;
        }

        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: #f39c12;
        }

        .comment-box {
            margin-top: 15px;
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            resize: none;
            font-size: 15px;
			height: 225px;
        }

        .submit-btn {
            background: #333;
            color: white;
            border: none;
            padding: 20px 2px;
            border-radius: 5px;
            margin-top: 25px;
            cursor: pointer;
            transition: 0.3s;
            width: 90%;
			font-size: 15px;
        }

        .submit-btn:hover {
            background: #0A3578;
        }
