/* Preloader company name below loader */
.preloader-company {
  margin-top: 80px;
  text-align: center;
  font-size: 2.0rem;
  color: #e6782f; /* same as preloader color */
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.08);
  font-family: 'Poppins', sans-serif;
  position: relative;
}
*{
   margin: 0;
   padding: 0;
   font-family: "Poppins", sans-serif;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.3),rgba(4,9,30,0.7),rgba(4,9,30,1.0)),url(images/bannerMKK.jpg) ;
    background-position: center;
    background-size:cover ;
    position: relative;
}

/* TOP NAV MENU */
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
/* Logo */
nav img{
    width: 150px;
}
/* Links */
.nav-links{
     flex: 1;
    text-align: right;
   
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 13px;
}

.nav-links ul li::after{
    content:'';
    width:0%;
    height: 2px;
    background: rgb(230, 120, 47);
    display: block;
    margin: auto;
    transition: 0.5s;


}

.nav-links ul li:hover::after{
    width: 100%;

}
.text-box{
    width: 90%;
    
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
/* TITLE*/
.text-box h1{
    font-size: 40px;
    color: rgb(230, 120, 47);;

}
.text-box {
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}

.text-box p{
    font-size: 24px;
}

/* BUTTON */
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #e6782f;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover{
    border: 1px solid #e6782f;
    background: #e6782f;  /*Color*/
    transition: 1s;
}
/*icon disapear on big screen*/
nav .fa {
    display: none;
}
/* SMALL DEVICE */
@media(max-width: 700px){
    /* title */
     .text-box h1{
    font-size: 20px;
     }
     .text-box p{
    font-size: 14px;
}
     /* logo */
     nav img{
    width: 100px;
     }
    /* menu*/
     .nav-links ul li{
    
        display: block;

        
    }
    .nav-links{
        position: fixed;
        background: #914512;
        height: 100vh;
        width: 200px;  
        top: 0;
        right:-200px;  /*to hide menu*/
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    .nav-links ul{
        padding: 5px 1px;
    }
     /*icon*/
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }


    
}
/*HOME HEADER*/
/* Home Page Header Only */


.home-header {
  width: 100%;
  background: rgba(255, 255, 255, 0.6); /* semi-transparent white */
  backdrop-filter: blur(12px); /* glass effect */
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  position: fixed; /* fixed to top */
  top: 0;
  left: 0;
  z-index: 1000;  /* above other content */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* light shadow */
  border-bottom: 1px solid rgba(200,200,200,0.3);
  transition: background 0.3s, backdrop-filter 0.3s;
}

.home-body {
  padding-top: 94px; /* Adjust to match header height */
}

/* Navigation bar */
.home-nav {
    display: flex;
    padding: 10px 6%;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.home-nav img {
    width: 140px;
}

/* Nav links (reuse existing #navLinks but color adjusted for home page) */
.home-header .nav-links ul li a {
    color: #0075A2; /* dark text for white bg */
    font-size: 14px;
    font-weight: 500;
}
@media (max-width:700px){
.home-header .nav-links ul li a {
    color: #fff; /* dark text for white bg */
    
} 

    /* menu*/
     .nav-links ul li{
    
        display: block;
        
    }
    .nav-links{
        position: fixed;
        background: #0075A2;
        height: 100vh;
        width: 200px;  
        top: 0;
        right:-200px;  /*to hide menu*/
        text-align: left;
        z-index: 3;
        transition: 1s;
    }
    .nav-links ul{
        padding: 30px;
    }
     /*icon*/
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    } 
    #close {
      color: #fff;
    }
}
/* Hover underline */
.home-header .nav-links ul li::after {
    background: #e6782f;
}

/* Hide hero text on home */
.home-header .text-box {
    display: none;
}

/* Responsive Menu (keeps your existing system working) */
@media(max-width: 700px) {
    .home-header .nav-links {
        background: #0075A2; /* same as other pages */
    }

    .home-header nav .fa {
        color: #333; /* visible on white background */
    }
}

/*CONTENT*/
.content {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.content h1{
    font-size: 36px;
    font-weight: 600;
}

.content p{
    color: #292929;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px ;
    padding: 10px;
}

 /*Sub Content in Rows*/
 #homeContainer{
    color: #fff;
 }
 #homeContainer p{
    color: #fff;
 }
