/* Navbar */
        .navbar {
            background: #0c4e5a;
            padding: 15px 0;
            position: fixed;
            width:100%;
            z-index:5;
        }

        .navbar-brand {
            font-weight: 600;
            font-size: 22px;
        }

        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            color: #fff;
        }

        .nav-item:hover{
            color:#000;
        }
/* --- FOOTER CSS START --- */
.footer-section {
    background-color: #0c4e5a; 
    padding: 80px 0 30px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.footer-brand {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
}

.footer-about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #cbd5d6;
    margin-bottom: 25px;
    padding-right: 30px; /* Desktop par thoda gap rakhega */
}

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
}

/* Links Styling */
.footer-links-list, .footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li, .footer-contact-list li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #cbd5d6;
}

.footer-links-list li a {
    color: #cbd5d6;
    text-decoration: none;
    transition: 0.3s all;
}

.footer-links-list li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
}

.social-link:hover {
    background: #ffffff;
    color: #0c4e5a;
    transform: translateY(-5px);
}

/* Divider & Copyright */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 50px 0 25px;
}

.footer-copyright {
    font-size: 14px;
    color: #8ea7a9;
    margin: 0;
}

/* ===========================================
   RESPONSIVE QUERIES
   =========================================== */

@media (max-width: 991px) {
    .footer-section { padding: 60px 0 30px; }
    .footer-about-text { padding-right: 0; }
}

@media (max-width: 767px) {
    .footer-col { text-align: center; margin-bottom: 20px; }
    .footer-social-icons { justify-content: center; }
    
    /* Links align center on mobile for cleaner look */
    .footer-links-list li, .footer-contact-list li {
        text-align: center;
    }
    
    .col-6 {
        width: 100%; /* Mobile par full width */
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .footer-brand { font-size: 24px; }
    .footer-heading { margin-top: 10px; margin-bottom: 15px; }
    .footer-section { padding: 50px 0 20px; }
}
/* --- FOOTER CSS END --- */

/* --- ABOUT SECTION CSS --- */
.about-rpg-section {
    padding: 60px 0; /* Mobile default padding */
    background-color: #ffffff;
    overflow: hidden;
}

/* Image Container */
.about-img-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-responsive-img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Title Styling */
.about-title {
    font-size: 28px; /* Mobile font size */
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 20px;
}

/* Paragraph Styling */
.about-para {
    font-size: 15px; /* Perfect readability for mobile */
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 15px;
    text-align: justify; /* Android/iPhone par clean dikhega */
}
.about-list{
    color: #4a4a4a;

}

/* Custom Navy Button */
.btn-rpg-navy {
    background-color: #0a2540;
    color: #ffffff !important;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
    border: 2px solid #0a2540;
}

.btn-rpg-navy:hover {
    background-color: transparent;
    color: #0a2540 !important;
    transform: scale(1.05);
}

/* ===========================================
   MEDIA QUERIES FOR PERFECTION
   =========================================== */

/* Small Mobile Devices (320px to 480px) */
@media (max-width: 480px) {
    .about-rpg-section {
        padding: 40px 10px; /* Thoda side gap chote mobiles ke liye */
    }
    .about-title {
        font-size: 24px; /* Chota heading */
    }
    .about-para {
        font-size: 14px; /* Touch-friendly readability */
        text-align: left; /* Small mobile par center text zyada clean lagta hai */
    }
    .about-list{
        text-align: left;
    }
    .btn-rpg-navy {
        width: 100%; /* Mobile par full width button for easy clicking */
        text-align: center;
    }
    .about-responsive-img {
        border-radius: 12px; /* Small mobile pe kam radius */
    }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
    .about-text-content {
        padding: 0 15px;
    }
}

/* Desktop View (992px and up) */
@media (min-width: 992px) {
    .about-rpg-section {
        padding: 50px 0;
    }
    .about-title {
        font-size: 40px;
    }
    .about-para {
        font-size: 16px;
        text-align: left;
    }
}

/* --- SERVICES SECTION CSS --- */
.services-rpg-section {
    padding: 50px 0 ;
    background-color: #f8f9fa; /* Light grey background jaisa image mein hai */
}

.services-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 15px;
}

