@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Dosis", sans-serif;
}

html {
	scroll-behavior: smooth;
}


/*NAVBAR START*/
.navbar {
	background-color: #002540;
	border-bottom: 1px solid #EAE6DF;
}
.navlogo {
	background-color: transparent;
	border: none;
}
.navbar .offcanvas {
	background-color: #EAE6DF;
}
.navbar ul {
	background-color: transparent;
	border: none;
}
.navbar .dropdown-item {
	border-bottom: 1px solid white;
}
.navbar .navbar-toggler {
	background-color: #EAE6DF;
}
.navbar a #box {
	width: 130px;
	height: 56px;
	position: absolute;
	z-index: 0;
	top: 0;
	background-color: #EAE6DF;
}
.navbar .nav-link {
	font-size: 20px;
	color: white;
}
.navbar .dropdown-item {
	font-size: 20px;
}
#box1 {
	opacity: 0;
	width: 130px;
	height: 50px;
	position: absolute;
	top: 0;
	background-color: #EAE6DF;
}
#box2 {
	opacity: 0;
	width: 130px;
	height: 50px;
	position: absolute;
	top: 56px;
	background-color: #EAE6DF;
}
#box3 {
	opacity: 0;
	width: 130px;
	height: 50px;
	position: absolute;
	top: 56px;
	clip-path: polygon(100% 100%, 0 100%, 0 40%, 50% 0, 100% 40%);
	background-color: #EAE6DF;
}
/*NAVBAR END*/





/*PAGE1 START*/
#page1 {
	overflow: hidden;
}
#page1 .title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /*justify-content: center;*/
  letter-spacing: 1px;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 100%;
}
#page1 .title h1 {
	margin-top: 220px;
  background-image: url(https://media0.giphy.com/media/v1.Y2lkPTc5MGI3NjExNmljdjMxMTh2ZmVuM2VkMXRybjR4YXFxemVmNmJ4cXRxcG0zZmY0ZSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/ZxGWYQp79fAYmF1v0z/giphy.webp);
  background-size: cover;
  background-position: center;
  color: transparent;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  text-transform: uppercase;
  font-size: 50px;
  font-weight: bold;
}
#page1 .title .container {
	position: absolute;
	bottom: 20px;
}
#page1 #line {
	 background-color: #EAE6DF; 
	 height: 2px; 
	 width: 100%;
	 position: absolute;
	 bottom: 10px;
}
/*END PAGE 1*/

   

.bgdiv {
    position: relative;
    overflow: hidden;
     /* FAST FALLBACK IMAGE */
    background: url('images/bg.png') no-repeat center center;
    background-size: cover;

}

.bgdiv .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;

    /* Start hidden so fallback image shows first */
    opacity: 0;
    transition: opacity 0.6s ease-in-out;

}

/* When video is ready → fade in */
.bgdiv .bg-video.loaded {
    opacity: 1;
}





		/* Preloader Container */
		#preloader {
		    position: fixed;
		    top: 0;
		    left: 0;
		    width: 100%;
		    height: 100%;
		    background-color: #ffffff;
		    display: flex;
		    justify-content: center;
		    align-items: center;
		    z-index: 9999;
		}

		/* Spinner */
		.spinner {
		    border: 8px solid #f3f3f3;
		    border-top: 8px solid #3498db;
		    border-radius: 50%;
		    width: 50px;
		    height: 50px;
		    animation: spin 1s linear infinite;
		}

		/* Animation */
		@keyframes spin {
		    0% {
		        transform: rotate(0deg);
		    }
		    100% {
		        transform: rotate(360deg);
		    }
		}




	/* Responsive Styles */
	@media only screen and (max-width: 768px) {
	  #page1 .title h1 {
	    	font-size: 30px;
	    	margin-bottom: 100px;
	 	}
	}





	/* ABOUT PAGE */
.about-title {
    font-size: 55px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-subtitle {
    font-size: 20px;
    color: #EAE6DF;
    margin-top: 10px;
}

.about-section {
    max-width: 900px;
}

.section-heading {
    font-size: 32px;
    font-weight: 700;
    color: #002540;
    margin-bottom: 20px;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-list {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    padding-left: 20px;
}

.about-list li {
    margin-bottom: 10px;
}



/* SERVICES PAGE */
.services-title {
    font-size: 55px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.services-subtitle {
    font-size: 20px;
    color: #EAE6DF;
    margin-top: 10px;
}

.services-section .service-card {
    background: lightskyblue;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.services-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-icon {
    width: 70px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #002540;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 16px;
}

/* CTA SECTION */
.cta-section {
    background: #002540;
    color: white;
    padding: 60px 20px;
    margin-top: 50px;
}

.cta-section h2 {
    font-size: 35px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-top: 10px;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #ffffff;
    color: #002540;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #EAE6DF;
}




/* CONTACT PAGE */
.contact-title {
    font-size: 55px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.contact-subtitle {
    font-size: 20px;
    color: #EAE6DF;
    margin-top: 10px;
}

.contact-section .section-heading {
    font-size: 30px;
    font-weight: 700;
    color: #002540;
}

.contact-form .form-control {
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
}

.contact-btn {
    background: #002540;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #004a7a;
}

.contact-info {
    list-style: none;
    padding: 0;
    font-size: 18px;
    line-height: 1.8;
}

.contact-info i {
    margin-right: 10px;
    color: #002540;
}

.contact-social a {
    font-size: 22px;
    margin-right: 12px;
    color: #002540;
    transition: 0.3s;
}

.contact-social a:hover {
    color: #00bcd4;
}

.map-container iframe {
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-title {
        font-size: 40px;
    }
}



/* FOOTER */
.footer-section {
    background-color: #002540;
    color: #EAE6DF;
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-about {
    font-size: 16px;
    line-height: 1.7;
    color: #dcdcdc;
}

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #dcdcdc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact i {
    margin-right: 10px;
    color: #ffffff;
}

.footer-social a {
    display: inline-block;
    margin-right: 12px;
    font-size: 20px;
    color: #ffffff;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #00bcd4;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #1a3a55;
    padding-top: 15px;
}

.footer-bottom p {
    margin: 0;
    font-size: 15px;
    color: #dcdcdc;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }
    .footer-social a {
        margin: 0 8px;
    }
}