.row{
    margin: 5%;
    display: flex;
    justify-content: space-between;
    
}
.content-col{
    flex-basis: 31%;
    background: #074861 ;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    
}
.content-col h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.content-col:hover{
    box-shadow: 0 0 20px 0px rgba(56, 41, 24, 0.5);
}
/*Content in Rows for SMALL SCREEN*/
@media(max-width:700px){
    .row{
        flex-direction: column; /*the content containers to be in one column*/
    }
}
/*PROPERTIES(campus) SECTION*/
.property{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 30px;
}
.property-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
/*PROPERTIES-image*/
.property-col img{
    width: 100%;
    display: block; 
}

/*PROPERTIES-Hover*/
.layer{
    background-color: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top:0 ;
    left: 0;
    transition: 0.5s;

}

.layer:hover{
     background-color: rgba(226, 109, 30, 0.76);

}

/*PROPERTIES-name text*/
.layer h3{
    width: 100%;
    font-weight: 500;
    color: white;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    transition: 0.5s;
}

.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}

/*Facilities*/
.facilities{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top:50px ;
}

.facilities-col {
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}

.facilities-col img{
    width: 100%;
    border-radius:10px ;
    height: 200px;   /* fixed height */
    object-fit: cover;  /* ensures image fills area without distortion */
    margin-bottom: 15px;
}



.facilities-col p{
     padding: 0;
}

.facilities-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;  
    
}

/*testimonials*/
.testimonials{
    width: 80%;
    margin: auto;
    padding-top: 20px;
    text-align: center;
}

/*testimonials container*/
.testimonial-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #fff3f3;
    padding: 25px;
    cursor: pointer;
    display: flex;
}

/*testimonials small round image*/
.testimonial-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}

.testimonial-col p{
    padding: 0;
}

.testimonial-col h3{
    margin-top: 15px;
    text-align: left;
}

.starz{
color: rgb(255, 184, 31);
}
/* testimonial small screen*/
@media(max-width: 700px){
    .testimonial-col img{
    margin-left: 0px;
    margin-right: 15px;
}
}

/*call To Action*/
.cta{
   margin: 100px auto; 
   width: 80%;
   background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/Homefam.jpg) ;
   background-position: center;
   background-size: cover;
   border-radius: 10px;
   text-align: center;
   padding: 100px 0;
}

.cta h1{
color: #fff;
margin-bottom: 40px;
padding: 0;
}

@media(max-width:700px){
    .cta h1{
        font-size: 20px;
        
    }

}

/*Footer*/
footer{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
.Fcontainer{
	max-width: 1170px;
	margin:auto;
}

.From{
	display: flex;
	flex-wrap: wrap;
}

.footer-col ul{
	list-style: none;
}

.footer{
	background-color: #24262b;
    padding: 70px 0;
   
}
.footer-col{
   width: 20%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e6782f;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #e6782f;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
    
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
    
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}
/*.footer{
    width: 100%;
    text-align: center;
    padding: 30ox 0;
    background-color: black;
    color: #fff;;
}

.footer h4{
    margin-bottom:25px ;
    margin-top: 20px ;
    font-weight: 600;

}

.icons{
  color: #334cbb ;
  margin: 0 13px;
  cursor: pointer;
  padding: 18px 0;
}
.fa-heart {
    color: #f44336;
} */

 /*About page*/
 .sub-header{
    
    height: 20vh;
    width: 100%;
    background-image:url(images/lightBlueGradient.webp);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
     box-shadow: 0 2px 5px rgba(0,0,0,0.5); /* light shadow */

    
 }



 .sub-header img{
  height: 90px;
  width: 90px;
  border: 2px solid #f78438;
  border-radius: 3px;
 }


 .sub-header h1{
    margin-top: 24px;
   
 }

 .about-us{
  
    width: 80%;
    margin: auto;
    padding-top: 1px;
    padding-bottom: 50px;
 }

.about-col {
    flex-basis: 48%;
    padding: 30px 4px;
    
}

.about-col img {
    width: 100%;
}

.about-col h1{
    padding-top: 0;
}

.about-p{
    padding-top:15px 0 50px;
}

.about-col h1, h4{
    color: #e6782f;
    
}

.red-btn {
  border: 1px solid #f44336;
  background: transparent;
  color: #f44336;
}

.red-btn:hover {
  color: #fff;
}

/* About SMALL SCREEN*/
@media (max-width:700px){
    .red-btn{
        margin-top: 2px;
        margin-bottom: 4px;
    }
}

/*BLOG*/
.blog-content{
    width: 80%;
    margin: auto;
    padding: 60px 0;
}

.blog-left{
    flex-basis: 65%;
}

.blog-left img{
    width: 100%
}

.blog-left h2{
    color: #222;
    font-weight: 600;
    margin: 30px 0;
}

.blog-left p{
    color: #999;
    padding: 0;
    text-align: justify;
}

.blog-right{
    flex-basis: 32%;
}
.blog-right h3{
    background: #e6782f;
    color: #fff;
    padding: 7px 0;
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-right div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    padding: 8px;
    box-sizing: border-box;
}

/*COMMENT SECTION*/
.comment-box{
    border: 1px solid #ccc;
    margin: 50px 0;
    padding:10px 20px ;
}

.comment-box h3{
    text-align: left;
}

.comment-form input, .comment-form textarea{
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0;

}

.comment-form button{
    margin: 10px 0;
}
/*Small screen title*/
@media(max-width:700px){
    .sub-header{
        font-size: 20px;
    }
}

/*CONTACT US PAGE*/
/*Map outer space*/
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
/*Map sizing*/
.location iframe{
    width: 100%;
}

.contact-us{
    width: 80%;
    margin: auto;

}

.conIU6tact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
    
   
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    
}

