@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* root colors defined */
:root {
    --primary-color: rgb(79, 79, 221);
    --primary-light-color: rgb(114, 114, 223);
    --success-color: rgb(25, 180, 25);
    --success-light-color: rgb(163, 255, 163);
    --dark-color: rgb(23, 19, 19);
    --grey-color: #C2C3C4;
    --orange-color: #EE8067;
    --body-color: rgb(56, 66, 56);
    --light-color: #fff;

    --tans-02: all 0.2s ease;
    --tans-03: all 0.3s ease;
    --tans-04: all 0.4s ease;
    --tans-05: all 0.5s ease;

    --box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.2);
}

/* body definition style */
body {
    font-family: 'Poppins'sans-serif;
    line-height: 1.7;
    color: var(--body-color);
}


/* Global styles for all headings */
h1, h2, h3, h4 {
    color: var(--body-color);
    /* Text color */
    font-family: 'Poppins', sans-serif;
    /* Font family */
    margin-bottom: 10px;
    font-weight: 600;
    /* Bottom margin */
}

/* Style for h1 */
h1 {
    font-size: 36px;
    /* Font size */
    font-weight: bold;
    /* Font weight */
}

/* Style for h2 */
h2 {
    font-size: 28px;
    font-weight: bold;
}

/* Style for h3 */
h3 {
    font-size: 22px;
    font-weight: bold;
}

/* Style for h4 */
h4 {
    font-size: 18px;
    font-weight: bold;
}

/* other styles a tag*/
a {
    text-decoration: none;
}

/* other styles ul li tag*/
ul, li {
    text-decoration: none;
    list-style: none;
}

a:hover {
    color: var(--success-color);
    /* Change text color on hover */
    /* Add underline on hover */
    transition: color var(--tans-05);
    /* Add a smooth color transition */
    background-color: #f0f0f0;
    /* Add a background color on hover */
    border-radius: 5px;
    /* Add rounded corners */

}

.navbar {
    box-sizing: border-box;
    box-shadow: var(--box-shadow)
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--success-color);
    padding: 5px;
    margin: 5px;
}

.navbar-nav .nav-link.active {
    background: green;
    border-radius: 5px;
    color: var(--light-color)
}

/* Override Bootstrap styles for navbar-toggler button */
.navbar-toggler {
    border: none;
    box-shadow: none;
}




.btn-outline-white {
    color: #fff;
    /* Text color */
    background-color: rgb(163, 255, 163) transparent;
    /* Transparent background */
    border: 1px solid #fff;
    /* White border */
    padding: 10px 20px;
    /* Adjust padding as needed */
    text-decoration: none;
    /* Remove default link underline */
    display: inline-block;
    /* Make the button a block element */
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    /* Add smooth transitions */
}

/* header styles */
#head {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;

}



#head::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
}

.contents {
    color: #fbfcfd;
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
}

.contents small {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 40px;
    color: #ffb55a;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    /* Add more styles as needed */
}

.contents h1 {
    font-size: 70px;
    margin: 10px 0 30px;

}

.contents h3 {
    font-size: 18px;
    margin: 5px auto;
    color: rgb(85, 75, 75);
    font-weight: 300;

}

.contents a {
    color: #fbfcfd;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid #de6060;
    border-radius: 20px;
    outline: none;
    cursor: pointer;

}

.contents a:active {
    background-color: #05ae9d;
}

.contents a:hover {
    background: none;

}


.side-bar {
    width: 50px;
    height: 100vh;
    background: linear-gradient(#05786d, #07201d);
    position: absolute;
    right: 0;
    top: 0;
}

.social-links {
    position: relative;
    top: 25%;
    transform: translateY(-50%);
    line-height: 30px;

}

.social-links a {
    color: #fbfcfd;
    width: 25px;
    margin: 5px auto;
    cursor: pointer;
    background: none;

}

.social-links a:hover {
    cursor: pointer;


}


.bubbles img {
    width: 50px;
    animation: bubble 7s linear infinite;
}

.bubbles {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: -70px;

}

@keyframes bubble {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    50% {

        opacity: 1;
    }

    70% {

        opacity: 1;
    }

    100% {
        transform: translateY(-80vh);
        opacity: 0;
    }

}


.bubbles img:nth-child(1) {
    animation-delay: 2s;
    width: 30px;
}

.bubbles img:nth-child(2) {
    animation-delay: 1s;
    width: 25px;
}

.bubbles img:nth-child(3) {
    animation-delay: 3s;
    width: 30px;
}

.bubbles img:nth-child(4) {
    animation-delay: 4.5s;
    width: 20px;
}

.bubbles img:nth-child(5) {
    animation-delay: 3s;
    width: 25px;
}

.bubbles img:nth-child(6) {
    animation-delay: 6s;
}

.bubbles img:nth-child(7) {
    animation-delay: 7s;

    width: 30px;
}


.section-title {
    margin-bottom: 40px;
}

.section-title line {
    width: 60px;
    height: 4px;

}

.section-title h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 16px auto 24px auto;
    transition: transform 0.3s ease-in-out;
}

.section-title h3:hover {
    transform: scale(1.1);
    /* Adjust the scale factor to control the amount of growth */
}

.section-title p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.4s ease-in-out;
}

.section-title p:hover {
    transform: scale(1.1);
    /* Adjust the scale factor to control the amount of growth */
}

.img-about img {
    width: 520px;
    height: 100%;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    
    .contents {
        padding: 0px 40px 6px 0px;

    }

    .contents small{
        font-size: 24px;
    }

    .abt-small{
        text-align: justify;
        font-size: 15px;
    }

    .respons .contents {
        width: 80%;
    }

    #head h1 {
        font-size: 24px;
    }

    #head h5 {
        padding-bottom: 10px;
    }

    #head p {
        padding-top: 10px;
    }

    .img-about img {
        width: 320px;
        display: block;
        margin: auto;
        margin-bottom: 20px;
        align-items: center;
        justify-content: center;
    }

  .cards img{
    display: none;
  }

    .title-about {
        text-align: center;
    }

    .title-vision {
        text-align: center;
    }

    .title-about h3{
        font-size: 20px;
        text-align: center;
        bottom:-5px;
        color: rgb(196, 128, 3);
    }

    footer{
        font-size:18px;
    }
    .footer-link .bx{
        font-size: 23px;
    }
    .footent-link1 .bx{
        font-size: 23px;
    }

  

  
  
}

.icon-box {
    width: 50px;
    height: 40px;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--success-light-color);
    color: #2b2929;
    flex: none;
}


.vision{
    background-color: #eaeef2;
}



.caption {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-about h3{
 
    color: rgb(196, 128, 3);
}

/* Add your additional styles here */

/* Optional: Add styles for the btns class */
.btns {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: 1s;
}

.display-4 .cards {
    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.cards {
    width: 100%;
    background: linear-gradient(225deg, hsla(172, 93%, 71%, 1) 0%, hsla(173, 100%, 42%, 1) 50%);
    padding: 30px;

}

.cards h3{
    color: #fefefe;
}

.cards img {
    width: 450px;
}

.icon-boxs {
    width: 50px;
    height: 40px;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light-color);
    color: #fefefe;
    flex: none;
}

.text-card p.lead{
    color: aliceblue;
    font-weight: 300;
    font-size:18px;
    font-family: serif;
}


.copyright{
    background-color:rgb(23, 70, 42);
}

.footer-link a:hover{
    background: none;
}


