/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

p{
	margin-bottom: 1.1em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.2em;
}
figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
	display: inline-block;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1250px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}
/************************************/
/*** 	   02. General Css		  ***/
/************************************/

body{
	position: relative;
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 400;
}
/************************************/
/*** 	   Banner Css		  ***/
/************************************/
.banner{
    background: #7fcfd6;
    padding: 80px 0;
}
.section_head h2 {
    font-size: 45px;
    color: #374046;
    font-weight: 700;
}
.banner_text h1 {
    font-size: 65px;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
    margin-top: 22px;
}
.banner_text h2{
    font-size: 48px;
    font-weight: 300;
        line-height: 1.2;
    color: #fff;
}
.donation-form .container{
    max-width: 830px;
    margin: 0 auto;
}
.donation-form{
        background: #EAEBEC;
    padding-top: 84px;
    padding-bottom: 108px;
}
.steps{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:10px;
}

.step-circle{
    width:35px;
    height:35px;
    border-radius:50%;
    background:#fff;
    color:#d6002a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight: 600;
}

.step-circle.active{
    background:#d6002a;
    color: #fff;
}

.step-line{
    width: 145px;
    height: 2px;
    background: #fff;
}

.step{
    display:none;
}

.step.active{
    display:block;
}

.toggle{
    display:flex;
    justify-content:center;
    margin-bottom:35px;
}

.toggle-btn{
    padding:9px 25px;
    border:none;
    background:#fff;
    cursor:pointer;
        font-size: 15px;
    font-weight: 600;
    
}
.toggle button:first-child{
    border-radius: 10px 0 0 10px !important;
}
.toggle button:last-child{
    border-radius: 0 10px 10px 0;
}
.toggle-btn.active{
    background:#2d3a3f;
    color:#fff;
    position: relative;
}
.toggle-btn.active:after{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
        transform: translate(-50%, 100%);
    width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #2d3a3f transparent transparent transparent;
}
.amount-row{
    display:flex;
    gap:8px;
    margin-bottom:15px;
}

.amount-box input{display:none;}

.amount-box span{
    display:block;
    padding:12px;
    background:#fff;
    border-radius:6px;
    cursor:pointer;
}

.amount-box input:checked + span{
    background:#7fd4d9;
    color:#fff;
}

.donation-type{
    display:flex;
    justify-content:space-between;
    background:#fff;
    padding:10px;
    border-radius:6px;
    font-size:14px;
}

.section-title{
    text-align:center;
    font-weight:bold;
    margin:20px 0 10px;
}
h4.sec-title{
    text-align: center;
    margin-bottom: 29px;
    font-size: 25px;
    font-weight: 700;
    color: #374046;
}
.payment-row{
    display:flex;
    gap:15px;
    justify-content:center;
    max-width: 550px;
    margin: 25px auto 0;
}

.pay-box{
    flex:1;
    text-align:center;
    padding:12px 12px;
    border-radius:10px;
    background:#fff;
    cursor:pointer;
    font-weight:600;
    font-size:15px;
    color:#333;
    transition:all 0.3s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:76px;
}

/* hide radio */
.pay-box input{
    display:none;
}

/* ✅ WHEN RADIO IS CHECKED */
.pay-box:has(input:checked){
    background:#7fd3d6;     /* teal */
    border-color:#7fd3d6;
    color:#fff;
}


.arrow a {
    color: #fff;
    text-decoration: none;
    font-size: 40px;
    text-align: center;
}
.toggle-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.toggle-content.show {
    max-height: 600px;
}

.am-wrap{   display: flex;}
.c-radio{max-width: 128px; margin: 0 6.5px 12px;}

.c-radio [type="radio"]:checked,
.c-radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.c-radio [type="radio"]:checked + label,
.c-radio [type="radio"]:not(:checked) + label{
     position: relative;
     cursor: pointer;
     background: #fff;
     border-radius: 10px;
      font-size:37px; 
      font-weight: bold;
      display: inline-block;
       line-height: 1.3;
       color: #374046; 
       padding: 8px; 
       text-align: center; 
       width: 128px;
    }
.c-radio [type="radio"]:checked + label {
    background: #7FCFD6; 
    color: #fff;
}
.c-amount{
    margin: 0 6.5px 12px; 
    background: #fff; 
    border-radius: 10px; 
    position: relative;
}
.c-amount .form-control{
    background: transparent; 
    position: relative; 
    z-index: 2; 
    padding-left: 50px; 
    border: none;  
    text-transform: uppercase; 
    height:63px; 
    color:#374046; 
    font-size:37px; 
    font-weight: 700; 
}
.c-amount .form-control::-webkit-input-placeholder { color: rgba(55,64,70,0.4); }
.c-amount .form-control:-ms-input-placeholder { color: rgba(55,64,70,0.4); }
.c-amount .form-control::-moz-placeholder {color: rgba(55,64,70,0.4); }
.c-amount .form-control::-ms-input-placeholder {color: rgba(55,64,70,0.4); }
.c-amount .form-control::placeholder {color: rgba(55,64,70,0.4); }