.contact-col div .fa{
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p{
    padding: 0;
}

.contact-col div h5{
    font-size: 20px;
    margin-bottom:5px ;
    color: #555;
    font-weight: 400;

}

.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;  /*fixes no width slide */
}

/* General icon styling */



/*SCROLL BUTTON*/
/* Scroll to Top Button */
#scrollTopBtn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99;
    font-size: 10px;
    border: none;
    outline: none;
    background-color: #e6782f;
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.3s;
}

#scrollTopBtn:hover {
    background-color: #c79c7f;
    transform: scale(1.1);
}

/*notification*/
#notification {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #284aa7;
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    text-align: center;
}
/*new SERVICES SECTION*/
#wrapper {
    font-family: 'poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    background-color: #4d88a0;
    background-repeat: no-repeat;   /* Prevents repeating */
    background-size: cover;         /* Makes image cover the whole container */
    background-position: center;    /* Keeps it centered */
    padding-top: 5px;
    border-radius: 6px;
}

#wrapper h1{
    font-size: 3em;
    margin: 25px;
}


.Scontent-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1000px;
    margin-top: 30px;
}


.Scard{
    min-height: 220px;
    width: 320px;
    padding: 30px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    margin: 10px 4px;
    box-shadow: 0px 15px 30px rgba(0,0,0,0.2);
}

#lastCard{
    margin: 10px auto; 
}

.Scard h2{
    margin-bottom: 12px;
    font-weight: 400;
    text-align: center;
}
.Scard p{
    color: #303030;
    text-align: center;
}
.Scard:hover i,
.Scard:hover p{
    color: #fff;
}
.Scard:hover h2{
    font-weight: 600;
    color: #fff;
}
 /*JUST SINGLE COLOR ON HOVER*/
 .Scard {
    position: relative;
    overflow: hidden; /* keeps hover effect inside card */
    transition: color 0.4s ease; /* smooth text color transition */
}

.Scard::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%; /* hidden initially */
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #101D42, #043d77); /* navy gradient */
    transition: all 0.5s ease; /* smooth sliding effect */
    z-index: 0;
}

.Scard:hover::before {
    left: 0; /* slides in to fill the card */
}

.Scard * {
    position: relative;
    z-index: 1; /* keep text above overlay */
    transition: color 0.4s ease;
}

.Scard:hover * {
    color: #fff; /* text turns white */
    
}

