* {
    margin: 0;

    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar */
.navbar {
    background: #fff;
    padding: 15px 5%;
    display: flex;
    justify-content: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
}

.nav-contact {
    display: flex;
}

.nav-contact a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    margin-left: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.nav-contact i {
    color: #004d73;
    margin-right: 5px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('http://webapi.tjohncollege.com/MediaUploads/a223254202.png') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding-top: 100px;
    margin-top: 50px;
    padding-bottom: 50px;
}

.main-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.glass-content {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-holder {
    background: #fff;
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 25px;
}

.logo-holder img {
    height: 45px;
    display: block;
}

.main-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.sub-title {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.tags {
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

.bullet-points {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: 500;
}

.ranking-row {
    display: flex;
    gap: 40px;
}

.rank-item .num {
    display: block;
    font-size: 28px;
    font-weight: 700;
}

.rank-item .lbl {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
}

.sep {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 25px;
}

/* Form Design */
.form-box {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.form-box h3 {
    color: #D7262E;
    font-size: 24px;
    margin-bottom: 8px;
}

.form-box p {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.field {
    margin-bottom: 12px;
}

.field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #333;
    text-transform: uppercase;
}

input,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    color: #333;
    background-color: #fcfcfc;
}

.field-row {
    display: flex;
    gap: 10px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #D7262E;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    font-size: 16px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #003350;
    transform: translateY(-1px);
}

.terms {
    font-size: 10px;
    text-align: center;
    margin-top: 12px;
    color: #888;
}

.terms a {
    color: #D7262E;
    text-decoration: none;
    font-weight: 600;
}

/* WhatsApp */
.wa-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1F4E79;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    text-decoration: none;
    transition: 0.3s;
}



/* --- PROFESSIONAL POPUP STYLES --- */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.popup-container {
    position: relative;
    width: 100%;
    max-width: 410px;
    animation: popupScale 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup-form-box {
    margin: 0 !important;
    padding: 25px 30px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.close-popup {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #fff;
    color: #333;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.close-popup:hover {
    background: #1F4E79;
    color: #fff;
    transform: rotate(90deg);
}

@keyframes popupScale {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 991px) {
    .navbar {
        padding: 10px 3%;
        margin-bottom: 10px;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .logo img {
        height: 26px;
    }

    .nav-contact {
        flex-direction: column;
        align-items: flex-end;
        gap: 2px;
    }

    .nav-contact a {
        margin-left: 0;
        font-size: 9px;
        font-weight: 600;
    }

    .hero-section {
        padding-top: 85px;
        padding-bottom: 40px;
        height: auto;
    }

    .main-container {
        grid-template-columns: 1fr;
        width: 94%;
        gap: 25px;
    }

    .main-title {
        font-size: 28px;
    }

    .ranking-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .rank-item {
        flex: 1;
        text-align: center;
    }

    .rank-item .num {
        font-size: 20px;
        /* thoda chhota mobile ke liye */
    }

    .rank-item .lbl {
        font-size: 11px;
    }

    .sep {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 10px;
        padding-left: 0;
    }

    .popup-container {
        max-width: 360px;
    }
}

/* MOBILE RESPONSIVE UPDATED FINAL */
@media (max-width: 991px) {

    /* Container ko control karo */
    .logos-container,
    .logo-row,
    .alliance-logo-wrapper {
        display: flex;
        flex-wrap: wrap !important;
        /* 🔥 wrap allow karo */
        justify-content: center;
        /* center better dikhega */
        gap: 10px;
        width: 100%;
        overflow: hidden;
    }

    /* Har logo ko limit karo */
    .logos-container img,
    .logo-row img,
    .alliance-logo-wrapper img {
        max-width: 120px;
        /* 🔥 size control */
        width: 100%;
        height: auto;
        object-fit: contain;
        flex: 0 1 auto;
    }

    /* Extra safety */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
}

/* --- Floating Sidebar (Balanced & Soft) --- */
.floating-sidebar {
    position: fixed;
    right: 30px;
    /* Reduced right gap */
    top: 55%;
    /* Fixed: Lowered down slightly from vertical center */
    transform: translateY(-50%);
    width: 340px;
    /* Kept slightly smaller than "Extra Large" for better fit */
    background: #ffffff;
    padding: 30px;
    /* Reduced padding */
    border-radius: 12px;
    /* Request: Less Radius for a cleaner box feel */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Request: soft shadow */
    z-index: 1000;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    opacity: 0;
    visibility: hidden;
    transition: none;
    /* 🔥 ye line add karo (delay hata dega) */
}

.floating-sidebar.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-logo {
    width: 100%;
    max-width: 280px;
    /* Balance size */
    margin-bottom: 20px;
}

.sidebar-header h3 {
    color: #D7262E;
    font-size: 24px;
    /* Kept clean, not huge */
    margin-bottom: 8px;
    font-weight: 700;
    /* Main heading can remain bold */
}

.sidebar-header p {
    font-size: 16px;
    /* Smaller and clear */
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 400;
    /* Regular weight */
}

/* Updated Button Styles: Less bold & balanced padding */
.sidebar-apply-btn {
    display: block;
    width: 100%;
    background: #D7262E;
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    /* Square feel for buttons too */
    border: none;
    font-weight: 600;
    /* Request: Less bold */
    cursor: pointer;
    margin-bottom: 10px;
    font-size: 16px;
}

.sidebar-call-btn {
    display: block;
    width: 100%;
    background: #f4d03f;
    color: #D7262E;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    /* Request: Less bold */
    font-size: 16px;
}

@media (max-width: 768px) {
    .floating-sidebar {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .floating-sidebar {
        display: none !important;
    }
}

/* --- About Section (Professional) --- */
/* --- Placement Wrapper: Shifting Up --- */
.placement-wrap {
    padding: 60px 0;
    /* Padding kam ki taaki content upar dikhe */
    background: #ffffff;
    position: relative;
}

.placement-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-right: 400px;
    /* Space for floating form */
}

/* Header: Less Bold */
.placement-header {
    text-align: left;
    margin-bottom: 35px;
}

.section-heading {
    font-size: 36px;
    color: #333;
    font-weight: 600;
    /* Kam bold kiya (Bold 800 se 600) */
}

.highlight {
    color: #D7262E;
    font-weight: 600;
    /* Highlights bhi kam bold */
}

.header-line {
    width: 50px;
    height: 3px;
    background: #D7262E;
    margin-top: 10px;
}

/* Bento Grid: All cards same */
.placement-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    transition: 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.stat-icon-box {
    width: 60px;
    height: 60px;
    background: #fdfaf0;
    color: #1E4F8A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
}

/* Content: Less Bold */
.stat-info h4 {
    font-size: 24px;
    color: #333;
    margin-bottom: 2px;
    font-weight: 700;
    /* Standard Bold */
}

.stat-info p {
    color: #777;
    font-size: 14px;
    font-weight: 500;
    /* Light weight for description */
}

/* --- Button: Back to Original Maroon --- */
.placement-action {
    margin-top: 40px;
}

.custom-placement-btn {
    background: #D7262E;
    /* Pehle jaisa Maroon color */
    color: #fff;
    border: none;
    padding: 16px 45px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(90, 22, 22, 0.15);
    transition: 0.3s;
}

.custom-placement-btn:hover {
    background: #1E4F8A;
    color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 1200px) {
    .placement-container {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .placement-main-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        font-size: 28px;
    }
}

/* --- Split Layout Wrapper --- */
.awards-split-wrap {
    padding: 50px 0;
    background-color: #ffffff;
    position: relative;
}

.awards-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding-right: 420px;
    /* Space for your floating form */
}

/* Header */
.awards-header .section-heading {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    margin: 0;
    text-transform: uppercase;
}

.awards-header .highlight {
    color: #D7262E;
}

.awards-header .header-line {
    width: 50px;
    height: 3px;
    background: #cca300;
    margin: 8px 0 25px 0;
}

/* Logo Strip - All images together */
.awards-logo-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    padding: 20px;
    background: #fdfcf7;
    /* Subtle Gold Tint */
    border-radius: 4px;
    margin-bottom: 30px;
    border-bottom: 2px solid #cca300;
}

.awards-logo-strip img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
    transition: 0.3s;
}

.awards-logo-strip img:hover {
    transform: translateY(-3px);
}

/* Compact Text List */
.awards-flex-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
}

.award-entry {
    display: flex;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
}

.award-number {
    font-size: 20px;
    font-weight: 800;
    color: #D7262E;
    /* Gold Numbers */
    font-family: 'Syne', sans-serif;
    line-height: 1.2;
}

.award-detail h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1E4F8A;
    /* Maroon Headings */
    margin: 0 0 4px 0;
}

.award-detail p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Hover Effect */
.award-entry:hover {
    border-bottom-color: #1E4F8A;
}

/* Footer Button */
.awards-footer {
    margin-top: 30px;
}

.awards-footer .custom-placement-btn {
    background: #D7262E;
    color: #fff;
    border: none;
    padding: 16px 45px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-transform: capitalize;
    cursor: pointer;
    transition: 0.3s;
}

.awards-footer .custom-placement-btn:hover {
    background: #1E4F8A;
}

/* Responsive */
@media (max-width: 1200px) {
    .awards-container {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .awards-flex-grid {
        grid-template-columns: 1fr;
    }

    .awards-logo-strip {
        justify-content: center;
        gap: 20px 35px;
        padding: 15px;

        .awards-logo-strip img {
            height: 40px;
            /* thoda small for better fit */
        }
    }
}

/* --- Uniform Compact Ranking Design --- */
/* Container - Reduced Padding for Compactness */
.rank-compact-section {
    padding: 40px 0;
    background-color: #ffffff;
    position: relative;
}

.rank-wrapper {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding-right: 400px;
    /* Space for your form */
}

/* Header - Single Line & Compact */
.rank-header-mini {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.rank-header-mini .rank-title {
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.text-maroon {
    color: #D7262E;
}

.gold-line {
    height: 2px;
    width: 30px;
    background: #1E4F8A;
}

/* Grid - 2 Columns to reduce "Lamba" look */
.rank-dense-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    /* No gaps to kill white space */
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
}

/* Item Box - Thin & Minimal */
.rank-item-box {
    padding: 20px;
    background: #ffffff;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

/* Unique "Ghost" Background Number to fill space */
.rank-item-box::before {
    content: "0" attr(data-index);
    /* You can add data-index="1" etc in HTML */
    position: absolute;
    right: -5px;
    bottom: -10px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    pointer-events: none;
}

.rank-item-box:hover {
    background: #fdfcf7;
}

/* Compact Content */
.rank-top-bar {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.rank-item-box i {
    color: #1E4F8A;
    font-size: 14px;
    margin-bottom: 5px;
}

.year-label {
    font-size: 10px;
    font-weight: 700;
    color: #D7262E;
}

.rank-main-info {
    flex: 1;
}

.org-bold {
    font-weight: 700;
    font-size: 11px;
    color: #1E4F8A;
    text-transform: uppercase;
    display: block;
}

.rank-main-info h3 {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 2px 0;
}

.cat-text {
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.2;
}

/* Button - Small & Minimalist */
.rank-cta-mini {
    margin-top: 25px;
}

.compact-btn {
    background: #D7262E;
    color: #fff;
    border: none;
    padding: 16px 45px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-transform: capitalize;
    cursor: pointer;
    transition: 0.3s;
    margin-left: 35px;

}

.compact-btn:hover {
    background: #1E4F8A;
}

/* Mobile Responsive */
@media (max-width: 1100px) {
    .rank-wrapper {
        padding-right: 0;
    }
}

@media (max-width: 600px) {
    .rank-dense-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Guidance Section --- */
.guidance-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
}

.guidance-container {
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
    /* Space reserved for your floating form on the right */
    padding-right: 400px;
}

/* Main Card Styling */
.guidance-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

/* Left Text Area */
.guidance-content {
    flex: 1;
    max-width: 65%;
}

.sub-tag {
    color: #cca300;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.guidance-content h2 {
    font-size: 36px;
    color: #222;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.guidance-content h2 span {
    color: #D7262E;
}

.guidance-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Buttons & Info */
.guidance-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-connect {
    background: #D7262E;
    color: #fff;
    padding: 16px 45px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;

    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(90, 22, 22, 0.2);
}

.btn-connect:hover {
    background: #cca300;
    transform: translateY(-3px);
}

.expert-contact small {
    display: block;
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
}

.expert-contact a {
    text-decoration: none;
    color: #222;
    font-size: 18px;
    transition: 0.2s;
}

.expert-contact a:hover {
    color: #D7262E;
}

/* Image Visual */
.guidance-visual img {
    width: 260px;
    height: auto;
    display: block;
}

/* --- Responsive Layout --- */
@media (max-width: 1200px) {
    .guidance-container {
        padding-right: 0;
        /* Form moves below or stays absolute */
    }
}

@media (max-width: 992px) {
    .guidance-card {
        padding: 40px;
    }

    .guidance-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .guidance-card {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .guidance-content {
        max-width: 100%;
    }

    .guidance-actions {
        flex-direction: column;
        gap: 20px;
    }

    .guidance-visual img {
        max-width: 200px;
    }
}

.footer-container {
    display: flex;
    justify-content: space-between;
    /* Logo left, Links right */
    align-items: center;
    max-width: 100%;
    /* Puri width occupy karne ke liye */
    margin: 0 auto;
    background: #dddddd;
    padding-top: 10px;

}

.footer-logo {
    height: 65px;
    /* Proportional logo size */
    width: auto;
    display: block;
}

.footer-right {
    display: flex;
    gap: 40px;
    /* Links ke beech mein clean space */
}

.footer-right a {
    text-decoration: none;
    color: rgb(2, 77, 111);
    /* Your specific brand blue */
    font-size: 15px;
    /* Requested size */
    font-weight: 400;
    /* Light weight for professional look */
    transition: opacity 0.3s ease;
}

.footer-right a:hover {
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .footer-container {
        flex-direction: row;
        /* change this */
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
    }

    .footer-right {
        flex-direction: row;
        /* change this */
        gap: 15px;
    }

    .footer-logo {
        height: 50px;
    }

    .footer-right a {
        font-size: 13px;
    }
}

/* --- SECTION BASE --- */
.ps-about-section {
    padding: 70px 0 !important;
    background: #ffffff !important;
}

.ps-about-container {
    width: 92% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding-right: 380px !important;
    /* Sidebar Gap */
}

/* --- HEADER --- */
.ps-intro-header {
    margin-bottom: 50px !important;
}

.ps-tag {
    color: #D7262E !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

.ps-main-title {
    color: #D7262E !important;
    font-size: 36px !important;
    font-weight: 800 !important;
    margin: 10px 0 !important;
    line-height: 1.2 !important;
}

.ps-main-subtitle {
    font-size: 16px !important;
    color: #555 !important;
    line-height: 1.7 !important;
    max-width: 850px !important;
}

/* --- INTERACTIVE GRID --- */
.ps-feature-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    /* 3 Columns for compact look */
    gap: 20px !important;
}

.ps-feature-box {
    background: #ffffff !important;
    padding: 20px !important;
    border-radius: 12px !important;
    border: 1px solid #f0f0f0 !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: flex !important;
    flex-direction: column !important;
    cursor: pointer !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02) !important;
}

/* Hover Effect: Card jumps up and border colors change */
.ps-feature-box:hover {
    transform: translateY(-10px) !important;
    border-color: #D7262E !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.ps-icon-wrap {
    font-size: 28px !important;
    margin-bottom: 15px !important;
    transition: 0.3s !important;
}

.ps-feature-box:hover .ps-icon-wrap {
    transform: scale(1.2) rotate(10deg) !important;
}

.ps-content-wrap h3 {
    color: #D7262E !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
}

.ps-content-wrap p {
    font-size: 13.5px !important;
    color: #777 !important;
    line-height: 1.5 !important;
}

/* Accent for specific items */
.ps-active-border {
    border-bottom: 3px solid #6B2B2B !important;
}

/* --- ACTION AREA --- */
.ps-action-bar {
    display: flex !important;
    align-items: center !important;
    gap: 30px !important;
    margin-top: 40px !important;
}

.ps-btn-maroon {
    background: #D7262E !important;
    color: #fff !important;
    padding: 15px 35px !important;
    border: none !important;
    border-radius: 10px !important;
    /* Rounded for interaction */
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: 0.3s !important;
}

.ps-btn-maroon:hover {
    background: #0F4A7A !important;
    transform: scale(1.05) !important;
}

.ps-phone-link {
    color: #0F4A7A !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

/* --- MOBILE FIX --- */
@media screen and (max-width: 1200px) {
    .ps-about-container {
        padding-right: 0 !important;
        text-align: center !important;
    }

    .ps-feature-grid {
        grid-template-columns: 1fr !important;
    }

    .ps-action-bar {
        flex-direction: column !important;
    }

    .ps-main-subtitle {
        margin: 0 auto !important;
    }
}