body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #e0e1dd;
    /* background-color: #00296b; */
    background-color: black;
    margin: 0;
    padding: 0;
    padding-top: 60px;
    /* Adjust this based on your navbar height */
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Loading Animation */

   /* Preloader (Full screen loading spinner) */
   .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Custom Spinner Animation */
.spinner {
    width: 44px;
    height: 44px;
    animation: spinner-y0fdc1 2s infinite ease;
    transform-style: preserve-3d;
}

.spinner > div {
    background-color: rgba(0, 255, 255, 0.3);
    height: 100%;
    position: absolute;
    width: 100%;
    border: 2px solid #00ffff;
    box-shadow: 0px 4px 8px rgba(0, 255, 255, 0.5);
}

/* Spinner specific rotations */
.spinner div:nth-of-type(1) {
    transform: translateZ(-22px) rotateY(180deg);
}

.spinner div:nth-of-type(2) {
    transform: rotateY(-270deg) translateX(50%);
    transform-origin: top right;
}

.spinner div:nth-of-type(3) {
    transform: rotateY(270deg) translateX(-50%);
    transform-origin: center left;
}

.spinner div:nth-of-type(4) {
    transform: rotateX(90deg) translateY(-50%);
    transform-origin: top center;
}

.spinner div:nth-of-type(5) {
    transform: rotateX(-90deg) translateY(50%);
    transform-origin: bottom center;
}

.spinner div:nth-of-type(6) {
    transform: translateZ(22px);
}

@keyframes spinner-y0fdc1 {
    0% {
        transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
    }

    50% {
        transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
    }

    100% {
        transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
    }
}

/* loading animation end */


.wat{
    display: inline-flex; 
    align-items: center; 
    text-decoration: none; 
    padding: 10px 15px; 
    background-color: #25D366; 
    color: white; 
    font-size: 16px; 
    font-weight: bold; 
    border-radius: 5px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    transition: all 0.3s ease;
}
.wat:hover{
    background-color: #25D366; 
    color: white; 
}
/* Dark Mode */
.nb-c {
    background-color: black !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-logo {
    width: 55px;
    height: auto;
}

/* .offcanvas {
    border: 2px solid white;
    background-color: transparent;
} */

.offcanvas-footer {
    margin-top: 1rem;
}

/* Hero Section */


#home {
    max-width: 1200px;
    /* margin: 2rem auto; */
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.content {
    flex: 1;
    min-width: 300px;
    margin: 1rem;
}

.content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(67, 97, 238, 0.7);
}

.content h1 span {
    color: #00ffff;
}

.typewriter-text {
    color: #00eaff;
    font-weight: bold;
    text-shadow: 1px 1px 8px rgba(0, 234, 255, 0.6);
}

.content p {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #cfd8dc;
    line-height: 1.6;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 5px;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: #fff;
    box-shadow: 0 3px 10px rgba(37, 117, 252, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.8);
}

.btn-get-started,
.btn-watch-now {
    margin-right: 10px;
    padding: 12px 25px;
    font-size: 1.2rem;
    border-radius: 50px;
    color: #fff;
    background: transparent;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    margin-top: 5%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-get-started {
    border: 2px solid #4361ee;
    box-shadow: 0 0 8px #4361ee, 0 0 15px #4361ee;
}

.btn-get-started:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px #4361ee, 0 0 20px #2575fc;
}

.btn-watch-now {
    border: 2px solid #ff758c;
    box-shadow: 0 0 8px #ff758c, 0 0 15px #ff758c;
}

.btn-watch-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px #ff758c, 0 0 20px #ff7eb3;
}

.image img {
    border-radius: 50%;
    max-width: 70%;
    margin-left: 15%;
    border: 10px double aqua;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.7);
}

@media (max-width: 1050px) {
    #home {
        flex-direction: column;
    }

    .content {
        text-align: center;
        /* Center-align text */
    }

    .image {
        order: -1;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 2.5rem;
    }

    .btn-get-started,
    .btn-watch-now {
        margin-bottom: 10px;
    }

    .image img {
        max-width: 80%;
        margin-left: 10%;
    }
}


/* About me section */
.col {
    flex: 1;
    min-width: 300px;
    margin: 1rem;
}

.col h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(67, 97, 238, 0.7);
}

.col h1 span {
    color: #00ffff;
}

#about .image-container {
    border: 10px double aqua;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
    padding: 10px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

#about .image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.7);
}

#about h2 span {
    color: #ffc107;
    /* Yellow color */
}

#about ul {
    line-height: 1.8;
}

#about ul li {
    margin-bottom: 8px;
}

.btn-warning {
    background-color: #ffc107;
    border: none;
    font-weight: bold;
    color: #000;
}

.btn-warning:hover {
    background-color: #e0a800;
    color: #fff;
}

.bg-dark {
    background-color: #222 !important;
}

/* Skill Section */

.circle-container {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping of circles */
    justify-content: center;
    gap: 120px;
    margin-top: 100px;
    /* height: 40vh; */
}

.circle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Align the circle and text */
}

.circle-skill-bar {
    width: 155px;
    height: 155px;
    border-radius: 100%;
    background: conic-gradient(aqua 0% 10%, #e0e0e0 10% 100%);
    /* Adjusted to make the aqua line thin */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    position: relative;
}

.circle-skill-bar::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: white;
    z-index: 1;
}

.percentage {
    z-index: 2;
}


h6 {
    margin-top: 10px;
    /* Space between the circle and the text */
    font-size: 14px;
    color: white;
}


/* Services Section */

.services-section {
    padding: 80px 0;
    height: 50%;
    text-align: center;
    cursor: pointer;
}
.services-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.services-section h1 span {
    color: #8b5cf6;
}
.services-section p {
    color: #94a3b8;
    margin-bottom: 50px;
}
.service-card {
    border: 1px solid aqua;
    padding: 30px;
    /* border-radius: 10px; */
    background-color: transparent;
    transition: all 0.3s ease;
    width: 300px;  /* Set the width of the card */
    height: 280px; /* Set the height of the card */
    margin: 0 auto; /* Centers the card within its column */
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.service-card i {
    font-size: 2.5rem;
    color: #8b5cf6;
    margin-bottom: 20px;
}
.service-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.service-card p {
    color: #94a3b8;
}


/* Conttact Section */

.contact-container {
    margin: 50px auto;
    color: #343a40;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.contact-container h2 {
    font-size: 28px;
    text-align: center;
    color: #007bff;
}

.form-control {
    border: none;
    border-bottom: 2px solid #dee2e6;
    background-color: transparent;
    border-radius: 0;
    padding-left: 0;
    color: white;
    box-shadow: none;
    transition: border-color 0.3s ease-in-out;
}

.form-label {
    color: white;
    font-weight: bold;
}

.form-control:focus {
    color: white;
    background-color: transparent;
    border-bottom: 2px solid aqua;
    outline: none;
    box-shadow: none;
}

.form-control::placeholder {
    color: white;
    opacity: 0.7;
}

.submit-btn {
    background-color: #007bff;
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.button-group{
    display: flex;
    gap: 10px;
    justify-content: right;
}
@media (max-width: 472px) {
    .button-group {
        flex-wrap: wrap;
    }
    #whatsapp-link{
        margin-top: 10px;
    }
}

#whatsapp-link {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

#whatsapp-link:hover {
    background-color: #1da851;
}
