/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Background Styling */
/* .hai, .main { */
    /* width: 100%; */
    /* height: 100vh; */
/* } */

/* Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 0px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    height: 75px;
    background: white;
}

.logo {
    color: #fada1f;
    font-size: 35px;
    font-weight: bold;
}
/* .logo img {
    height:7.5vh;
    width: auto;
} */

.menu {
    display: flex;
    justify-content: center;
}

.menu ul {
    display: flex;
    list-style: none;
    padding: 0;
}

.menu ul li {
    margin: 0 20px;
}

.menu ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
    padding: 10px 0;
}

.menu ul li a:hover {
    color: #fada1f;
}

/* Search Bar */
.search {
    display: flex;
    align-items: center;
    gap: 5px;
}

.srch {
    width: 200px;
    height: 40px;
    border: 2px solid white;
    padding: 5px;
    border-right: none;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    color: black;
}

.btn {
    width: 150px;
    height: 40px;
    background: #fada1f;
    border: 2px solid white;
    color: black;
    font-size: 19px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}
#text{
    font-weight: bold;
    align-items: center;
}

.btn:hover {
    background: black;
    color: #fada1f;
}

/* Main Content */
.content {
    width: 90%;
    margin: auto;
    color: black;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100vh;
    padding-left: 5%;
}

.content h1 {
    font-size: 50px;
    color: #fada1f;
    margin-bottom: 20px;
    justify-content: center;
    font-weight: bold;
   
}

.par {
    font-size: 20px;
    line-height: 1.6;  
    justify-content: center;
    font-weight: 500;
}

/* Buttons */
.cn, .adminbtn {
    width: 100px;
    height: 40px;
    background: #fada1f;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    /* margin-top: 20px; */
}
.cn{
    margin-top: 50px;
}

.cn:hover, .adminbtn:hover {
    background: black;
    color: #fada1f;
}

.cn a, .adminbtn a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.cn:hover a, .adminbtn:hover a {
    color: #fada1f;
}

/* Form Styling */
.form {
    width: 300px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    color: white;
    text-align: center;
    position: absolute;
    top: 20%;
    right: 10%;
    height: 75vh;
}

.form h2 {
    background: white;
    color: #fada1f;
    padding: 10px;
    border-radius: 10px;
}

.form input {
    width: 100%;
    height: 40px;
    margin: 15px 0;
    padding: 10px;
    background: transparent;
    border: 1px solid #fada1f;
    color: white;
    border-radius: 5px;
}

.form input::placeholder {
    color: #ddd;
}

.btnn {
    /* width: 80%; */
    height: 40px;
    background: #fada1f;
    border: none;
    color: black;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.btnn:hover {
    background: black;
    color: #fada1f;
}

/* Social Icons */
.icon {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.icon a {
    text-decoration: none;
    color: white;
    font-size: 1.302vw;
    margin: 0 10px;
    transition: 0.3s;
}

.icon a:hover {
    color: #fada1f;
}

/* About Section */
.sectionLayout {
    padding: 30px 15px 30px 15px;
    font-family: 'Roboto', sans-serif;
}

.ctn-services {
    width: 95%;
    margin: auto;
}

.servicesTitle h3{
    text-align: center;
    margin-bottom: 40px;
    font-family: Arial, sans-serif;
    font-size: 3vw;
}

.servicesGrid {
    display: flex;
    flex-direction: row;
    gap: 1.354vw;
    justify-content: center;
}

.svCard {
    width: 80% !important;
    margin: 0.26vw 1.563vw !important;
    display: flex;
    flex-direction: column;
    padding: 1.042vw 1.563vw;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 1.042vw;
    box-shadow: 0 5px 30px rgb(19 8 73 / 13%);
    
    color: #000;
}

.SrcardTitle {
    font-family: 'Arial', sans-serif;
    font-size: 1.4vw; /* desktop */
}

.SrcInfo, .SrcMore {
    font-family: 'Arial', sans-serif;
    font-size: 1.1vw; /* desktop */
}

.SrcMore {
    text-decoration: none;
    color: #007bff;
    margin-top: auto;
}

/* Responsive for small screens */
@media (max-width: 768px) {
    .servicesGrid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
    }
    /* Mobile font sizes for About Us cards */
    .SrcardTitle { font-size: 6vw; }
    .SrcInfo, .SrcMore { font-size: 4vw; }
}

@media (max-width: 910px) {
    .ctn-services {
        width: 100%;
        margin: auto;
    }
    
    .svCard {
        width: 100%;
        padding: 20px 15px;
        margin-bottom: 1.5rem;
    }   

    .sectionLayout {
        padding: 40px 15px;
    }
}

/* About us section end */


/* span{
    font-weight: bold;
    font-size: 65px;
} */
/* New Footer */

 
footer h2{
    font-size:1.5rem;
    font-family: 'Poppins';
}

footer h2, p,li,span{
    font-family: 'Poppins';
}

footer{
    font-family: 'Poppins';
    position: relative;
    width:100%;
    height: auto;
    /* margin: 50px 100px;
    margin-left: 50px; */
    background-color: #111;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 15px;
}

footer .container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 50px 10px;
}

