:root{
    --navy: #1B3357;
    --cta: #ff6f00;
    --btn-bg: #27456b;
    --btn-text: #fff;
    --radius: 999px;
    --max-width:420px;
  }

  body{
    margin:0;
    font-family:'Nunito Sans', sans-serif;
    background:#fff;    
  }

  /* Hide on desktop */
  @media (min-width:769px){
    .phone-frame-outer{display:none !important;}
	.airline-banner{display:none;}
	.phone-frame {
      display:none !important;
    }   
  }
   	
.phone-frame-outer {
  background: linear-gradient(180deg, rgba(192, 219, 236, 1) 0%, rgba(240, 241, 243, 1) 53%, rgba(201, 228, 245, 1) 100%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 13px;
  height: 100vh;        /* Use min-height instead of height */
  text-align: center;
  overflow-y: auto;          /* Allow scrolling inside */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-overflow-scrolling: touch; /* smooth iOS scrolling */
  z-index: 999;
}
	

  .phone-frame{
    width:100%;
    max-width:var(--max-width);
    background:#fff;
    box-shadow:0 4px 25px rgba(0,0,0,0.1);
    border-radius:22px;
    overflow:hidden;	
  }
  
  .whole-banner-clickable a.wholeClickable {
    position: absolute;
    width: 100%;
    height: 80%;
    left: 0px;
    top: 0px;
    z-index: 10;
}

._call-numSpan, .circlePhone {
    font-size: 0 !important;
}

  .top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 29px 14px 0;
    position: relative;
    margin-top:0;
    margin-bottom:14px;
  }
  .top a{color:#000000; text-decoration:none;}
  .logo img{height:40px;}
  .air-ticket-hd{font-size: 15px; font-weight: 800; color:#005691; margin: 16px 0 4px;text-transform:uppercase;}
  .air-ticket-hd img{height:45px; vertical-align: middle; margin-right:12px;}
  .text-sub{ font-size: 13px;
    display: block;
    text-align: right;
    letter-spacing: 3px;
    font-weight: 800;
	margin-top: -17px;
	}
	
	.text-main{width: auto;
	display: inline-block;}
	
  .phone-badge{
    display:flex;
    align-items:center;
    gap:8px;
    padding: 2px 8px 0 36px;
    border:2px solid #005691;
    border-radius:30px;
    font-weight:800;
    font-size:18px;
	position: relative;
  }
  .phone-badge .icon{
    background:#fff;
    color:#fff;
    border-radius:50%;
    padding:0;
	position: absolute;
    left: -4px;
    height: 32px;
    width: 32px;
	border: #005691 2px solid;
	 /* 🔹 Animation applied here */
  animation-name: trin;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;	
  }
  
  /* 🔹 Keyframes for 'trin' animation */
@keyframes trin {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(15deg); }
  40% { transform: rotate(-10deg); }
  50% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}
  
  .phone-badge .icon img{height: 20px;
    padding-top: 5px; margin: auto;
    display: block;} 
   
    
  .close-btn{
    border: 2px solid #333;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-left: auto;
    position: absolute;
    top: 20px;
    right: 19px;
    z-index:12;
  }

  .title-strip{
    background:var(--navy);
    color:#fff;
    text-align:center;
    padding:7px 0;
    font-weight:800;
    font-size:22px;
  }

  .hero{
    text-align:center;
    padding:8px 10px 10px;
  }
  .hero img{
    width:100%;
    max-width:340px;
    height:auto;
  }

  .actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    padding:6px 14px 8px;
  }
  .action-btn{
    background:var(--btn-bg);
    color:var(--btn-text);
    border:none;
    border-radius:var(--radius);
    padding:6px 9px;
    font-weight:600;
    font-size:14px;
  }

  .support{
    text-align:center;
    padding:10px;
  }
  .support img{
    width:70px;
    height:70px;
    border-radius:50%;
    margin-bottom:8px;
	margin-top: -35px;
  }
  .support .tagline{
    font-weight:800;
	font-size:18px;
  }

  .cta{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:var(--cta);
    color:#fff;
    border-radius:40px;
    margin:10px auto;
    padding: 14px 8px 14px;
    font-size:22px;
    font-weight:700;
    width:90%;
    box-shadow:0 4px 12px rgba(255,111,0,0.2);
    text-decoration:none;
	position: relative;
  }

 a.cta {
    color: #fff;
}

a.cta:hover {
    color: #fff;
}

  .cta .phone-circle{
   background: #fff;
    color: #FE5A05;
    border-radius: 50%;
    padding: 7px 11px;
    position: absolute;
    left: 0;
    border: #FE5A05 6px solid;
	 /* 🔹 Animation applied here */
  animation-name: trin;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  }
  
  /* 🔹 Keyframes for 'trin' animation */
@keyframes trin {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(15deg); }
  40% { transform: rotate(-10deg); }
  50% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}
  
  .cta .phone-circle img{height: 38px; padding:4px;}
  
  .support-circle-bg {
  width: 100%; 
  background: #EFEFEF;
  position: relative;
  margin-top: 35px;
  padding-bottom: 10px;
}

 .support-circle-bg .agent-bx{height: 47px;}
 
 
 .airline-banner{
     position:relative;
     z-index:999;
     padding-bottom:20px;
 }
 
 .airline-banner .top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 0 14px 15px;
    position: relative;
    margin:10px 0;
  }
.airline-banner .top a{color:#000000; text-decoration:none;}
.airline-banner .hero {
    text-align: center;
    padding: 0;
}
.airline-banner .hero img {
    width: 100%;  
	max-width: 100%;	
    height: auto;
}


.airline-banner .reservation-main{
    display:block;   
    padding:15px 14px 10px;
	margin-top: -40px;
  }
  .airline-banner .reservation-btn{
    background: var(--navy);
    color:var(--btn-text);
    border:none;
    border-radius:var(--radius);
    padding:9px 9px;
    font-weight:600;
    font-size:16px;
	width:100%;
  }
  
  .airline-banner .support-circle-bg {
  width: 100%; 
  background:transparent;  
  position: relative;
  margin-top: 10px;
  padding-bottom: 10px;
}

 .airline-banner .support{
    text-align:center;
    padding:8px 0;
  }
  
  .airline-banner .support-circle-bg .helpline-text{font-size:16px; font-weight:800; text-align:center; }

    .airline-banner .phone-frame {
        width: 100%;
        max-width: var(--max-width);
        background: #fff;
        box-shadow:none;
        border-radius: 0;
        overflow: hidden;
    }

    .ul.bread-menu {
        margin:0 !important;
    }

