
/* Home Section */
.homep {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    height: 100vh; /* Full height */
}

/* Navbar */
.navbar-nav a,
.Head {
    color: white;
    margin-left: 1rem;
}

.navbar-nav {
    margin-left: 15rem;
    font-size: 1.3rem;
}

.navbar-nav a:hover {
    color: rgb(218, 147, 46) !important;
    font-weight: bolder;
    /* transform: scale(130%) !important; */
}

/* Text Section */
.hello {
    color: rgb(255, 255, 255) !important;
    margin-left: 2rem;
    font-size: 1.7rem;
}

.intro {
    margin-right: 5rem;
    text-align: left;
}

.name {
    color: white !important;
    font-size: 7rem !important;
    line-height: 1.2 !important;
}

.info {
    color: white;
    font-size: 3rem;
    margin-left: 1.8rem;
}

.name span {
    color: rgb(204, 134, 21);
    font-size: 6rem;
}
.intro-text {
    padding: 2rem;
    line-height: 1.6;
    margin: 2rem auto;
    width: 80%;
}
span {
    color: #d279da;
    /* font-size: 2rem; */
    font-weight: 600;
}
.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: justify;
}

.intro-text p{
    font-size: 1rem !important;
}
/* Image Styling */
.img1 {
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.img1:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.6);
}

.img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Font Styles */
.dancing-script {
    font-family: "Dancing Script", cursive;
}
.merriweather-regular {
    font-family: "Merriweather", serif;
    font-weight: 300;
    font-style: normal;
  }
.edu-au-vic-wa-nt-arrows {
  font-family: "Edu AU VIC WA NT Arrows", serif;
  font-optical-sizing: auto;
  font-weight:600;
  font-style: normal;
}
/* For about page */
.heading{
    font-size: 4rem;
    margin: 3rem 0 0 6rem;
}
.about .abt-img img{
    width: 450px;
    border-radius: 20%;
    box-shadow: 0 5px 10px #000000;
    margin: 1rem 0 0 5rem;
    position: relative;
    flex: 1;
}
.about .abt-img img:hover{
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.6);
}
.about {
    display: flex;
    align-items: center; /* Vertically align the items */
    justify-content: space-between; /* Distribute space between the image and text */
    padding: 20px; /* Add padding for spacing */
    flex-wrap: wrap;
    position: relative;
}
.about .text-p{
    margin: 2rem 2rem 2rem 2rem;
    text-align: justify;
}
.about-text {
    flex: 1; /* Takes the remaining space */
    margin-left: 4rem; /* Adds space between the image and text */
    margin-right: 4rem;
    margin-top: 1.2rem;
}

.sub-text{
    margin: 1rem 2rem 2rem 2rem;
}

/* Navbar styling */
.navbar-collapse ul{
    margin-right: 3rem;
    margin-top: 1.2rem;
}
.navbar-collapse ul li a{
    margin-right: 1.5rem;
}

/* projects cards design */
.heading {
    text-align: center;
    margin: 3rem 0 0 0 ;
    padding: 0;
}
.title span{
    color: #c153cb;
    font-size: 2rem;
    font-weight: 600;
}
.sub-title{
    margin: 1rem 0 0 2rem;
    font-size: 1rem;

    color: #ffffff !important;
}
 .cards-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 20px;
        }
        .card {
            padding: 1.6rem;
            width: 23rem;
            height: 35rem;
            background-color: transparent !important;
            border: 1px solid #c153cb !important;
            box-shadow: 0 8px 10px rgba(98, 49, 100, 0.2); /* Nice soft shadow */
            border-radius: 10px; /* Rounded corners */
            overflow: hidden;
            transition: transform 0.6s, box-shadow 0.3s;
            margin: 1.5rem;
        }
        .card:hover {
            transform: translateY(-8px); /* Lift on hover */
            box-shadow: 0 8px 16px rgba(219, 196, 225, 0.3);
        }
        .card img {
            height: 200px;
            object-fit: cover;
            border-bottom: 1px solid #c684dc;
            padding: 0.7rem;
        }
        .card-body {
            padding: 15px;
            color: #ffffff !important;
        }

        .btn-primary {
            background-color: transparent !important;
            border: 1px solid #c153cb !important;
            padding: 10px 20px;
            text-decoration: none;
            color: white;
            border-radius: 5px;
            display: inline-block;
            /* margin-top: 10px; */
            position: absolute;
            bottom: 20px;
            /* left: 8rem; */
        }
        .btn-primary:hover {
            background-color: #744493 !important;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .homep{
        margin-bottom: 19rem;
    }
    .intro {
        margin-right: 0;
        text-align: center;
    }
    .img1 {
        width: 50%;
        width: 200px;
        border-radius: 50%;
    }
    .about .abt-img img{
        width: 60%;
        margin: 1rem 0 0 4rem;
    }
    .about-text{
        margin: 2rem 1.3rem 2rem 1.3rem;
    }
    .about .text-p{
        margin: 2rem 0rem 2rem 0rem;
        text-align: justify;
    }
    .sub-text{
        margin: 2rem 0rem 2rem 0rem;
       text-align: justify;
    }
}
