
body{
    font-family: 'Segoe UI', sans-serif;
}

/* Navbar */
.navbar{
    box-shadow: 0 2px 10px rgba(156, 151, 151, 0.08);
	
}

.card:hover {
    transform: translateY(-8px);
    transition: 0.3s ease;
    box-shadow: 0 15px 30px rgba(204, 187, 187, 0.1);
}

/* Hero */
.hero {
    font-family: 'Cinzel', serif;

}
.hero{
    /*background: linear-gradient(rgba(165, 157, 157, 0.63), rgba(201, 184, 184, 0.356)),
    url('img/35.jpg') center/cover no-repeat;*/
    background: linear-gradient(rgba(165, 157, 157, 0.63), rgba(201, 184, 184, 0.356)),
    url('img/photo/1.jpg') center/cover no-repeat;
    height: 90vh;
	width: 100%;
    display:flex;
    align-items:center;
    color:#000000;
}

.hero h1{
    font-size: 4rem;
    font-weight: 1000;
    
}
/* Custom Navbar */
.custom-navbar {
    background-color: #f7efef; /* Professional School Blue */
}

/* Navbar Links */
.custom-navbar .nav-link {
    color: #080808 !important;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Hover Effect */
.custom-navbar .nav-link:hover {
    color: #f50f0f !important;
}

/* Active Link */
.custom-navbar .nav-link.active {
    color: #f50f0f !important;
}

/* Logo spacing fix */


.navbar-brand {
    margin-left: -11px;   /* move logo left */
}

.navbar-brand img {
    background-color: #f7efef;
   
    height: 55px;
    width: 11rem;
}

@media(max-width:768px){
    .hero{
        height:60vh;
        text-align:center;
    }
    .hero h1{
        font-size:3rem;
        font-weight: 500;
    }
}/* NOTICE RTL DER */
.notice-marquee {
    display: flex;
    align-items: center;
    background: #04234d;
    overflow: hidden;
    height: 60px;
    color: #fff;
}

.notice-label {
    background: #9e3640;
    padding: 0 25px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 1000;
    letter-spacing: 1px;
    font-size: 16px;
}

.notice-track {
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
}

.notice-content {
    display: inline-block;
    padding-left: 100%;
    animation: scrollRTL 30s linear infinite;
}

.notice-content a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin: 0 20px;
    transition: 0.3s;
}

.notice-content a:hover {
    color: #ffc107;
}

.separator {
    color: #ddd;
}

/* RTL Animation */
@keyframes scrollRTL {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pause on hover */
.notice-marquee:hover .notice-content {
    animation-play-state: paused;
}

/* Mobile */
@media(max-width:768px){
    .notice-label{
        padding: 0 15px;
        font-size: 14px;
    }
}

/* Mobile Fix */
@media (max-width:768px) {
    .notice-box {
        flex-direction: column;
        text-align: center;
    }
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    transition: transform 0.6s ease;
}

/* Zoom on Hover */
.gallery-item:hover img {
    transform: scale(1.08);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
    padding: 12px;
    transform: translateY(100%);
    transition: 0.4s ease;
}

/* Show Overlay on Hover */
.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Card Base */
.feature-card {
    border: none;
    border-radius: 15px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}

/* Delay animation for each card */
.col-md-4:nth-child(1) .feature-card {
    animation-delay: 0.2s;
}
.col-md-4:nth-child(2) .feature-card {
    animation-delay: 0.4s;
}
.col-md-4:nth-child(3) .feature-card {
    animation-delay: 0.6s;
}

/* Hover Effect */
.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Image Smooth Zoom */
.feature-card img {
    transition: 0.5s;
}
.feature-card:hover img {
    transform: scale(1.05);
}

/* Links Styling */
.feature-links a {
    display: block;
    text-decoration: none;
    color: #333;
    margin: 6px 0;
    transition: 0.3s;
}
.feature-links a:hover {
    color: #004aad;
    transform: translateX(5px);
}

/* Fade Up Animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Section spacing */
.section-padding{
    padding:80px 0;
    
}

/* Footer */
.footer-section {
    background: #111;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffc107;
    padding-left: 5px;
}

/* Social Icons Center */
.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin: 0 8px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social:hover {
    background: #ffc107;
    color: #000;
    transform: translateY(-4px);
}

/* Floating Buttons */
.floating-call,
.floating-whatsapp {
    position: fixed;
    bottom: 60px;
    z-index: 1000;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(121, 203, 228, 0.397);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(50, 127, 243, 0.192);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(50, 127, 243, 0);
  }
}
.floating-call {
    left: 20px;
}

.floating-whatsapp {
    right: 20px;
}

.floating-call a,
.floating-whatsapp a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: 0.3s;
    animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
}

.floating-call a {
    background: #007bff;
}

.floating-whatsapp a {
    background: #25D366;
}

.floating-call a:hover,
.floating-whatsapp a:hover {
    transform: scale(1.1);
}

/* Ranking Section */
.ranking-section {
    background: #0b2c4d;
}

/* Card Styling */
.rank-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Number */
.rank-card h2 {
    font-size: 42px;
    font-weight: 700;
    color: #17a2b8;
    margin-bottom: 10px;
}

/* Text */
.rank-card p {
    font-weight: 500;
    margin: 0;
}

/* Hover Effect */
.rank-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .rank-card h2 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .rank-card {
        padding: 20px 15px;
    }

    .rank-card h2 {
        font-size: 28px;
    }

    .rank-card p {
        font-size: 14px;
    }
}


/***contact us ******/
.page-title {
    color: #6a1dce;   /* Change this to any color */
}

.carousel-item img{
width: 100% !important ;
height: 500px;
object-fit:cover;
}