body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1b202d; /* Updated background color */
    color: #fff;
}

header {
    background-color: #333;
    padding: 10px;
}
  
main {
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-section {
    margin-top: 30px;
}

.about-content {
    flex: 1;
    max-width: 80%;
    margin-bottom: 20px;
    margin-right: 20px;
}

.about-image {
    flex: 0.5;
    max-width: 80%;
    position: relative;
    display: flex;
    justify-content: center;
    /* overflow: hidden; */
}

.about-image img {
    width: 80%;
    height: auto;
    transition: transform 0.3s ease;
}

h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

p {
    font-size: 18px;
    line-height: 1.6;
}

.column_column {
    animation: fadeInRight 1s;
}

.column_icon_box {
    animation: fadeInDown 1s;
}

/* Media query for screens with a maximum width of 768px (e.g., tablets and smartphones) */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .about-content, .about-image {
        flex: 1;
        max-width: 100%;
    }
}

/* Add some boundary to the image */
.about-image img {
    width: 100%;
    height: auto;
    border: 5px solid #fff;
    transition: border 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.7); /* Adding a shadow effect */
    border: 1.5px solid #ffcc00;
    border-radius: 10px;
}

/* Add a short boundary to the container */
.container {
    padding: 20px;
    border: 5px solid #ffcc00;
    border-radius: 20px; /* Add some border radius for a rounded look */
}

/* Styling for the "About Us" heading */
.about-content h2 {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase; /* Convert the text to uppercase */
    color: #ffcc00; /* Change the heading color */
}

/* Styling for the paragraph */
.about-content p {
    font-size: 20px;
    line-height: 1.8;
    text-align: justify; /* Justify the text */
}

/* Add hover effect to the social icons */
.social {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social i {
    color: #fff;
    font-size: 30px;
    margin: 0 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social a.icon {
    display: inline-block;
    margin: 0 5px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 60px;
    background-color: #1708ee;
    border-radius: 40%;
    transition: background-color 0.3s ease;
}

.social a.icon:hover {
    background-color: #ffcc00;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation for fadeInDown effect */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* todo GLowing Button Coding */
a.button{
    position: relative;
    display: inline-block;
    padding: 25px 30px;
    margin: 40px 0;
    color: #03e9f4;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    letter-spacing: 4px;
    overflow: hidden;
    margin-right: 50px;
   
}
a.button:hover{
    background: #03e9f4;
    color: #050801;
    box-shadow: 0 0 5px #03e9f4,
                0 0 25px #03e9f4,
                0 0 50px #03e9f4,
                0 0 200px #03e9f4;
     -webkit-box-reflect:below 1px linear-gradient(transparent, #0005);
}
a.button:nth-child(1){
    filter: hue-rotate(270deg);
}
a.button:nth-child(2){
    filter: hue-rotate(110deg);
}
a.button span{
    position: absolute;
    display: block;
}
a.button span:nth-child(1){
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,transparent,#03e9f4);
    animation: animate1 1s linear infinite;
}
@keyframes animate1{
    0%{
        left: -100%;
    }
    50%,100%{
        left: 100%;
    }
}
a.button span:nth-child(2){
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,transparent,#03e9f4);
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
}
@keyframes animate2{
    0%{
        top: -100%;
    }
    50%,100%{
        top: 100%;
    }
}
a.button span:nth-child(3){
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg,transparent,#03e9f4);
    animation: animate3 1s linear infinite;
    animation-delay: 0.50s;
}
@keyframes animate3{
    0%{
        right: -100%;
    }
    50%,100%{
        right: 100%;
    }
}


a.button span:nth-child(4){
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg,transparent,#03e9f4);
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
}
@keyframes animate4{
    0%{
        bottom: -100%;
    }
    50%,100%{
        bottom: 100%;
    }
}
.navbar {
    position: absolute;
    top: -25px;
    right: 10px;
    display: flex;
    z-index: 100; /* Ensure the navbar is on top of other content */
}

.navbar a {
    color: #03e9f4;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    letter-spacing: 4px;
    overflow: hidden;
    margin-right: 15px;
    position: relative;
    padding: 5px 6px; /* Adjust padding for better visibility */
}

.navbar a:hover {
    background: #03e9f4;
    color: #050801;
    box-shadow: 0 0 5px #03e9f4,
                0 0 25px #03e9f4,
                0 0 50px #03e9f4,
                0 0 200px #03e9f4;
    -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
}