.services-subtitle {
    color: #6c757d;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Card Styling */
.service-card-box {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft Shadow */
    transition: all 0.3s ease;
    height: 100%; /* All cards equal height */
    border: 1px solid transparent;
}

.service-card-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #0a2540;
}

/* Icon Circle Styling */
.icon-circle {
    width: 75px;
    height: 75px;
    background-color: #0a2540; /* Dark Navy Blue icon bg */
    color: #ffffff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: 0.3s;
}

.service-card-box h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-card-box p {
    font-size: 14.5px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===========================================
   RESPONSIVE OPTIMIZATION
   =========================================== */

/* Tablet View (Max 991px) */
@media (max-width: 991px) {
    .services-rpg-section {
        padding: 40px 0 60px 0;
    }
    .service-card-box {
        padding: 30px 20px;
    }
}

/* Small Mobile View (Max 480px - PERFECT FOR 320px) */
@media (max-width: 480px) {
    .services-rpg-section {
        padding: 40px 10px;
    }
    .services-main-title {
        font-size: 26px;
    }
    .services-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    .service-card-box {
        padding: 25px 15px; /* Kam padding chote mobiles ke liye */
    }
    .icon-circle {
        width: 65px;
        height: 65px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    .service-card-box h4 {
        font-size: 18px;
    }
    .service-card-box p {
        font-size: 13.5px;
    }
}

/* --- WHY CHOOSE US SECTION --- */
.why-rpg-section {
    padding: 50px 0;
    background-color: #ffffff; /* Clean white background */
}

.why-title {
    font-size: 32px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 10px;
}

.why-subtitle {
    font-size: 16px;
    color: #6c757d;
}

/* Card Styling */
.why-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05); /* Soft shadow as per image */
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f1f1f1;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Icon Styling */
.why-icon {
    font-size: 40px;
    color: #0a2540; /* Navy Blue Icon */
    margin-bottom: 20px;
}

.why-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.why-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===========================================
   RESPONSIVE DESIGN (FOR SMALL MOBILES)
   =========================================== */

/* Tablet (Max 991px) */
@media (max-width: 991px) {
    .why-rpg-section {
        padding: 60px 0;
    }
}

/* Small Mobile (Max 480px) - Optimized for 320px */
@media (max-width: 480px) {
    .why-rpg-section {
        padding: 40px 10px; /* Side padding for tiny screens */
    }
    
    .why-title {
        font-size: 26px; /* Smaller heading for mobile */
    }
    
    .why-subtitle {
        font-size: 14px;
    }

    .why-card {
        padding: 30px 20px; /* Reduced padding inside cards */
    }

    .why-icon {
        font-size: 35px;
        margin-bottom: 15px;
    }

    .why-card h5 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 14px;
    }
}

/* --- OUR AGENTS SECTION --- */
.agents-rpg-section {
    padding: 50px 0 90px;
    background-color: #f8f9fa;
}

.agents-title {
    font-size: 32px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 15px;
}

.agents-subtitle {
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    font-size: 15px;
}

/* Agent Card Base */
.agent-card {
    background: #ffffff;
    padding: 70px 25px 35px; /* Top padding is high for overlapping image */
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    height: 100%;
    margin-top: 50px; /* Space for the floating image on mobile stacking */
}

.agent-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Floating Agent Image */
.agent-img-holder {
    position: absolute;
    top: -50px; /* Moves image half-way outside the card */
    left: 50%;
    transform: translateX(-50%);
}

.agent-img-holder img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 6px solid #f8f9fa; /* Match section background */
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Agent Details */
.agent-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 5px;
}

.agent-role {
    display: block;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
}

.agent-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Social Icons in Dark Circles */
.agent-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.agent-social a {
    width: 38px;
    height: 38px;
    background-color: #0a2540; /* Navy bg as per image */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.agent-social a:hover {
    background-color: #007bff;
    transform: scale(1.1);
}

/* ===========================================
   RESPONSIVE (PERFECT FOR SMALL MOBILE)
   =========================================== */

/* Tablet (Max 991px) */
@media (max-width: 991px) {
    .agents-rpg-section {
        padding: 60px 0;
    }
}