.c-amount .form-control:focus{
    -webkit-box-shadow: none;
    box-shadow: none;  
    outline: none;
}
.form-label{
    color: rgba(55,64,70,0.4); 
    font-size: 20px;    
    position: absolute;
    top: 18px;
    left: 20px; font-weight: 600; text-transform: uppercase;
    cursor: text; z-index: 1; margin: 0;
    transition: all .15s ease-in-out 0s;
}

.c-amount .form-control:focus ~ .form-label , .has-content ~ .form-label {
    top: -1.5em;
    left: 0; display: none;
    cursor: pointer;
}
.c-amount:after{
    content: "£"; 
    display: none; 
    font-size:37px;
    font-weight: bold;
    color: #374046;
    position: absolute;
    top: 4px; 
    left: 23px;}
:after{display: block;}
.c-amount.has-content:after{display: block;}


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


input[type=number] {
    -moz-appearance: textfield;
}

.donation-type{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
border: 2px solid #fff;
    border-radius:10px;
    padding: 20px 145px;
    margin-bottom:20px;
    background: transparent;
}

.donation-type label{
    display:flex;
    align-items:center;
    gap:10px;
    margin:0;
    cursor:pointer;
    font-weight:700;
    color:#2f3b40;
    font-size:16px;
}

.donation-type input[type="radio"]{
    appearance:none;
    -webkit-appearance:none;
    width:30px;
    height:30px;
    border-radius:50%;
    background:#ffffff;
    border:2px solid #ffffff;
    position:relative;
    cursor:pointer;
}

.donation-type input[type="radio"]:checked{
    background:#ffffff;
    border-color:#ffffff;
}

.donation-type input[type="radio"]:checked::after{
    content:"";
    position:absolute;
    width:16px;
    height:16px;
    background:#6fd0d8;
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
}
.bank-box{
    background:#fff;
    padding:30px;
    border-radius:6px;
    font-size:16px;
    text-align: center;
}
.bank-box p{
    margin-bottom: 0px;
}
.giftaid-box{
    background:#ffffff;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    overflow:hidden;
    font-family:Arial, sans-serif;
}

.giftaid-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 22px;
}

.giftaid-title{
    margin:0 0 12px;
    font-size:15px;
    color:#2f3b40;
}

.giftaid-check{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:14px;
    color:#2f3b40;
    cursor:pointer;
}

.giftaid-check input{
    display:none;
}

.checkmark{
    width: 35px;
    height: 35px;
    border-radius:6px;
    border:2px solid #6fd0d8;
    position:relative;
}

.giftaid-check input:checked + .checkmark::after{
    content:"";
    position:absolute;
    left: 11px;
    top: 4px;
    width: 9px;
    height: 18px;
    border:solid #2f3b40;
    border-width:0 3px 3px 0;
    transform:rotate(45deg);
}
.giftaid-logo{
    max-width: 130px;
}

.giftaid-footer{
    border-top:1px solid #eee;
    padding:14px 22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
    color:#2f3b40;
    cursor:pointer;
}

.giftaid-footer i{
    font-size:30px;
    color: #afb3b5;
}
.second-step-form{
    max-width:1100px;
    font-family:Arial, sans-serif;
    color:#222;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-bottom:25px;
}

.form-row.full{
    grid-template-columns:1fr;
}

.second-step-form label{
    font-size:13px;
    font-weight:600;
    margin-bottom:6px;
    display:block;
}

.second-step-form label span{
    color:#C41230;
}

.second-step-form label em{
    color:#C41230;
    font-style:italic;
}

.second-step-form input, select{
    width:100%;
    padding:10px 12px;
    border:1px solid #999;
    border-radius:4px;
    font-size:14px;
    outline:none;
    background:#fff;
}

.second-step-form input:focus, select:focus{
    border-color:#666;
}

hr{
    border:none;
    border-top:1px dotted #aaa;
    margin:30px 0;
}
.second-step-form .error{
    color:#C41230;
    font-size:12px;
    margin-top:4px;
    display:none;
}

.second-step-form .input-error{
    border:1px solid #C41230 !important;
}
.next-btn i{
    font-size: 30px;
}
.next-btn{
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 55px !important;
}
.next-btn span{
    padding-right: 15px;
    display: inline-block;
}
.next-btn,
.submit-btn, .back-btn{
    width:auto;
    margin: 0 auto;
    margin-top:20px;
    padding:12px 35px;
    background:#d6002a;
    color:#fff;
    border:none;
    border-radius:40px;
    cursor:pointer;
}