/* NO CARD HOVER PICTURES
.Scard:nth-child(1):hover{
    background: linear-gradient(45deg,
                                   rgba(211, 126, 30, 0.8) 0% ,
                                   rgba(69, 99, 199, 0.7)100% ) ,
                                    url('images/bg.jpg');
                                    background-size: cover;
}
.Scard:nth-child(2):hover{
    background: linear-gradient(45deg,
                                   rgba(211, 126, 30, 0.8) 0% ,
                                   rgba(69, 99, 199, 0.7)100% ) ,
                                    url('images/bg2.jpg');
                                    background-size: cover;
}
.Scard:nth-child(3):hover{
    background: linear-gradient(45deg,
                                   rgba(211, 126, 30, 0.8) 0% ,
                                   rgba(69, 99, 199, 0.7)100% ) ,
                                    url('images/bg3.jpg');
                                    background-size: cover;
}
.Scard:nth-child(4):hover{
    background: linear-gradient(45deg,
                                   rgba(211, 126, 30, 0.8) 0% ,
                                   rgba(69, 99, 199, 0.7)100% ) ,
                                    url('images/bg4.jpg');
                                    background-size: cover;
}
.Scard:nth-child(5):hover{
    background: linear-gradient(45deg,
                                   rgba(211, 126, 30, 0.8) 0% ,
                                   rgba(69, 99, 199, 0.7)100% ) ,
                                    url('images/bg5.jpg');
                                    background-size: cover;
}
.Scard:nth-child(6):hover{
    background: linear-gradient(45deg,
                                   rgba(211, 126, 30, 0.8) 0% ,
                                   rgba(69, 99, 199, 0.7)100% ) ,
                                    url('images/bg2.jpg');
                                    background-size: cover;
} */
@media(max-width:991px){
    #wrapper{
        padding: 25px;
       
    }
    #wrapper h1{
        font-size: 2.5em;
        font-weight: 600;
    }
    .Scontent-box{
        flex-direction: column;
        width: 100%;
    }
    .Scard{
        min-width: 300px;
        margin: 10px auto;
    }
    #wrapper .Scard{
        box-sizing: border-box; /*fixes no width slide */
       
    }
}
/*new SERVICES SECTION icons*/
.Scard i {
    font-size: 40px;   /* increase icon size */
    color: #ce6a0d;    /* optional: change icon color */
    margin-bottom: 10px; /* space between icon and heading */
}

/*FAQs PAGE*/

.FooterBody{
    font-family: 'Open Sans', sans-serif;
    color: #1b1b1b;
    background-color: #fff;
     margin: 0;
    padding: 0;
    box-sizing: border-box;
   
    
}


.title{
    font-size: 30px;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
    color: #ce6a0d; 
    
}


.questions-container{
    max-width: 800px;
    margin: 0 auto;
    margin-top: 14px;
    margin-bottom: 30px;
}
.questions-container span{
    font-size:15px;
    font-weight: 600;
    

}
.question{
    border-bottom: 1px solid #fff;
    
}
.question button{
    width: 100%;
    background-color: rgb(165, 97, 42);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    border:none;
    outline: none;
    font-size: 22px;
    color: #fff;
    font-weight: 300;
    cursor: pointer;
}
.question p{
    font-size: 13px;
    background-color: rgb(212, 184, 160);
    max-height: 0;
    opacity: 0;
    line-height: 1.5;
    overflow: hidden;
    transition: all 0.6s ease;
}
.d-arrow{
    transition: transform 0.5s ease-in ;
    color: #fff;
}

/*add this class when click*/
.question p.show{
    max-height: 200px; 
    opacity: 1;
    padding:0px 15px 30px 15px;
}
.question button .d-arrow.rotate{
    transform: rotate(180deg);
}

@media (max-width:700){

}

.lastQ {
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #ce6a0d; 
}


/*TEAM*/

.Tbody {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f7;
    margin-top: 20px;   /* reduce gap under heading */
    padding-bottom: 20px; /* control gap before footer */
    min-height: auto;   /* remove forced full screen height */
}

.Twrapper .Ttitle{
    text-align: center;
}


.Twrapper .Tcard_Container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0;
    
}

