.ravi-drivers-grid{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:25px;
    align-items:stretch; 
}

.ravi-driver-card{

    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.25s;
	position:relative;
    display:flex;
    flex-direction:column;   
    height:100%;  	
	
}
@media (max-width: 767px) {
    .ravi-drivers-grid {
        display: block;
    }

    .ravi-driver-card {
        margin-bottom: 20px;
        height: auto;
    }

    .ravi-driver-card:last-child {
        margin-bottom: 0;
    }
}

.diver{

    text-align:center;
    font-size:22px;
    font-family:Mulish, Arial, sans-serif !important;
    font-weight:bold;

    padding:0 10px;

    display:-webkit-box;
    -webkit-line-clamp:2;   
    -webkit-box-orient:vertical;
    overflow:hidden;

    min-height:56px; 
}

.ravi-driver-card:hover{
    transform:translateY(-6px);
}
.ravi-slider img{
    width:100%;
    height:230px;
    object-fit:cover;
    border-radius:12px;
	transition:.35s;
}

.vehicle-title {
    font-size: 20px;
    font-weight: 700;
    padding: 10px 15px;
    text-align: center;
    font-family: ui-sans-serif;
	min-height:48px;
}

/*.ravi-specs{
    display:flex;
    justify-content:space-between;
    padding:0 15px;
}*/

/*.ravi-pricing {
    padding: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}*/
.ravi-pricing {
    padding: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; 
    font-size: 16px;
    font-family: auto;
	justify-content: space-around;
	
}
.ravi-book-btn{
    width:100%;
    padding:14px;
    background:#00a32a;
    color:#fff;
    border:none;
    cursor:pointer;
    font-weight:600;
	text-align:center;
	margin-top:auto;
	position:relative;
z-index:5;
	margin-bottom: 10px;
    border-radius: 10px;
}
.ravi-rating{

    display:flex;
    align-items:center;
    gap:8px;
    padding:6px 15px 10px;
	    justify-content: center;
}

.ravi-stars{
    color:#f5b301;
    font-size:18px;
}

.ravi-card-rating{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin:6px 0 10px;
}

.ravi-card-stars{
    color:#f5b301;
    font-size:16px;
}
.ravi-rating-badge{
    background:#111;
    color:#fff;
    font-size:13px;
    font-weight:600;
    padding:3px 8px;
    border-radius:6px;
}
.no-rating .ravi-rating-badge{
    background:#777;
}
.ravi-specs {
    display: flex;
    gap: 18px;
    padding: 2px 4px;
    font-weight: 600;
    justify-content: center;
    color: black;
}

.ravi-specs i{
    margin-right:6px;
    color:#00a32a;
}

.ravi-rating {
    padding: 0 4px 8px;
    color: #f5b301;
    font-size: 18px;
    text-align: center;
}
.diver {
    text-align: center;
    font-size: 30px;
    font-family: Mulish, Arial, sans-serif !important;
    font-weight: bold;
}

/* ================= MODAL OVERLAY ================= */
.ravi-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);

    align-items: center;
    justify-content: center;

    z-index: 9999;
}

/* ================= MODAL BOX ================= */
.ravi-modal-box {
    background: #ffffff;
    padding: 28px 26px;
    border-radius: 14px;
    width: 420px;
    max-width: 92%;
    position: relative;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: raviModalFade 0.25s ease-out;
}

/* ================= ANIMATION ================= */
@keyframes raviModalFade {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ================= HEADER ================= */
.ravi-modal-box h3 {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: #222;
}

/* ================= CLOSE BUTTON ================= */
.ravi-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 22px;
    color: #888;
    cursor: pointer;
    transition: color 0.2s ease;
}

.ravi-modal-close:hover {
    color: #000;
}

/* ================= TRIP OPTIONS ================= */
.trip-option {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;

    font-size: 16px;
    cursor: pointer;
    margin-bottom: 12px;

    transition: all 0.2s ease;
}

.trip-option input {
    accent-color: #111;
    transform: scale(1.1);
}

/* Hover */
.trip-option:hover {
    border-color: #111;
    background: #f9f9f9;
}

/* Selected */
.trip-option input:checked + span,
.trip-option:has(input:checked) {
    border-color: #111;
    background: #f3f3f3;
}