/* Small Mobile (Max 480px - Optimized for 320px) */
@media (max-width: 480px) {
    .agents-title {
        font-size: 26px;
    }
    
    .agents-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .agent-card {
        padding: 60px 15px 30px; /* Reduced side padding */
    }

    .agent-img-holder img {
        width: 85px; /* Slightly smaller image for small screen */
        height: 85px;
        top: 5px; /* Adjusting relative position */
    }

    .agent-card h5 {
        font-size: 18px;
    }
    
    .agent-card p {
        font-size: 13px;
    }
}

/* --- MISSION & VISION SECTION --- */
.mission-vision-rpg {
    padding: 40px 0 10px 0;
    background-color: #fcfcfc; /* Light subtle background */
}

/* Card Styling */
.mv-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); /* Soft shadow as per image */
    transition: all 0.3s ease;
    height: 100%; /* Ensures both cards are same height */
    border: 1px solid rgba(0,0,0,0.02);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Title Styling */
.mv-title {
    font-size: 28px;
    font-weight: 600;
    color: #0a2540; /* RPG Navy Blue */
    margin-bottom: 20px;
}

/* Text Styling */
.mv-text {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===========================================
   RESPONSIVE (FOR SMALL MOBILE 320px)
   =========================================== */

/* Tablet (Max 991px) */
@media (max-width: 991px) {
    .mission-vision-rpg {
        padding: 60px 0;
    }
}

/* Small Mobile (Max 480px - Optimized for 320px) */
@media (max-width: 480px) {
    .mission-vision-rpg {
        padding: 40px 10px;
    }
    
    .mv-card {
        padding: 30px 20px; /* Mobile par thoda kam padding taaki text space mile */
        text-align: center; /* Small mobile par center text zyada clean lagta hai */
    }

    .mv-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .mv-text {
        font-size: 14.5px;
    }
}

/* --- PROPERTY INFO SECTION --- */
.property-info-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.info-item-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%; /* Saare cards ek barabar height ke dikhenge */
    transition: 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.info-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Icon Box */
.info-icon-box {
    font-size: 50px;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: block;
}

.info-icon-box i {
    display: inline-block;
}

/* Typography */
.info-item-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0a2540; /* Navy Color */
    margin-bottom: 15px;
}

.info-item-card p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ===========================================
   FULL RESPONSIVENESS (MOBILE-FIRST)
   =========================================== */

/* Tablets (Max 991px) - 2 cards in one row */
@media (max-width: 991px) {
    .property-info-section {
        padding: 60px 0;
    }
}

/* Mobile Devices (Max 767px) - 1 card per row */
@media (max-width: 767px) {
    .info-item-card {
        padding: 30px 20px; /* Thoda kam padding mobile ke liye */
    }
    .info-item-card p {
        font-size: 14px; /* Mobile readability improvement */
    }
}

/* Small Mobile View (Max 480px - Optimized for 320px) */
@media (max-width: 480px) {
    .property-info-section {
        padding: 40px 10px;
    }
    .info-icon-box {
        font-size: 40px; /* Chota icon for small screens */
        margin-bottom: 15px;
    }
    .info-item-card h4 {
        font-size: 18px;
    }
    .info-item-card p {
        line-height: 1.6;
    }
}

/* --- STATS COUNTER SECTION --- */
.stats-counter-section {
    padding: 70px 0;
    background-color: #e9eef1; /* Light bluish-grey jaisa image mein hai */
    color: #064d57; /* Dark Teal Color */
}

.stat-box {
    padding: 10px;
}

.stat-number {
    font-size: 42px; /* Desktop Size */
    font-weight: 800;
    margin-bottom: 5px;
    display: block;
}

.stat-text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    color: #0c4e5a;
}

/* ===========================================
   FULL RESPONSIVENESS (MOBILE-FIRST)
   =========================================== */

/* Tablets & Small Desktops (Max 991px) */
@media (max-width: 991px) {
    .stat-number {
        font-size: 34px;
    }
    .stat-text {
        font-size: 15px;
    }
}