.Tcard_Container .Tcard{
    position: relative;
    width: 250px;
    height: 350px;
    margin: 15px;
    overflow: hidden;
    box-shadow: 0 30px 30px -20px rgba(0, 0, 0, 1),
                inset 0 0 0 1000px rgba(67, 52, 109, .6);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Tcard .TimbBx, .TimbBx img{
    width: 100%;
    height: 100%;
}

.Tcard .Tcontent{
    position: absolute;
    bottom: -160px;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(15px);
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: bottom 0.5s;
    transition-delay: 0.65s;
}

.Tcard:hover .Tcontent{
    bottom: 0;
    transition-delay: 0s;
}

.Tcontent .TcontentBx h3{
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    margin: 20px 0 15px;
    line-height: 1.1em;
    transition: 0.5s;
    transition-delay: 0.6s;
    opacity: 0;
    transform: translateY(-20px);
}

.Tcard:hover .Tcontent .TcontentBx h3{
    opacity: 1;
    transform: translateY(0);
}

.Tcontent .TcontentBx h3 span{
    font-size: 12px;
    font-weight: 300;
    text-transform: initial;
}

.Tcontent .Tsci{
    position: relative;
    bottom: 10px;
    display: flex;
}

.Tcontent .Tsci li{
    list-style: none;
    margin: 0 10px;
    transform: translateY(40px);
    transition: 0.5s;
    opacity: 0;
    transition-delay: calc(0.2s * var(--i));
}

.Tcard:hover .Tcontent .Tsci li{
    transform: translateY(0);
    opacity: 1;
}

.Tcontent .Tsci li a{
    color: #fff;
    font-size: 24px;
}


/*DOWNLOAD*/
.Dbody {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
  color: #333;
}

.Dheader {
  text-align: center;
  padding: 40px;
  background: #101D42;
  color: #fff;
}
/*CARDS USED ONLY WHEN MORE THAN ONE CARD*/
.downloads-container { 
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 20px; padding: 40px;
   }

/*COMMENT OUT THIS STYLE IF MORE THAN ONE CARD*/
.download-card {
  max-width: 320px;
  margin: 0 auto;
}


.download-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.download-card h3 {
  margin-top: 0;
  color: #e6782f;
}

.download-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background: #e6782f;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.download-btn:hover {

  border: 2px solid #0075A2;
}
.Dheader h1 {
  display: inline-block; /* shrink width to text only */
  border-bottom: 2px solid #eb6b16;
  
}
.Dheader p{
    padding-top: 10px; /* add spacing if you like */
}

.download-card img {
  width: 70%;             /* reduce size (adjust %) */
  aspect-ratio: 3 / 4;    /* standing rectangle */
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 15px;    /* center + space below */
  display: block;
}
/* Services slider */
.services-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 4px auto;
}

.slider-container {
  position: relative;
}

/* Fade Transition */
.slide {
  opacity: 0;
  transform: scale(1.1);
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  position: relative;
}


.slide img {
  width: 100%;
  height: 65vh;
  object-fit: cover;
  border-radius: 10px;
}
/* Add overlay shading on slides 
.slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);  
  border-radius: 10px;
  z-index: 1;
} */

/* Make sure slide-text sits above the overlay */
.slide-text {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #fff;
  max-width: 500px;
  z-index: 2; /* higher than overlay */

  /* background container */
  background: rgba(0, 0, 0, 0.6); /* dark semi-transparent background */
  padding: 18px;
  border-radius: 10px;
  color: #fff;
  
}


/*--------------------*/
.slide-text h2 {
  font-size: 27px;
  margin-bottom: 6px;
  color: #fa6d0f;
}

.slide-text p {
  font-size: 15px;
  margin-bottom: 18px;
}

.slide-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #0075A2;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.slide-btn:hover {
  background: #c95f1c;
}


/* Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 12px;
  border-radius: 20%;
  cursor: pointer;
  font-size: 15px;
 
}

.prev:hover{
  background: rgba(216, 87, 13, 0.5);
}

.next:hover{
  background: rgba(216, 87, 13, 0.5);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dots */
.dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #e6782f;
}

.sliderHeading {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 0px;
    font-size: 2em;
    font-family: 'Poppins', sans-serif;
    color: #f07326;
}

.sliderHeading span {
    border-bottom: 2px solid #eb6b16;
   
    padding-bottom: 1px;
}

/*----------------SMALL SCREEN---------------*/
@media (max-width: 700px) {
  .slide-text {
    max-width: 80%;
    padding: 10px;
    bottom: 10%;
  }
 
 
  
  .slide-text h2 {
    font-size: 20px; /* smaller heading */
  }
  .slide-text p {
    font-size: 14px; /* smaller body text */
    line-height: 1.4;
  }
  .slide-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
}
/*NEWS*/
/* News Section */



.news {
  width: 80%;
  margin: auto;
  padding: 50px 0;
  text-align: center;
}

.Nrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  gap: 20px;
}
.news-card {
  flex-basis: 31%;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 5%;
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.news-card img {
  width: 100%;
  height: 200px;   /* fixed height */
  object-fit: cover;  /* ensures image fills area without distortion */
  border-radius: 10px;
  margin-bottom: 15px;
}


.news-card h3 {
  color: #e6782f;
  margin-bottom: 10px;
  font-size: 18px;
}

.news-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}