/* ================= CONTINUE BUTTON ================= */
#tripTypeContinue {
    margin-top: 18px;
    width: 100%;
    padding: 14px;

    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #111, #333);

    color: #fff;
    font-size: 16px;
    font-weight: 600;

    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

#tripTypeContinue:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

#tripTypeContinue:active {
    transform: translateY(0);
    box-shadow: none;
}

/* FILTER WRAPPER */
.ravi-filter-wrapper{
    margin-bottom: 30px;
}

/* FILTER BUTTON */
.ravi-filter-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 10px;
    background: #111;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all .25s ease;
	margin-bottom: 15px;
}

.ravi-filter-btn:hover{
    background:#000;
    transform: translateY(-1px);
}
/* BACKDROP */
.ravi-filter-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    z-index:9999;

    align-items:center;
    justify-content:center;
}

/* BOX */
.ravi-filter-box{
    background:#fff;
    width:520px;
    max-width:92%;
    padding:28px;
    border-radius:16px;
    position:relative;
    animation:filterPop .25s ease;
}

/* POP ANIMATION */
@keyframes filterPop{
    from{
        transform:scale(.9);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

/* CLOSE */
.ravi-filter-close{
    position:absolute;
    right:18px;
    top:14px;
    font-size:24px;
    cursor:pointer;
}

/* GRID */
.ravi-filter-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-top:20px;
}

@media(max-width:600px){
    .ravi-filter-grid{
        grid-template-columns:1fr;
    }
}

/* GROUP */
.ravi-filter-group{
    display:flex;
    flex-direction:column;
}

.ravi-filter-group label{
    font-weight:600;
    font-size:13px;
    margin-bottom:6px;
}

/* SELECT */
.ravi-filter-group select{
    padding:11px;
    border-radius:8px;
    border:1px solid #ddd;
    background:#fafafa;
}

/* APPLY */
.ravi-filter-apply{
    margin-top:24px;
    width:100%;
    padding:14px;
    border-radius:10px;
    border:none;
    background:#111;
    color:#fff;
    font-weight:600;
    cursor:pointer;
}

.ravi-review-box{
    width:700px;
    max-width:95%;
}

/* review card */
.ravi-review{
    padding:20px;
    border-bottom:1px solid #eee;
}

.ravi-review-stars{
    color:#ffb400;
    margin-bottom:6px;
}

.ravi-review-text{
    color:#444;
    line-height:1.6;
}

/* loader */
.ravi-loader{
    width:40px;
    height:40px;
    border:4px solid #eee;
    border-top:4px solid #111;
    border-radius:50%;
    animation:spin .7s linear infinite;
    margin:40px auto;
}

@keyframes spin{
    to{ transform:rotate(360deg); }
}

.ravi-driver-register {
    max-width: 900px;
    margin: auto;
    padding: 40px;
}

.ravi-register-card,
.ravi-step-2 {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.ravi-sub{
    color:#666;
    margin-bottom:25px;
}

.ravi-field{
    margin-bottom:20px;
}

.ravi-field label{
    display:block;
    margin-bottom:6px;
    font-weight:600;
}

.ravi-input,
.ravi-field input,
.ravi-field select {
    width: 100%;
    height: 48px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    background: #fff;
}

/* TomSelect Fix */
.ts-control {
    width: 100%;
    min-height: 48px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    background: #fff;
}
.ts-control {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.ts-control .item {
    background: #111;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    margin: 3px;
    font-size: 13px;
}

.ts-control input {
    min-width: 80px !important;
}

.ravi-field input:focus,
.ravi-grid-2 input:focus,
.ravi-grid-2 select:focus,
.ravi-field-full select:focus{

    outline:none;
    border-color:#111;

    background:#fff;

    box-shadow:0 0 0 4px rgba(0,0,0,.04);
}

.ravi-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.course-toggle label {
    display: flex;
    gap: 6px;
    justify-content: space-evenly;
    align-items: flex-end;
    align-content: stretch;
    flex-wrap: nowrap;
    margin-right: 10px;
}

.ravi-step{
    animation:fadeSlide .35s ease;
}

button#start_registration {
    background-color: green;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    width: 200px;
    text-align: center;
}

button#submit-driver {
	background-color: green;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    width: 200px;
    text-align: center;
}

/* make dropdown float correctly */
.iti{
width:100%;
z-index:9999;
}

/* dropdown scroll */
.iti__country-list{

max-height:260px;
overflow-y:auto;
-webkit-overflow-scrolling:touch;

box-shadow:0 12px 30px rgba(0,0,0,.12);
border-radius:12px;
}

.iti-mobile .iti__country-list{
    position:relative;
    margin-top:0;
    width:100%;
}
.iti__country{
padding:12px 14px;
font-size:15px;
}

.course-toggle input{
    accent-color:#111;
    transform:scale(1.15);
}

input[type="file"]{

    padding:12px;
    background:#fbfcfe;
    border:1.5px dashed #d7dfea;
    border-radius:12px;

    cursor:pointer;
}


.ravi-section-title {
    margin: 40px 0 20px;
    font-size: 20px;
    font-weight: 600;
    color: #111;
}

.ravi-primary-btn {
    background: linear-gradient(135deg,#111,#333);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
}


.ravi-primary-btn:hover {
    transform: translateY(-2px);
}

.ravi-primary-btn:active{
    transform:translateY(0);
}

.ravi-summary-box{

    background:linear-gradient(135deg,#f6f8fb,#ffffff);

    padding:18px;
    border-radius:12px;

    border:1px solid #e9edf3;

    margin-bottom:30px;
}

.course-block{
    margin-bottom:25px;
}


@media(max-width:768px){

.iti{
    width:100%;
}

.iti--separate-dial-code{
    width:100%;
}
.iti__country{

    padding:14px 18px;
    font-size:16px;
}
	
/* Country dropdown */
.iti__country-list{

    position:fixed !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    top:auto !important;

    width:100% !important;
    max-height:60vh !important;

    border-radius:16px 16px 0 0;
    box-shadow:0 -10px 30px rgba(0,0,0,.15);
}
}

.course-toggle {
    display: flex;
    align-items: center;
    gap: 20px;
}

.course-upload input{
    margin-top:10px;
}

.cert-row{
    display:flex;
    gap:10px;
    margin-bottom:10px;
}

.ravi-link-btn{
    background:none;
    border:none;
    color:#111;
    cursor:pointer;
    font-weight:bold;
}
.upload-label{
    display:block;
    margin:15px 0 8px;
    font-weight:600;
}
.ravi-field-full{
    margin:20px 0;
}
.ravi-success{

    background:#e6f9ed;
    border:1px solid #22c55e;
    color:#15803d;

    padding:14px;
    border-radius:10px;

    margin-bottom:20px;
    font-weight:600;

    animation:fadeSlide .4s ease;
}

@keyframes fadeSlide{
    from{
        opacity:0;
        transform:translateY(-10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.ravi-upload-preview{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:10px;
}

.ravi-thumb{
    position:relative;
    width:90px;
    height:90px;
    border-radius:10px;
    overflow:hidden;
    border:1px solid #e5e7eb;
    background:#fafafa;
}

.ravi-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.ravi-remove{
    position:absolute;
    top:4px;
    right:4px;
    background:#ef4444;
    color:white;
    width:20px;
    height:20px;
    font-size:12px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

/* Profile page */

.slick-dots {
    bottom: 15px !important;
}

.slick-dots li button:before {
    color: #fff !important;
    font-size: 12px !important;
}
.ravi-profile-cover-slider {
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
	border-radius:15px;
}

.ravi-reviews-heading{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:22px;
}

.ravi-heading-stars{
    color:#f5b301;
    font-size:18px;
}

.ravi-heading-rating{
    background:#111;
    color:#fff;
    padding:4px 8px;
    border-radius:6px;
    font-size:14px;
    font-weight:600;
}

.ravi-heading-rating.new{
    background:#e5e7eb;
    color:#555;
}
.ravi-profile-cover-slider img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.ravi-profile-grid{
    display:grid;
    grid-template-columns: 1.4fr 1fr;
    gap:28px;
    align-items:start; 
}
.ravi-profile-left,
.ravi-profile-right{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.ravi-profile-card{
    flex:0 0 auto;
}
@media(max-width:900px){
    .ravi-profile-grid{
        grid-template-columns:1fr;
    }
}

.ravi-driver-profile{
max-width:1100px;
margin:auto;
}

.ravi-profile-slider{
    overflow:hidden;
    border-radius:20px;
}

.ravi-profile-slider img{
    height:460px;
    width:100%;
    object-fit:cover;
}
/*.ravi-slider img,
.ravi-profile-slider img {
    width: 100%;
    display: block;
}*/
.ravi-profile-card{

    background:#ffffff;
    padding:28px;
    border-radius:18px;

    box-shadow:
        0 12px 35px rgba(0,0,0,.05);

    border:1px solid #eef1f6;

    transition:.25s;
}

.ravi-profile-card:hover{
    transform:translateY(-4px);
}

.ravi-big-cta{

    /*display:block;*/
	width:50% !important;
    text-align:center;

    padding:20px;

    background:linear-gradient(135deg, #045d88, #0c2937);
    color:#fff;
    border-radius:14px;
	text-decoration: none !important;
    font-size:16px;
    font-weight:500;

    margin-top:20px;

    transition:.25s;

    box-shadow:0 10px 25px rgba(0,163,42,.25);
}

.ravi-big-cta:hover{
    transform:translateY(-3px);
	 background:linear-gradient(135deg, #045d88, #0c2937);
    color:#fff;
}

.ravi-profile-card h1{
    font-size:32px;
    margin-bottom:10px;
}

.ravi-profile-card p{
    color:#555;
    line-height:1.7;
}
.ravi-profile-right .ravi-profile-card{
    position:sticky;
    top:110px;
}
/* Review */
#ravi-review-form button:disabled {
    background:#999;
    cursor:not-allowed;
    opacity:.8;
}
.ravi-reviews-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.ravi-review-card{

    background:#fff;
    padding:22px;
    border-radius:16px;

    border:1px solid #eef1f6;

    box-shadow:0 6px 18px rgba(0,0,0,.04);
}

.ravi-review-card:hover{
    transform:translateY(-3px);
}

.ravi-review-card strong{
    font-size:16px;
}

.stars{
    color:#f5b301;
    margin:6px 0;
}

.review-gallery{
    display:flex;
    gap:10px;
    margin-top:12px;
    flex-wrap:wrap;
}

.review-gallery img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:8px;
    cursor:pointer;
    transition:.2s;
}

.review-gallery img:hover{
    transform:scale(1.08);
}
.ravi-rating-summary{

    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}
.ravi-review-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
#ravi-review-form input,
#ravi-review-form textarea,
#ravi-review-form select{

    width:100%;
    padding:14px;

    border-radius:10px;
    border:1.5px solid #e6eaf0;

    margin-bottom:14px;
    background:#fbfcfe;
}

#ravi-review-form textarea{
    min-height:120px;
    resize:vertical;
}

#ravi-review-form button{

    /*width:50%;*/
    padding:16px;
	margin-bottom:20px;

    border:none;
    border-radius:12px;

    background:#111;
    color:#fff;

    font-size:16px;
    font-weight:600;

    cursor:pointer;

    transition:.25s;
}

#ravi-review-form button:hover{
    background:#000;
}
.ravi-review-hidden{
    display:none;
}

.ravi-see-more-wrapper{
    text-align:center;
    margin-top:15px;
}

.ravi-see-more-btn{
    background:#f8f8f8 !important;
    color:#03599d !important;
    padding:10px 18px;
    border:none;
    border-radius:50px;
    cursor:pointer;
    font-weight:500;
    transition:.2s;
}

.ravi-see-more-btn:hover{
    background:#000;
}
.ravi-profile-review-full{
    margin-top:40px;
}
/*driver badge*/
.ravi-badge{

    display:inline-block;
    margin-top:6px;

    background:#e6f9ed;
    color:#15803d;

    padding:5px 10px;
    border-radius:8px;

    font-size:13px;
    font-weight:600;
}

body {
    overflow-x: hidden;
}

/* Grid card new css*/

.ravi-driver-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
	border:1px solid #fff0;
   /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);*/
    transition: all 0.3s ease;
    position: relative;
   /* width: 400px;*/
}

.ravi-driver-card:hover {
    transform: translateY(-5px);
	 box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.ravi-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
	object-fit:cover !important;
}

.ravi-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ravi-specs-row{
    display:flex;
    justify-content:center;
    gap:25px;
    margin:2px 0;
}

.ravi-spec-item{
    display:flex;
    align-items:center;
    gap:6px;
    font-weight:500;
    font-size:12px;
	color:#545454;
}

.ravi-spec-item img{
    width:20px;
    height:20px;
}
.ravi-fav-icon{
    position:absolute;
    top:15px;
    right:15px;
    background:#fff;
    padding:8px 12px;
    border-radius:25px;
    display:flex;
    align-items:center;
    gap:6px;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    font-weight:600;
}
.ravi-fav-icon i{
    color:#e63946;
    font-size:16px;
}

.ravi-like-count{
    font-size:14px;
}

.ravi-card-body {
    padding: 20px;
}

.ravi-vehicle-title {
    font-size: 16px;
    font-weight:bold;
    margin-bottom: 10px;
 
    font-family:Mulish, Arial, sans-serif !important;
}

.ravi-price {
    font-size: 24px;
    font-weight: 700;
    color: #e67e22;
}

.ravi-price span {
    font-size: 14px;
    font-weight: 400;
    color: #777;
}

.ravi-included-km {
    margin-top: 5px;
    color: #666;
    font-size: 14px;
}

.ravi-action-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.ravi-call-btn,
.ravi-whatsapp-btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 12px;
    font-size: 18px;
    color: #fff;
}

.ravi-call-btn {
    background: #6c5ce7;
}

.ravi-whatsapp-btn {
    background: #25d366;
}

.ravi-book-main-btn {
    display: block;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
    border-radius: 50px;
    background: #f8f8f8;
    color: #2a5f9d;
    font-weight: 600;
    text-decoration: none !important;
}

.ravi-book-main-btn:hover{
	background: #e29d69;
    color: #fff;
}

.ravi-price-row {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}

.ravi-price-left strong, .ravi-price-right strong {
    font-size: 18px;
    display: block;
    color: #bc6c25;
    font-family:Mulish, Arial, sans-serif !important;
}

.ravi-see-more-btn {
    display: inline-block;
    margin: 8px 0;
    font-size: 12px;
    text-decoration:none !important;
}

.ravi-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.ravi-card-stars i {
    color: #f5b301;
}

.ravi-rating-badge {
    background: #111;
    color: #fff;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 13px;
}

.ravi-rating-badge.new {
    background: #999;
}
.ravi-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 0;
}