/* Small Mobile View (Max 480px - Optimized for 320px) */
@media (max-width: 480px) {
    .stats-counter-section {
        padding: 40px 0;
    }
    
    /* 2 columns logic for tiny screens */
    .col-6 {
        padding: 5px;
    }

    .stat-number {
        font-size: 28px; /* Chota font taaki screen se bahar na jaye */
        font-weight: 700;
    }

    .stat-text {
        font-size: 13px; /* Smaller labels for small mobiles */
        line-height: 1.2;
    }
}

/* --- CONTACT SECTION CSS --- */
.contact-page-section {
    padding: 120px 0 60px 0;
    background-color: #f8fcfd; /* Light subtle bg */
    font-family: 'Poppins', sans-serif;
}

/* Info Column Styles */
.contact-info-wrapper {
    padding-right: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.contact-icon {
    min-width: 55px;
    height: 55px;
    background-color: #0a2540; /* Dark Navy as per image */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
}

.contact-detail h6 {
    font-size: 18px;
    font-weight: 600;
    color: #0a2540;
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 14.5px;
    color: #555;
    margin-bottom: 0;
}

/* Form Styles */
.contact-main-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
}

.custom-input {
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: 0.3s;
}

.custom-input:focus {
    border-color: #0b5d57;
    box-shadow: 0 0 0 0.2rem rgba(11, 93, 87, 0.1);
}

textarea.custom-input {
    resize: none;
}

/* Button (Rounded Navy/Teal) */
.btn-send-message {
    background-color: #0b5d57; /* Dark Teal jaisa button hai */
    color: #ffffff;
    padding: 12px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-send-message:hover {
    background-color: #073b37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 93, 87, 0.3);
}

/* ===========================================
   FULL RESPONSIVE (SMALL MOBILE 320px)
   =========================================== */

/* Tablet & Mobile (Below 992px) */
@media (max-width: 991px) {
    .contact-info-wrapper {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .contact-main-form {
        padding: 30px 20px;
    }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .contact-page-section {
        padding: 90px 0 30px 0;
    }
    
    .contact-info-item {
        flex-direction: column; /* Small mobile par icon upar aa jayega */
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .contact-detail h6 {
        font-size: 16px;
    }

    .contact-detail p {
        font-size: 13.5px;
    }

    .btn-send-message {
        width: 100%; /* Mobile par full width button taaki click asan ho */
    }
}

/* --- OUR CORE VALUES SECTION --- */
.core-values-section {
    padding: 40px 0;
    background-color: #fcfcfc; /* Subtle light background */
}

.values-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #0a2540; /* Navy Blue */
    margin-bottom: 20px;
}

/* Value Card Styling */
.core-value-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); /* Soft shadow as per image */
    transition: all 0.3s ease;
    height: 100%; /* All cards same height */
    border: 1px solid rgba(0,0,0,0.02);
}

.core-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.core-value-card h5 {
    font-size: 22px;
    font-weight: 600;
    color: #0a2540;
    margin-bottom: 15px;
}

.core-value-card p {
    font-size: 15.5px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===========================================
   RESPONSIVE DESIGN (FOR SMALL MOBILE)
   =========================================== */

/* Tablet View (Max 991px) */
@media (max-width: 991px) {
    .core-values-section {
        padding: 0;
    }
}

/* Small Mobile View (Max 480px - Optimized for 320px) */
@media (max-width: 480px) {
    .core-values-section {
        padding: 40px 10px;
    }
    
    .values-main-title {
        font-size: 26px;
    }

    .core-value-card {
        padding: 30px 20px; /* Reduced padding for tiny screens */
    }

    .core-value-card h5 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .core-value-card p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* --- OUR KEY PROGRAMS SECTION --- */
.key-programs-section {
    padding: 40px 0;
    background-color: #f8f9fa; /* Light background taaki white cards standout karein */
}

.programs-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #0a2540; /* RPG Navy Blue */
    margin-bottom: 10px;
}

/* Program Card Styling */
.program-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Exactly like the image */
    transition: all 0.3s ease;
    height: 100%; /* Important: Makes all cards same height on desktop/tablet */
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.program-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #0a2540;
    margin-bottom: 20px;
    line-height: 1.3;
}

