  /* fonts from google */
  
    .title-playfair {
      font-family: 'Playfair Display', serif;
    
    }

    .title-bebas {
      font-family: 'Bebas Neue', sans-serif;
    
    }

    .title-poppins {
      font-family: 'Poppins', sans-serif;
    
    }
  
  
    .hero {
      height: 100vh;
      position: relative;
    }

   

 

    .animated-text {
      animation: fadeIn 2s ease-in-out;
    }

    @keyframes fadeIn {
      0% {
        opacity: 0; 
      }
      100% {
        opacity: 1;
      }
    }
    
    

 :root {
            --primary-color: #3498db;
            --secondary-color: #2980b9;
            --accent-color: #e74c3c;
            --dark-color: #2c3e50;
            --light-color: #ecf0f1;
            --text-color: #333;
            --text-light: #777;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
               font-family: 'Montserrat', sans-serif;
            
            
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            
        }


 /* About Section */
        .about {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: crimson;
            margin: 15px auto 0;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        /* Campaign Sections */
        .campaign-section {
            padding: 80px 0;
        }
        
        .campaign-section:nth-child(even) {
            background-color: var(--light-color);
        }
        
        .campaign-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .campaign-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .campaign-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .card-image {
            height: 300px;
            overflow: hidden;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .campaign-card:hover .card-image img {
            transform: scale(1.05);
        }
        
        .card-content {
            padding: 20px;
        }
        
        .card-content h3 {
            color: var(--secondary-color);
        }
        
        .card-content p {
            color: var(--text-light);
            margin: 10px 0 15px;
        }
        
        
        
        /* Donation Section */
        .donation {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            text-align: center;
        }
        
        .donation h2 {
            color: white;
        }
        
        .donation p {
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
            background-color: white;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--light-color);
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: var(--secondary-color);
        }
        
        /* Social Media */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .social-link:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: crimson;
            text-align: center;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bbb;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbb;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--secondary-color);
        }
        
       
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        
        .modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: white;
            max-width: 800px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            border-radius: 8px;
            position: relative;
            padding: 20px;
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-light);
        }