.ravi-driver-name {
    font-weight: 500;
    font-size: 14px;
    color:#545454;
    font-family: Mulish, Arial, sans-serif !important;
}

.ravi-see-more-btn {
    font-size: 12px;
    /* color: #555; */
    text-decoration: none;
    position: relative;
    margin-right: 0px;
    /*width: 150px;*/
    text-align: center;
    padding: 10px;
}

button.ravi-call-btn {
    color: green;
    background-color: #ede0d4;
    border-color: black;
    border-radius: 10px;
}
.ravi-see-more-btn::after {
    content: " →";
}

.ravi-see-more-btn:hover {
    text-decoration: none;
}
.ravi-price-left span, .ravi-price-right span {
    font-size: 11px;
    color: #707070;
    /*font-weight: bold;*/
    font-family: Mulish, Arial, sans-serif !important;
}
/* Shared Modal Background */
.ravi-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Modal Box (Same as Trip Modal) */
.ravi-modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: raviFadeIn 0.2s ease;
}

/* Close Button */
.ravi-modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 20px;
    cursor: pointer;
}

/* Phone Display */
.ravi-call-number {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0;
    text-align: center;
}

/* Buttons Row */
.ravi-call-actions {
    display: flex;
    gap: 10px;
}

/* Primary Button */
.ravi-call-btn-primary {
    flex: 1;
    background: #111;
    color: #fff;
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

/* Secondary Button */
.ravi-call-btn-secondary {
    flex: 1;
    background: #25D366;
    color: #fff;
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

@keyframes raviFadeIn {
    from { transform: translateY(10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}