.program-card-text {
    font-size: 15.5px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===========================================
   RESPONSIVE DESIGN (FOR SMALL MOBILE)
   =========================================== */

/* Tablet View (Max 991px) */
@media (max-width: 991px) {
    .key-programs-section {
        padding: 60px 0;
    }
}

/* Small Mobile View (Max 480px - Perfect for 320px screens) */
@media (max-width: 480px) {
    .key-programs-section {
        padding: 40px 10px;
    }
    
    .programs-main-title {
        font-size: 26px;
    }

    .program-card {
        padding: 30px 20px; /* Reduced padding for tiny screens */
        text-align: left; /* Image design follows left alignment */
    }

    .program-card-title {
        font-size: 19px;
        margin-bottom: 15px;
    }

    .program-card-text {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* --- TESTIMONIAL SECTION --- */
.testimonial-section {
  background-color: #f8f9fa;
  padding: 50px 0;
  overflow: hidden;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 0;
}

/* Nav Buttons Styling */
.btn-nav {
  background: #0a2540;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  margin-left: 10px;
  font-size: 14px;
  color: #ffffff;
  transition: 0.3s;
  font-weight: 500;
}

.btn-nav:hover {
  background: #0d3b66;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Card Styling */
.testimonial-card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
  transition: 0.3s;
  border: 1px solid rgba(0,0,0,0.02);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #f8f9fa;
}

.stars {
  color: #f5b400;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-card h5 {
  font-size: 19px;
  font-weight: 600;
  color: #0a2540;
  margin-bottom: 12px;
}

.testimonial-card .text {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card .role {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===========================================
   RESPONSIVE QUERIES (FULL PERFECTION)
   =========================================== */

/* Tablet View (Max 991px) */
@media (max-width: 991px) {
  .testimonial-section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 28px;
  }
}

/* Mobile View (Max 767px) */
@media (max-width: 767px) {
  .testimonial-header {
    flex-direction: column; /* Title upar, buttons niche */
    text-align: center;
    gap: 20px;
  }

  .nav-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .btn-nav {
    margin: 0 5px;
    flex: 1; /* Mobile par buttons barabar width ke honge */
    max-width: 120px;
  }

  .testimonial-card {
    padding: 30px 20px;
  }
}

/* Small Mobile (320px - iPhone SE) */
@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }
  .testimonial-card .text {
    font-size: 14px;
  }
  .testimonial-card img {
    width: 70px;
    height: 70px;
  }
}

/* Unique Styles for RPG Main Hero */
.rpg-hero-section {
    padding-top: 50px;
    margin: 0;
    overflow: hidden;
}

/* Image unique styling */
.rpg-hero-img {
    height: 85vh; /* Desktop Height */
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6); /* CSS se hi overlay effect */
}

/* Caption container adjustments */
.rpg-hero-caption {
    bottom: 25% !important;
    z-index: 10;
}

.rpg-hero-text-box {
    max-width: 850px;
    margin: 0 auto;
}

/* Heading Unique */
.rpg-hero-h {
    font-size: 52px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: rpgFadeUp 0.8s ease;
}

/* Paragraph Unique */
.rpg-hero-p {
    font-size: 18px !important;
    color: #e0e0e0 !important;
    line-height: 1.6 !important;
    margin-bottom: 30px !important;
    animation: rpgFadeUp 1s ease;
}

/* Unique Button */
.rpg-hero-btn {
    background-color: #0c4e5a !important;
    color: #fff !important;
    padding: 14px 40px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    border: 2px solid #0c4e5a !important;
    transition: 0.3s !important;
    text-transform: uppercase;
    font-size: 15px;
}

.rpg-hero-btn:hover {
    background-color: transparent !important;
    border-color: #fff !important;
    color: #fff !important;
}

@keyframes rpgFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================================
   RESPONSIVENESS (320px to Desktop)
   =========================================== */

/* Tablet (Max 991px) */
@media (max-width: 991px) {
    .rpg-hero-img {
        height: 60vh;
    }
    .rpg-hero-h {
        font-size: 36px !important;
    }
}

/* Mobile (Max 767px) */
@media (max-width: 767px) {
    .rpg-hero-img {
        height: 550px; /* Fixed height for mobile */
    }
    .rpg-hero-caption {
        bottom: 15% !important;
    }
    .rpg-hero-h {
        font-size: 28px !important;
        margin-bottom: 15px !important;
    }
    .rpg-hero-p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }
}