.news-card:hover {
  transform: translateY(-5px);
}


/*NEWS ARTICLE PAGE*/
/* News Article Page */
.news-article {
  width: 80%;
  margin: auto;
  padding: 50px 0;
}

.news-article h2 {
  color: #e6782f;
  margin-bottom: 20px;
  font-size: 28px;
}

.news-article .article-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}
/*NEWS - Article*/
.news-article p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}
 .news-article {
  width: 80%;
  margin: 60px auto;     /* pushes it down from header and up from footer */
  padding: 40px;         /* space inside */
  background: #fff;      /* clean background */
  border-left: 4px solid #e6782f; /* stylish left border */
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* subtle shadow */
}

.news-article h2 {
  
  font-size: 30px;
  margin-bottom: 20px;
  border-bottom: 2px solid #eee; /* subtle underline */
  padding-bottom: 10px;
}

.news-article p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/*NEWS - Button*/
.news-btn {
  
  border: none;
  
}

.news-btn:hover {
  background: #d46621;
}
.news-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 13px;
 background: #0075A2;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.news-btn:hover {
  background: #c65d1e;
}

/* Preloader styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff; /* page background */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e6782f; /* your MFSL theme color */
  animation: pulse 0.8s infinite;
}

.preloader-company {
  margin-top: 30px;
  text-align: center;
  font-size: 1.6rem;
  color: #e6782f; /* same as preloader color */
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.08);
  font-family: 'Poppins', sans-serif;
  position: relative;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

/* Vacancies Page */
.vacancies-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.page-heading {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #0075A2;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.job-card {
  background: #fff;
  border: 1px solid #eee;
  border-left: 5px solid #e6782f;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}


.details-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #e6782f;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  transition: background 0.2s ease;
}

.details-btn:hover {
  background: #c96526;
}

.no-jobs {
  padding: 15%;
  text-align: center;
  font-size: 18px;
  color: #888;
  grid-column: 1 / -1;
}

/* Job Details Page */
.job-details-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.job-details-container h2 {
  font-size: 26px;
  color: #e6782f;
  margin-bottom: 15px;
}


.job-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.job-details-container h4 {
  margin-top: 20px;
}

.job-details-container ul {
  list-style: disc;
  margin: 10px 0 20px 20px;
}


.job-summary {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}


.job-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  font-size: 14px;
  color: #444;
}

.job-meta li {
  margin: 5px 0;
  padding-left: 18px;
  position: relative;
}

.job-meta li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e6782f;
  font-size: 18px;
  line-height: 1;
}
.servicesBtn{
  padding-bottom: 5px;
}

/* LOGO */
.logoX {
  display: inline-block;
  padding: 10px;
  border: 1px solid #e6782f;
  border-radius: 3%; /* square corners */
  animation: neonGlow 4s ease-in-out infinite; /* slower */
}

.logoX img {
  display: block;
  width: 70px;   /* adjust size */
  height: auto;
  z-index: 1;
  position: relative;
}

/* Glow animation */
@keyframes neonGlow {
  0% {
    box-shadow: 0 0 3px #0075A2, 0 0 5px #6387eb, 0 0 2px #95aff7;
  }
  50% {
    box-shadow: 0 0 5px #0075A2, 0 0 20px #6387eb, 0 0 10px #95aff7;
  }
  
}
/*bottom footer info*/
.footer-bottom {
  text-align: center;
  padding: 5px 0;
  margin-top: 20px;
  font-size: 14px;
  color: #ccc;  /* adjust as needed */
  border-top: 1px solid rgba(255,255,255,0.1); /* optional subtle separator */
}
.footer-bottom p {
  margin: 0;
}
/*CEO INPUT*/
/* DROPDOWN BASE */
.nav-links ul li.dropdown {
  position: relative;
  
  
}

.dropdown-arrow {
  display: none; /* hidden on desktop */
  margin-left: 5px;
  cursor: pointer;
  font-size: 12px;
  color: white;
}

/* Dropdown menu hidden by default */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;   /* stays aligned under "About" */
  right: auto;
  background: #ffffff; /* same light blue */
  
  
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-align: left;
  border-radius: 6px;
}


.dropdown-menu li {
  display: block;
  padding: 10px;
}

.dropdown-menu li a{
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  display: block;
}



