@import url('https://fonts.googleapis.com/css2?family=Norican&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

.row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 10px 0;
}

.align-tight {
    display: flex;
    align-items: center;
    text-align: left;

}

.align-tight .logo {
    max-width: 45%;
    /* Reduce width to make space for text */
    margin-right: 100%;
    /* Adjust this to control the logo’s position */
}

.align-tight .text {
    margin-left: -150px;
    /* Gap between the logo and text */
}

.head {
    font-size: 25px;
    color: red;
    font-weight: bold;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    line-height: -2;
    /* Adjust line-height for tighter spacing */
}


.text1 {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #700909;
    font-weight: bold;
    line-height: 1;
    /* Adjust line-height for tighter spacing */
    margin-top: -19px;
    /* Use negative margin to bring it closer to .head */
}

.text2 {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #0b47b2;
    font-weight: bold;
    margin-top: 1px;

}

.para {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #430e64;
    font-weight: bold;
}

.info-text {
    margin-top: 20px;
    color: black;
    display: block;
    font-weight: 700;
    margin-right: 50px;

}

.info-mail {
    margin-top: 20px;
    color: black;
    display: block;
    font-weight: 700;
    margin-left: 50px;

}

.dropdown-item a{
    color: black;
}





.navbar {
    
    background: #00a0ff;
    min-height: 80px;
    
}

.nav-link {
    margin-right: 10px;
    margin-left: 10px;
    color: white;
    text-transform: uppercase;
}

.nav-link:hover {
    color: black;
}

.dropdown-menu .dropdown-item,
.dropdown-menu .dropdown-item i {
    color: black;
    font-family: sans-serif;
    font-size: 15px;
    font-style: normal;
}


.top{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    background: #c6ab80;
}

.topna a {
    padding: 0px 10px;
    border-right: 1px solid white;
    color: white;
}

a:hover {
    color: black;
}

.apply-btn {
    font-size: 14px;
    font-weight: 500;
}

i {
    position: relative;
    border-radius: 2px;
    text-align: center;
    left: 0;
    line-height: 40px;
    color: #00a0ff;
    font-size: 25px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-weight: 700;
}

.bus_sch {
    box-sizing: border-box;
    background: blue;
    color: white;
    font-size: 20px;
    padding: 5px;
    font-family: sans-serif;
}