footer .container .sec{
    margin-right: 30px;
}

footer .container .sec.aboutus{
    width: 40%;
}

footer .container  h2{
    position: relative;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
}

footer .container h2:before{
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width:50px;
    height: 3px;
    background:  #fada1f;
}

footer p{
    color: #999;
}

@media(max-width:550px){
   .info .fa-solid, .fas{
        /* font-weight: 00; */
        font-size: 25px;
    }
    .ctn_phn_eml p{
        font-size:1rem;
    }
}


.sci
{
    margin-top: 20px;
    display: flex;
}
.sci li{
    list-style: none;

}

.sci li a{
    display: inline-block;
    width:40px;
    height: 40px;
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 4px;
}

.sci li a:hover{
    background-color: #fada1f;
}

.sci li a .fa{
    color: #fff;
    font-size: 20px;
    
}

/* Quick Links */

.quickLinks{
    position: relative;
    width:25%;
}

.quickLinks ul li{
    list-style: none;
}

.quickLinks ul li a{
    color: #999;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
    /* margin-left: 10px; */
    font-size:1rem;
}
.quickLinks ul li a:hover{
        color: #fff;
}

/* Contact Section */

.contact{
    width: calc(35% - 60px);
    margin-right: 0 !important;
}

.contact .info{
    position: relative;
}

.contact .info li{
    display: flex;
    /* flex-direction: column; */
    margin-bottom: 1rem;
}

.contact .info li .contact_address{
    line-height: 24px;
    font-size:16px;
}
.contact .info .contact_address{
    line-height: 34px;
}

.contact .info li span:nth-child(1){
    color:#fff;
    /* font-size:20px; */
    font-size: 32px;
    margin-right: 16px;
}
.contact .info li span {
    color: #999;
}

.contact .info li a{
    color: #999;
    text-decoration: none;
    
}

.contact .info .fa-map{
    /* padding: 4px; */
    padding-top: 8px;
}

.contact .info .fa-envelope{
    /* padding: 4px; */
    padding-top: 8px;
}
.contact .info li a:hover{
    color: #fff;
}

.copyrightText{
    width:100%;
    background-color: #181818;
    padding: 8px 100px ;
    text-align: center;
    
}
.copyrightText p{
    color: rgba(255, 255, 255, 0.675);
}

/* New Footer End */

/* --- Edit Pages Card Layout --- */
.edit-card {
    width: 100%;
    max-width: 800px;
    margin: 40px auto 0 auto;
    padding: 30px 30px 20px 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    position: relative;
}

.edit-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #111;
}

.edit-label {
    display: block;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 6px;
    color: #222;
}

.edit-input, .edit-select, .edit-textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background: #fafafa;
    transition: border 0.2s;
}
.edit-input:focus, .edit-select:focus, .edit-textarea:focus {
    border: 1.5px solid #fada1f;
    outline: none;
    background: #fffbe6;
}

.edit-btn {
    width: 100%;
    padding: 12px;
    background: #fada1f;
    color: #111;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s, color 0.2s;
}
.edit-btn:hover {
    background: #111;
    color: #fada1f;
}

.edit-nav {
    margin-top: 30px;
    text-align: center;
}
.edit-nav a {
    display: inline-block;
    padding: 10px 22px;
    margin: 5px 8px;
    background: #fada1f;
    color: #111;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.2s, color 0.2s;
}
.edit-nav a:hover {
    background: #111;
    color: #fada1f;
}

@media (max-width: 600px) {
    .edit-card {
        padding: 16px 4vw;
        max-width: 98vw;
    }
    .edit-title {
        font-size: 1.3rem;
    }
}