/* Desktop hover only */
@media (min-width: 701px) {
  .nav-links ul li.dropdown:hover > .dropdown-menu {
    display: block;
  }
}

/* SMALL DEVICE */
@media (max-width: 700px) {
  .dropdown-arrow {
    display: inline-block; /* show arrow only on small screen */
    color: #fff;
  }
  .dropdown-menu {
    position: static;
    background: none;
    box-shadow: none;
    
    text-align: left;
    
  }
  .dropdown-menu li a {
    color: #fff;
    
    
  }
  /* expand when active */
  .dropdown.active .dropdown-menu {
    display: block;
  }
  
} 
/* SUB HEADER DROP DOWN */
.sub-header .dropdown-menu li a{
 color: #4b4a4a;
 
}
.sub-header a{
  
  font-weight: 480;
}

@media (max-width: 700px) {
  .sub-header .dropdown-menu li a{
  color: #fff;
}
}
/* BOARD MEMBERS PAGE */
.Brow {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;                /* more breathing room */
  justify-content: center;
}
.board{
  margin-top: 6px;
  margin-bottom: 20px;
 
}
.board-card {
  flex: 1 1 calc(40% - 30px);  /* ~40% width each */
  max-width: calc(40% - 30px);
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;         /* center text since portrait style */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}


.board-card img {
  width: 100%;
  height: 270px; /* adjust number */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}


.board-card h3,
.board-card p {
  text-align: center;
}

.board-card:hover {
  transform: translateY(-5px);
}
/*Board small device*/

@media (max-width: 700px) {
  .Brow {
    flex-direction: column;
    align-items: center;
  }

  .board-card {
    flex: 1 1 100%;
    max-width: 100%;              /* take most of the width */
    margin-bottom: 20px;         /* spacing between cards */
    padding: 30px 10px 10px;     /* keep space for image */
  }

  .board-card img {
    height: 200px;
    
   
  }

  .board-card h3 {
    margin-top: 30px;            /* adjust text position */
    font-size: 16px;
  }

  .board-card p {
    font-size: 13px;
  }
}
/* ANIMATED BACKGROUND */
.Animcontainer {
    position: relative;       /* keep animation inside this section */
    width: 100%;
    min-height: 80vh;         /* flexible height instead of forcing full screen */
    overflow: hidden;
    margin-top: 8px;
}

.Animcontext {
    position: relative;       /* no absolute overlap */
    z-index: 2;               /* ensures text stays above circles */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 3%;
    text-align: center;
}

.Animcontext h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.Animcontext p {
    color: #ffffff;
    font-size: 1.2rem;
    max-width: 600px;
}

.Animarea {
    background: #4d88a0;
    width: 100%;
    height: 100%;
    position: absolute;   /* sits behind content */
    top: 0;
    left: 0;
    z-index: 1;
}

.Animcircles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.Animcircles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: #ffffff33;
    animation: floatUp 25s linear infinite;
    bottom: -150px;
}

/* Circle variations */
.Animcircles li:nth-child(1){ left: 25%; width: 80px; height: 80px; animation-delay: 0s; }
.Animcircles li:nth-child(2){ left: 10%; width: 20px; height: 20px; animation-delay: 2s; animation-duration: 12s; }
.Animcircles li:nth-child(3){ left: 70%; width: 20px; height: 20px; animation-delay: 4s; }
.Animcircles li:nth-child(4){ left: 40%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 18s; }
.Animcircles li:nth-child(5){ left: 65%; width: 20px; height: 20px; animation-delay: 0s; }
.Animcircles li:nth-child(6){ left: 75%; width: 110px; height: 110px; animation-delay: 3s; }
.Animcircles li:nth-child(7){ left: 35%; width: 150px; height: 150px; animation-delay: 7s; }
.Animcircles li:nth-child(8){ left: 50%; width: 25px; height: 25px; animation-delay: 15s; animation-duration: 45s; }
.Animcircles li:nth-child(9){ left: 20%; width: 15px; height: 15px; animation-delay: 2s; animation-duration: 35s; }
.Animcircles li:nth-child(10){ left: 85%; width: 150px; height: 150px; animation-delay: 0s; animation-duration: 11s; }

/* Animation keyframes */
@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

/*ANIMATION PAGE CONTENT*/
/* Content styling */
.Animcontext h1 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.Animcontext p {
  color: #fcfafa;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 650px;
}