/* form */
        
                .form-wrapper {
            background-color: rgb(76, 174, 76);
            padding: 15px;
            border-radius: 15px;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
            width: 100%;
            
        }

        .form-wrapper h2 {
            text-align: center;
            color: #2980b9;
            margin-bottom: 20px;
            width:90%
        }

        .form-input-group {
            margin-bottom: 15px;
            position: relative;
        }

        .form-input-group input,
        .form-input-group textarea {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 10px;
            font-size: 14px;
            width: 90%;
            outline: none;
            background: #fff;
        }

        .form-input-group textarea {
            resize: none;
            height: 80px;
        }

        .form-button-container {
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;
        }

        .form-button-container input[type="button"] {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: #fff;
            font-size: 16px;
            border: none;
            cursor: pointer;
            padding: 12px 20px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .form-button-submit {
            background-color: #01243c;
        }

        .form-button-submit:hover {
            background-color: #1e6fa5;
        }

        .form-button-sms {
            background-color: crimson;
        }

        .form-button-sms:hover {
            background-color: #74d927;
        }

        .form-separator {
            color: #2980b9;
            font-weight: bold;
        }
/* end of inserted  external css */

header{
    width: 100vw;
    height: 100vh;
    display: flex;
justify-content: center;
align-items: flex-end;
}


 .background-image {
     
      transition: background-image 1s ease-in-out;
  
    background-image: url(./gallery/see.jpg);
background-size: cover;
background-position: bottom;

}
   .text-container {
    align-items: center;
   
    color: ghostwhite;
    
}

.line{
    width: 150px;
    height: 3px;
    border-radius: 5px;
    margin:2% auto;
background-color: crimson;}

.line2{
    margin-left: 15%;
    width: 50px;
    height: 2px;
    border-radius: 5px;
background-color: crimson;
margin-bottom: 2%;
}
.line3{
    margin-left: 8%;
    width: 40px;
    height:1px;
    border-radius: 5px;
background-color: crimson;
margin-bottom: 1%;
}


   .text-container h1{
    font-size: 8vmin;
              
           
    margin-bottom: 10px;
    text-align: center;
    justify-items: center;
}
   .text-container h2 {
                 font-family: 'roboto', 'Montserrat', sans-serif;
            
    font-size:5vmin ;
    margin-bottom: 10px;
}

   .text-container h3{ 
                 font-family: 'roboto', 'Montserrat', sans-serif;
           
    font-size: 3vmin;
margin-bottom: 4%;
margin-top: 10px;
margin-right: 10%;
text-align: right;

    
}

       .text-container h4 { 
                    font-family: 'roboto', 'Montserrat', sans-serif;
           
        font-size: 4vmin;
    }
         .text-container h5 {
                     font-family: 'roboto', 'Montserrat', sans-serif;
           margin-top: 5px;
           margin-bottom: 5px;
        font-size: 2vmin;
        color: rgb(46, 33, 19);
        display: grid;
    text-align: center;
    }
    .button{
        padding:8px 15px;
    border-radius: 30px;
    color: whitesmoke;
    background-color:crimson ;}
  
.button1 {
        padding: 8px;
    border-radius: 30px;
    color: whitesmoke;
    background-color:crimson ;
    margin: 20px 40%;
 text-align: center;
 width: 100px;
}
.button1:hover{
      transform: scale(1.05);
    border-radius: 6px;

color: crimson;
text-align: right;
padding: 5px;
animation: all 0.5s ease;
}
.Hover{
    padding: 1px;
}
.Hover:hover{
   transform: scale(1.05);
    border-radius: 6px;

color: crimson;
text-align: right;
padding: 5px;
animation: all 1s ease;
}
a{
    text-decoration: none;
    color: whitesmoke  ;
    
}
ul {
    list-style: none;
}
.logo{
    display: flex;
    position:absolute;
    top: 0;
    left: 0;
}
.nav-bar{
display: flex;
position:fixed;
top: 0;
left: 0;
width: 100%;
justify-content: space-between;
padding: 20px;
color: whitesmoke;
}
.nav-links{
         font-family: 'Righteous', cursive;
    display: flex;
align-items: center; 
 animation: all 0.5s ease;
}
.nav-links li a {
    color: lightsteelblue;
}
.nav-links li {
    
    margin: 0 30px;
    position: inherit;
     animation: all 0.5s ease;
}
.nav-links h1{
    position: fixed;
    top: 0;
    right: 10%;
}
.nav-links:active {
    background-color: crimson;
    text-decoration: underline;
    font-weight: bold;
}
.nav-links li:hover{
     transform: scale(1.91);
    border-radius: 6px;

background-color: crimson;
text-align: right;
padding: 5px;
font-size: 5vmin;
animation: all 1s ease;
}
.menu-btn {
    position: absolute;
    top: 10%;
    right: 7%;
    width: 35px;
    cursor: pointer;
    display: none;
}
.menu-btn:hover{
     transform: scale(1.91);
    border-radius: 6px;

background-color: crimson;
text-align: right;
padding: 5px;
font-size: 5vmin;
animation: all 0.5s ease;
}


.act:hover{
     transform: scale(1.17);
    border-radius: 6px;

background-color: crimson;

padding: 5px;

animation: all 1s ease-in-out;
}
section{
    
    width: 80%;
    margin: 30px auto;

}
section h1{
    font-size:5vmin ;
    margin-bottom: 10px;
     align-items: center;
    color: darkslateblue;
    text-align: center;
}
section div img{
    width: 100%;
}
section div h1{
    color: cornflowerblue;
    font-size: 4vmin;
       margin-top: 6%;
}
section div p{
    color: darkgray;
}
.container1{

     width: 100%;
    margin: 30px auto;
}
.container1 img{
    margin-top: 6%;
    max-width: 100%;
    }

.container1 h1{
    color: cornflowerblue;
    font-size: 4vmin;
    text-align: center;
    margin-top: 70px;
    
}
.container1 p{
    color: rgb(23, 38, 39);
}

 .grid {
   width: 80%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    justify-content:center;
    align-content:space-around;
    grid-gap: 20px 40px;
}

.grid1{
    display: grid ;
grid-template-columns: 3fr 1fr;
grid-gap: 50px 50px;
justify-content: space-between;
align-content:space-between;
margin-top: 3%;
}
 

/* Shuffle Carousel settings*/
.carousel-container {
position: relative;
width: 0px;
height: 0px;
overflow: hidden;
;
}

.carousel {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.carousel-item {
position: absolute;
top: 0;
left: 100%;
width: 100%;
height: 100%;
transition: left 1s;
}

.carousel-item img {
width: 100%;
height: 80%;
object-fit: cover;
}

.carousel-item a {
text-decoration: none;
color: blue;
}

.carousel-item p {
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
}

.carousel-item.active {
left: 0;
}

.carousel-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100%;
display: flex;
justify-content: space-between;
}

.prev-btn, .next-btn {
background-color: transparent;
border: none;
cursor: pointer;
font-size: 24px;
padding: 10px;
}

.prev-btn:hover, .next-btn:hover {
background-color: rgba(0, 0, 0, 0.2);
}




/*mobile devices*/ 

@media only screen and (max-width:850px){
    .navbar{padding: 0;
        margin:0;
        
    }
    .logo{
        position: relative;
        top: 30px;
        left: 50px;
        width: 245px;
        height: 240px;  
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        justify-content: center;
        background:rgb(43, 161, 180); 
        margin-top: -900px;
        transition: all 0.5s ease;
    }
    .mobile-menu{ 
        margin-top: 0px;
        border-bottom-right-radius: 30%;
    }
    .menu-btn{display: block;}

    .nav-links li {
        margin:30px auto;
    } 
.line{
    width: 150px;
    height: 5px;
    border-radius: 5px;
    margin:3% auto 4% auto;
background-color: crimson;}

   .text-container h1{
    font-size: 8vmin;
    margin-top: 5px;
    margin-bottom: 10px;
    text-align: center;
    justify-items: center;
}
.nav-links h1{
    position: relative;
    ;
}
.grid{
    
    display: grid;
text-align: center;
    grid-template-columns:  1fr 1fr ;
        justify-content:space-around;
    align-content: center;
    grid-gap: 20px 40px;
}

/* Shuffle Carousel settings*/
.carousel-container {
position: relative;
width: 100%;
height: 400px;
overflow: hidden;
;
}

.carousel {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.carousel-item {
position: absolute;
top: 0;
left: 100%;
width: 100%;
height: 100%;
transition: left 1s;
}

.carousel-item img {
width: 100%;
height: 80%;
object-fit: cover;
}

.carousel-item a {
text-decoration: none;
color: blue;
}

.carousel-item p {
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
}

.carousel-item.active {
left: 0;
}

.carousel-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100%;
display: flex;
justify-content: space-between;
}

.prev-btn, .next-btn {
background-color: transparent;
border: none;
cursor: pointer;
font-size: 24px;
padding: 10px;
}

.prev-btn:hover, .next-btn:hover {
background-color: rgba(0, 0, 0, 0.2);
}



}

 /*whatsapp*/
    
@keyframes slideInFromRight {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.whatsapp-container {
    font-family: Arial, sans-serif;
    padding: 20px;
}

.whatsapp-home-icon {
    position: fixed;
    top: 80%;
    left: 5%;
    font-size: 50px;
    color: #25D366;
    cursor: pointer;
    display: flex;
    align-items: center;
    opacity: 0; /* Initially hidden */
    animation: slideInFromRight 0.5s ease forwards; /* Apply animation */
    
}

.whatsapp-home-icon span {
    margin-left: 10px;
    font-size: 16px;
    color:#25D366 ;
}
        #whatsapp-popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 47.2%;
            transform: translate(-50%, -50%);
            width: 320px;
            height: 480px;
            background-color: #ffffff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            overflow: hidden;
            z-index: 1000;
            flex-direction: column;
        }
        .chat-header {
            background-color: #075E54;
            color: white;
            padding: 15px;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .chat-header img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
        }
        .chat-header .status {
            font-size: 14px;
            color: #D5F5E3;
            position: absolute;
            top: 10%;
            right: 50%;
        }
        .chat-header .close-popup {
            cursor: pointer;
            font-size: 20px;
            color: white;
        }
        .chat-messages {
            flex: 1;
            padding: 10px;
            overflow-y: auto;
            background-color: #ece5dd;
        }
        .message {
            display: flex;
            align-items: flex-start;
            margin: 10px 0;
            max-width: 70%;
        }
        .message img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-right: 10px;
        }
        .message-bubble {
            padding: 10px;
            border-radius: 10px;
            background-color: white;
            display: inline-block;
            position: relative;
        }
        .message.sent {
            margin-left: auto;
            position: relative;
        }
        .message.sent .blue-tick {
            font-size: 12px;
            color: #34B7F1; /* WhatsApp blue tick color */
            position: absolute;
            bottom: 5px;
            left: -15px;
        }
        .message.sent .message-bubble {
            background-color: #DCF8C6;
        }
        .chat-footer {
            display: flex;
            padding: 10px;
            background-color: white;
            border-top: 1px solid #ddd;
            align-items: center;
        }
        .chat-footer input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 20px;
            background-color: #f0f0f0;
            margin-right: 10px;
            outline: none;
        }
        .chat-footer button {
            background-color: #075E54;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 20px;
            cursor: pointer;
        }
        .emoji-icon {
            font-size: 24px;
            color: #075E54;
            margin-right: 10px;
            cursor: pointer;
        }
        .emoji-popup {
            display: none;
            position: absolute;
            bottom: 60px;
            left: 20px;
            background: white;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            z-index: 1001;
        }
        .emoji-popup span {
            font-size: 24px;
            cursor: pointer;
            margin: 5px;
        }
        .typing {
            display: inline-block;
            overflow: hidden;
            white-space: nowrap;
            animation: typing 3s steps(30, end), blink-caret 0.5s step-end infinite;
        }
        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }
        @keyframes blink-caret {
            from, to { border-right: 2px solid transparent; }
            50% { border-right: 2px solid black; }
        }
        
        /* Scroll to top */
    .back-btn {
      opacity: 0.3;
        position: fixed;
        bottom: 2%;
        right: -100%;
        width: 50px;
        height: 50px;
        text-align: center;
        line-height: 15px;
        background: rgba(0,0,0,0.177);
        color:crimson;
        cursor: pointer;
        z-index: 5;
        box-shadow: 4px 4px 6px rgb(0, 0, 0, .4);
        border-radius: 50%;
        font-size: 14px;
        transition: all .4s;
    }

    .back-btn.active {
        right: 20px;
    }
    .img11{
        width: 100%;
        margin: 0;
        padding: 0;
    }


     #toggle-icon {
      position: fixed;
      bottom:10%;
      left: 20px;
      font-size: 36px;
      color: #ffffffcc;
      cursor: pointer;
      z-index: 1000;
    }

    #toggle-icon:hover {
      color: #ffffff;
    }
    