.btn-row{
    display:flex;
    gap:10px;
    margin-top:20px;
}

/************************************/
/*** 	    Thank You         ***/
/************************************/
.thank-you-header {
    text-align: center;
    padding: 185px 20px 40px;
    /* background: linear-gradient(135deg, #7fd3d6 0%, #4a9fa2 100%); */
    background: #7fcfd6;
    color: white;
    border-radius: 0px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thank-you-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.thank-you-header .subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Status Messages */
.status-message {
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.status-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    color: #155724;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.status-pending {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    color: #856404;
}

/* Summary Cards */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.summary-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.summary-card h3 {
    color: #4a9fa2;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    font-size: 22px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #6c757d;
    font-weight: 500;
}

.detail-value {
    font-weight: 600;
    color: #212529;
}

.donation-amount {
    font-size: 32px !important;
    color: #28a745 !important;
}

/* Special Sections */
.gift-aid-info {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
        max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.gift-aid-info h4 {
    color: #856404;
    margin-bottom: 10px;
}

.gift-aid-info p {
    color: #856404;
    margin-bottom: 0;
}

.special-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #dee2e6;
}

.special-info h4 {
    color: #4a9fa2;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bank-details {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.bank-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.bank-detail-row:last-child {
    border-bottom: none;
}

.bank-label {
    font-weight: 600;
    color: #6c757d;
}

.bank-value {
    font-weight: 700;
    color: #212529;
}

/* Next Steps */
.next-steps {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.next-steps h3 {
    color: #4a9fa2;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    border-bottom: 1px solid #f8f9fa;
}

.steps-list li:last-child {
    border-bottom: none;
}

.steps-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 15px;
    width: 28px;
    height: 28px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Contact Info */
.contact-info {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.contact-info h3 {
    color: #4a9fa2;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-icon {
    font-size: 32px;
    color: #4a9fa2;
    margin-bottom: 10px;
}

.contact-item p {
    margin: 0;
    font-weight: 700;
    color: #2f3b40;
    font-size: 16px;
}

.contact-item a {
    color: #4a9fa2;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 70px;
}

.donation-btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.donation-btn-primary {
    background: linear-gradient(135deg, #7fd3d6 0%, #4a9fa2 100%);
    color: white !important;
}

.donation-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(127, 211, 214, 0.4);
}

.donation-btn-secondary {
    background: white;
    color: #4a9fa2;
    border: 2px solid #4a9fa2;
}

.donation-btn-secondary:hover {
    background: #4a9fa2;
    color: white;
}

/* PayPal Processing */
.paypal-processing {
    background: linear-gradient(135deg, #cce5ff 0%, #b8daff 100%);
    border-left: 4px solid #007bff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.paypal-processing h4 {
    color: #004085;
    margin-bottom: 10px;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



















/************************************/
/***       Responsive Css     	 ***/
/************************************/
@media(min-width:992px){

}

@media only screen and (max-width: 1300px){

	
}
 @media (max-width: 1199px) {

}
@media only screen and (max-width: 1024px){
	
	
}

@media only screen and (max-width: 991px){


}

@media only screen and (max-width: 767px){
.banner_text{
    text-align: center;
}
.banner_text h1{
    font-size: 42px;
}
.banner_text h2 {
    font-size: 35px;
    margin-top: 21px;
}
.step-line {
    width: 80px;
}
.pay-box img{
    max-width: 150px;
}
.section_head h2 {
        font-size: 30px;
    }
.am-wrap {
    flex-wrap: wrap;
    justify-content: center;
}
.donation-type{
    padding: 15px;
    display: block;
}
.donation-type label{
    padding-bottom: 15px;
}
.payment-row{
    display: block;
}
.pay-box {
    font-size: 18px;
    min-height: 75px;
}
.giftaid-logo {
    max-width: 150px;
}
.am-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
.c-radio {
        width: 46%;
        max-width: 46%;
    }
.c-radio [type="radio"]:checked + label, .c-radio [type="radio"]:not(:checked) + label {
        width: 100%;
    }
.step_one .c-radio [type="radio"]:checked + label, .step_one .c-radio [type="radio"]:not(:checked) + label {
        font-size: 48px;
        padding: 7px;
    }
    .thank-you-header h1 {
        font-size: 32px;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .donation-btn {
        width: 100%;
        justify-content: center;
    }

.status-success, .summary-grid, .gift-aid-info, .next-steps, .contact-info, .action-buttons{
    margin: 0 20px;
    margin-bottom: 40px;
}
.thank-you-header {
    padding: 100px 20px 40px;
}


    
}

@media(max-width: 410px){

  
}

@media only screen and (max-width: 500px){
    
}