/* Button group */
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  background: #f07a19;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #033f57;
  transform: translateY(-3px);
}

/* Outline button style */
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #4e54c8;
}
/*JOB APPLICATION*/
.form-container {
  display: flex;
  justify-content: center;  /* centers horizontally */
  align-items: center;      /* optional: center vertically if you give parent a height */
  padding: 30px 8px;
  
}

.form-container iframe {
  width: 100%;              /* full width on small screens */
  max-width: 900px;         /* limit width for readability */
  height: 80vh;             /* viewport-based height */
  border: 2px solid #66472e;/* optional: MFSL theme border */
  border-radius: 12px;      /* rounded corners */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* subtle shadow */
}

.backBTN{
  padding-left: 10px;
  padding-bottom: 4px;
  
}

/*CONTACT US ALERT MESSAGE*/
#form-message {
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
}

/*NEW PROPERTIES SLIDER */

/* Services slider */
.properties-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 40px auto;
}

.properties-container {
  position: relative;
}

/* Fade Transition */
.Pslide {
  opacity: 0;
  transform: scale(1.1);
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 1s ease-in-out;
}

.Pslide.active {
  opacity: 1;
  transform: scale(1);
  position: relative;
}

.Pslide img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  
}
/* Add overlay shading on slides 
.slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);  
  border-radius: 10px;
  z-index: 1;
} */

/* Make sure slide-text sits above the overlay */
.Pslide-text {
  position: absolute;
  bottom: 3%;
  left: 80%;
  margin-right: 10px;
  color: #fff;
  max-width: 500px;
  z-index: 2; /* higher than overlay */
 

  /* background container */
  background: rgba(0, 0, 0, 0.6); /* dark semi-transparent background */
  padding: 12px;
  border-radius: 1px;
  color: #fff;
  
}


/*--------------------*/
.Pslide-text h2 {
  font-size: 25px;
  margin-bottom: 5px;
  color: #f7a841;
}

.Pslide-text p {
  font-size: 14px;
  margin-bottom: 12px;
}

.Pslide-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #0075A2;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.Pslide-btn:hover {
  background: #c95f1c;
}


/* Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 12px;
  border-radius: 20%;
  cursor: pointer;
  font-size: 15px;
 
}

.prev:hover{
  background: rgba(216, 87, 13, 0.5);
}

.next:hover{
  background: rgba(216, 87, 13, 0.5);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dots */
.Pdots {
  text-align: center;
  margin-top: 15px;
}

.Pdot {
  height: 15px;
  width: 15px;
  margin: 0 4px;
  background-color: #bbb;
  display: inline-block;
  cursor: pointer;
}



.Pdot.active {
  background-color: #e6782f;
}


.propertyHeading {
  
    display: flex;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 0px;
    font-size: 2em;
    font-family: 'Poppins', sans-serif;
    color: #f07326;

}
.propertyHeading span {
    border-bottom: 2px solid #eb6b16;
   
    padding-bottom: 5px;
}

/*----------------SMALL SCREEN---------------*/
@media (max-width: 700px) {
  .Pslide-text {
    max-width: 80%;
    padding: 10px;
    bottom: 10%;
  }
 
 
  
  .Pslide-text h2 {
    font-size: 20px; /* smaller heading */
  }
  .Pslide-text p {
    font-size: 14px; /* smaller body text */
    line-height: 1.4;
  }
  .Pslide-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
}

.propertiz{
    text-align: center;
}

/*===========================*/
/* Slide container */
.Pslider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px; /* adjust height */
}

/* All slides */
.Pslide {
  position: absolute;
  top: 0;
  left: 100%; /* start off-screen (right side) */
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.8s ease-in-out;
}

/* Active slide moves into view */
.Pslide.active {
  left: 0;
  opacity: 1;
}

/* Previous slides go out to the left */
.Pslide:not(.active) {
  left: -100%;
  opacity: 0;
}

/*=============================*/
/*CLOSE PROPERTIES SLIDER*/

/*HOME HEADING*/
.home-Heading {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 0px;
    font-size: 2em;
    font-family: 'Poppins', sans-serif;
    color: #e6782f;
}

/*Video Count*/
.views-count {
  font-size: 13px;
  color: #2f679e;
  margin-bottom: 8px;
 
}
/*.home-Heading span {
    border-bottom: 3px solid #0075A2;
   
    padding-bottom: 1px;
}*/