/* Smallest Mobile (Max 400px - Optimized for 320px) */
@media (max-width: 400px) {
    .rpg-hero-img {
        height: 480px;
    }
    .rpg-hero-h {
        font-size: 24px !important;
    }
    .rpg-hero-p {
        font-size: 13px !important;
        line-height: 1.5 !important;
        /* Text overflow control for very small screens */
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .rpg-hero-btn {
        padding: 10px 25px !important;
        font-size: 13px !important;
    }
}


/* --- PROFILE SECTION UPDATES --- */

/* Anchor Link Global Reset for Profile */
.info-box a, .director-card a, .address-card a {
    text-decoration: none !important;
    color: inherit;
}

/* Page Header Title Section */
.page-header {
    background: linear-gradient(90deg, #0c4e5a, #0a2540); /* RPG Navy & Teal */
    color: #fff;
    padding: 100px 15px 60px;
}

/* Info Box Enhancements */
.border-top-rpg {
    border-top: 6px solid #0c4e5a !important;
}

.text-navy-rpg {
    color: #0c4e5a;
}

.text-justify {
    text-align: justify;
}

/* Director Card UI Improvements */
.director-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    padding-bottom: 30px;
}

.director-header-bg {
    background: #0c4e5a;
    height: 80px;
    margin-bottom: -50px;
}

.director-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    position: relative;
    z-index: 1;
}

.contact-info-profile {
    padding: 0 20px;
}

.contact-info-profile p {
    font-size: 14px;
    color: #555;
    word-break: break-all; /* Taki lamba email mobile pe screen se bahar na jaye */
}

.contact-info-profile i {
    color: #0c4e5a;
    width: 20px;
}

/* Buttons Fix */
.outline-btn {
    background: transparent !important;
    border: 2px solid #0c4e5a !important;
    color: #0c4e5a !important;
}

.outline-btn:hover {
    background: #0c4e5a !important;
    color: #fff !important;
}

/* ===========================================
   ULTRA-RESPONSIVE (FOR 320px SCREEN)
   =========================================== */

@media (max-width: 480px) {
    .page-header {
        padding: 90px 10px 40px;
    }
    .page-header h1 {
        font-size: 26px;
    }
    .info-box {
        padding: 20px 15px;
    }
    .director-card {
        padding: 0 10px 25px;
    }
    .director-img {
        width: 100px;
        height: 100px;
    }
    .address-card {
        padding: 30px 15px;
    }
    /* Buttons stacking for small mobile */
    .btn-rpg-navy {
        width: 100% !important;
        text-align: center;
        display: block;
    }
}

/* Special fix for very tiny screens like iPhone SE (320px) */
@media (max-width: 330px) {
    .section-title {
        font-size: 20px;
    }
    .about-para {
        font-size: 13.5px;
    }
}

 /* Universal Floating Social Buttons */
    .sticky-social-container {
        position: fixed;
        right: 20px;
        bottom: 50px; /* Position change kar sakte hain */
        display: flex;
        flex-direction: column;
        gap: 12px;
        z-index: 999999; /* Sabse upar dikhne ke liye */
        font-family: Arial, sans-serif;
    }

    .sticky-social-button {
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: white !important; /* Force white color */
        font-size: 26px;
        text-decoration: none !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, background 0.3s ease;
    }

    .sticky-social-button:hover {
        transform: scale(1.1); /* Hover karne par thoda bada hoga */
        color: white;
    }

    /* Brand Colors */
    .ss-whatsapp { background-color: #25D366; }
    .ss-telegram { background-color: #0088cc; }

    /* Mobile Responsive: Chhote screen par size thodi kam */
    @media (max-width: 480px) {
        .sticky-social-container { right: 15px; bottom: 30px; }
        .sticky-social-button { width: 45px; height: 45px; font-size: 22px; }
    }