.main1{
    background-image: url(images/3.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center top;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100vh; 
}
.card-body {
    height: 400px;
    /* Set desired height for the card body */
    overflow: hidden;
    background: #430e64;

    
}

.card-body img {
    width: 100%;
    /* Ensure image takes full width */
    height: 100%;
    /* Ensure image takes full height */
    object-fit: cover;
    /* Maintain aspect ratio and cover the area */
}

.card{
    background: #430e64;
    color: white;
    border: 1px solid #430e64;
}

.card:hover{
-webkit-box-shadow: -2px -1px 25px -4px rgba(0,0,0,0.75);
-moz-box-shadow: -2px -1px 25px -4px rgba(0,0,0,0.75);
box-shadow: -2px -1px 25px -4px rgba(0,0,0,0.75);
transition: 0.5s;
}

.main2{
    background: linear-gradient(t0 right, #00a0ff, #00a0ff );
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}


.bg-5{
    background-image: url(images/bg2.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center top;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 70vh; 
    
}

/*
.sec-title {
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 2px;
}
*/
.heading-wrapper {
    margin: 0;
    padding: 0;
    margin-top: 70px;
}



.sec-title {
    display: flex;
    align-items: center; /* Centers vertically */
    justify-content: center; /* Centers horizontally */
    
}


.sec-title h2 {
    font-size: 2em;
    text-transform: uppercase;
    color: red;
   /* Reduces space under the "Results" text */
    margin-top: -100px;
    font-family: sans-serif;
}

.main2 {
    margin-top: -110px; /* Reduces space above the rotating images */
}



.content{
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    animation: rotate 30s linear infinite;
    transform: translateY(200px); /* Move the circle up by 50px */
   
}

@keyframes rotate {
    0%{
        transform: perspective(1000px) rotateY(0deg);
    }

    100%{
        transform: perspective(1000px) rotateY(360deg);
    }

}

/* Shadow and border applied to the containing <span> */
.content span{
    position:absolute;
    width: 280px;
    height: 175px;
    left: 0;
    top: 0;
    transform-style: preserve-3d;
    transform-origin: center;
    transform: rotateY(calc(var(--i) * 45deg)) translateZ(350px);
    box-shadow: 0px 10px 20px blue; /* Shadow added here */
    border: 5px solid blue; /* Border added here */
    border-radius: 15px; /* Rounded corners */

}


/* Image styling to fit within the <span> */
content span img{
    position:absolute;
    width: 280px;
    height: 175px;
    left: 0;
    top: 0;
    object-fit: cover;
    border-radius: 15px;
    transition: 2s;
    transform: translateY(-50px) scale(1.2);
    cursor: pointer;
    

}

footer {
    background-color: #c6ab80; /* Change this color as desired */
    color: whitesmoke; /* Optional: Set text color for readability */
    padding: 10px; /* Optional: Add padding for spacing */
}

.foot-head{
    font-family: 'Lucida Grande';
}

.foot-para{
    text-align: justify;
}

.Quick-widget {
    list-style-type: none; /* Removes bullets */
    padding: 0; /* Removes default padding */
}

.Quick-widget li {
    margin-bottom: 10px;
}

.Quick-widget i {
    color: blanchedalmond;
}

.Quick-widget a {
    color: white; /* Adjust color */
    text-decoration: none;
}

.Quick-widget a:hover {
    color: black; /* Optional: Change color on hover */
}

.footer-title{
    margin-bottom: 28px;
    padding-bottom: 5px;
    color: white;
    font-size: 20px;
    position: relative;
    font-weight: 600;
}

.bread-crum
{
min-height: 250px;
background-image: url(images/about_bg.png);

color: black;

}

.about-header{
    margin-left: 30%;
    text-decoration: underline black;
}

.chair-logo{
    margin-left: -10%;
}

.main3{
    
    background-image: url(images/3.jpg);
    font-family: sans-serif;
    color: white;
    
}

.flipcard-body{
height: 200px;
/* Set desired height for the card body */
overflow: hidden;
background: #430e64;
border: 2px solid black;


}

.flipcard-body img {
width: 100%;
/* Ensure image takes full width */
height: 100%;
/* Ensure image takes full height */
object-fit: cover;
/* Maintain aspect ratio and cover the area */
}

.flipcard{
background: #430e64;
color: white;
}

.flipcard:hover{
-webkit-box-shadow: -2px -1px 25px -4px rgba(0,0,0,0.75);
-moz-box-shadow: -2px -1px 25px -4px rgba(0,0,0,0.75);
box-shadow: -2px -1px 25px -4px rgba(0,0,0,0.75);
transition: 0.5s;
}

.main4 .row {
    display: flex;
    align-items: stretch; /* Makes all child elements (columns) the same height */
}

.main4 .col-md-6 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main4 .border-end {
    border-right: 1px solid #ccc; /* Creates a dividing line between columns */
}

.main4 .border {
    width: 100%; /* Ensures form width adapts appropriately */
    max-width: 400px; /* Limits maximum width of the form for better layout */
}

.chead {
    font-size: 1.5rem; /* Adjust size as needed */
    font-weight: bold;
    margin-bottom: 20px; /* Adds spacing below the heading */
}

.col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.w-75 {
    width: 100%;
    max-width: 400px; /* Restrict form width for a clean look */
}

.border {
    padding: 20px; /* Ensures consistent spacing inside the form container */
}


.flipcards-body{
    height: 200px;
    /* Set desired height for the card body */
    overflow: hidden;
    background: #430e64;
    border: 2px solid black;
    
    
}
    
.flipcards-body img {
    width: 100%;
    /* Ensure image takes full width */
    height: 100%;
    /* Ensure image takes full height */
    object-fit: cover;
    /* Maintain aspect ratio and cover the area */
}
    
.flipcards{
    background: #430e64;
    color: white;
}
    
.flipcards:hover{
    -webkit-box-shadow: -2px -1px 25px -4px rgba(0,0,0,0.75);
    -moz-box-shadow: -2px -1px 25px -4px rgba(0,0,0,0.75);
    box-shadow: -2px -1px 25px -4px rgba(0,0,0,0.75);
    transition: 0.5s;
}

.gallery-img{
    width:100%;
    height:280px;
    object-fit:cover;
    border:none;
    border-radius:0;
}

.gallery-img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:12px;
    transition:.4s;
}

.gallery-img:hover{
    transform:scale(1.05);
}



