@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Playfair+Display:wght@400;700&display=swap');

:root {
    --dark-blue: #08132b;
    --orange-gold: #D4AF37;
    --light-grey: #CCC;
    --font-cinzel: 'Cinzel', serif;
    --font-playfair: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--dark-blue);
    color: var(--light-grey);
    overflow-x: hidden; /* Prevent horizontal scroll */
    padding: 2rem 2rem 0rem 2rem;
}
.cinzel {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}
/* Navbar */
.navbar {
    background-color: var(--dark-blue);
    padding: 0px 0px 0px 0px;
    position: relative;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.top-width{
    padding: 2rem 0rem;
}

.navbar nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px; /* Adjust gap between items */
    border: 1px solid white;
    margin: 0 auto;
    padding: 1.4rem 0rem;
    width: 92%;
}
.star-image{
    width: 70%;
    height: auto;
}

.navbar nav ul li a {
    color: white;
    text-decoration: none;
    font-family: var(--font-cinzel);
    font-size: 1rem;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.navbar nav ul li a.active {
    color: var(--orange-gold);
}

.navbar nav ul li a:hover {
    color: var(--orange-gold);
}

.navbar nav ul li .star {
    color: var(--orange-gold);
    font-size: 1.2rem;
    vertical-align: middle;
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    text-align: center;
    position: relative;
    margin:0px 56px 0px 54px;
   
   
}
.section-one-image-one{
    width: 60%;
    height: auto;
    object-fit: cover;
}

.stars-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.star-small {
    color: var(--orange-gold);
    font-size: 1.5rem;
    position: absolute;
    animation: twinkle 4s infinite ease-in-out alternate;
}

.star-small.top-left {
    top: 10%;
    left: 10%;
}

.star-small.bottom-left {
    top: 20%;
    left: 5%;
    animation-delay: 1.5s;
}


@keyframes twinkle {
    0% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.5; transform: scale(1); }
}


.author-name {
    font-family: var(--font-playfair);
    font-size: 3.3rem;
    color: #ffb966;
    margin-bottom: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    padding-top: 6rem;
    z-index: 1;
}
.full-border{
    border: 1px solid white;
}
.text-reveal-wrapper{
     position: relative;
    top: -3rem;
    right: 2rem;
}

.author-title {
    font-family: var(--font-cinzel);
    font-size: 1rem;
    color: white;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 50px;
    z-index: 1;
}

.discover-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 42rem;
  right: 39rem;
  z-index: 1;
}

.ellipse-button {
  display: inline-block;
  background-color: transparent;
  color: white;
  text-decoration: none;
  font-family: var(--font-cinzel, 'Cinzel', serif);
  font-size: 1.2rem;
  text-transform: uppercase;
  padding: 18px 60px;
  border: 1px solid white;
  border-radius: 100% / 100%; /* creates a pure ellipse */
  transition: all 0.3s ease;
}



.arrow-line {
  width: .5px;
  height: 50px;
  background-color: white;
  margin-top: -9px;
}

.arrow-down {
  width: 20px;
  height: 20px;
  border-left: 1px solid white;
  border-bottom: 1px solid white;
  transform: rotate(-45deg);
  margin-top: -15px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(-45deg);
  }
  40% {
    transform: translateY(-10px) rotate(-45deg);
  }
  60% {
    transform: translateY(-5px) rotate(-45deg);
  }
}





/* Social Icons */
.social-icons {
    position: relative;
    top: 104px;
    transform: translateY(-50%);
    z-index: 100;
}
.first-third{
    display: block;
    margin: 0 auto;
}

.social-icons ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 0;
    border-radius: 5px;
}

.social-icons ul li a {
    color: var(--light-grey);
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.social-icons ul li a:hover {
    color: var(--orange-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar nav ul {
        flex-wrap: wrap;
        gap: 10px;
        padding: 0 10px;
    }

    .navbar nav ul li a {
        font-size: 0.9rem;
    }

    .author-name {
        font-size: 2.5rem;
        letter-spacing: 3px;
            padding-top: 2rem;
    }

    .author-title {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .discover-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .social-icons {
        display: none;
        right: 10px;
        top: auto;
        bottom: 20px;
        transform: none;
        display: flex;
        justify-content: center;
        width: 100%;
       
        padding: 10px 0;
    }

    .social-icons ul {
        flex-direction: row;
        gap: 25px;
         display: none;
    }

    .discover-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    margin-top: 0rem;
    position: static;
    top: 0rem;
    right: 39rem;
}
.text-reveal-wrapper{
     position: relative;
    top: -3rem;
    right: 0rem;
}
}

@media (max-width: 480px) {
    .navbar nav ul li a {
        font-size: 0.8rem;
        padding: 3px 5px;
    }

    .navbar nav ul {
        gap: 5px;
    }

    .author-name {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .author-title {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .discover-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .social-icons ul li a {
        font-size: 1.5rem;
    }
}


/* About Section */
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 150px 20px 80px 20px;
    background-color: var(--dark-blue);
    gap: 60px; /* Space between image and text */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}
.about-section-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px 80px 20px;
    background-color: var(--dark-blue);
    gap: 60px; /* Space between image and text */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.author-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--dark-blue);
    border: 1px solid rgb(255, 255, 255);
    
    padding: 20px;
    border-radius: 135% / 100% 100% 0px 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.author-image-container {
    width: 350px; /* Adjust as needed */
    height: 450px; /* Adjust as needed */
    background-color: rgba(0, 0, 0, 0.3); /* Placeholder background */
    border-radius: 107% / 100% 100% 0 0; /* Creates the arch shape */
    overflow: hidden;
    position: relative;
   
}
.author-image-container-2 {
    width: 300px; /* Adjust as needed */
    height: 350px; /* Adjust as needed */
    
    border-radius: 135% / 100% 100% 0 0; /* Creates the arch shape */
    overflow: hidden;
    position: relative;
 
}

.author-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container */
    display: block;
    /* Adjust position if image doesn't fit perfectly in the arch */
    position: absolute;
    top: 0;
    left: 0;
}

.author-image-2 {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container */
    display: block;
    /* Adjust position if image doesn't fit perfectly in the arch */
    position: absolute;
    top: 0;
    left: 0;
}


.author-card-name {
    
    font-size: 1.2rem;
    color: white;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 1rem;
}

.author-bio {
    max-width: 600px; /* Limit width of text for readability */
    text-align: left;
}
.cinzel-decorative-regular {
  font-family: "Cinzel Decorative", serif;
  font-weight: 400;
  font-style: normal;
}

.section-title {
       
    font-size: 1.7rem;
    color: #ffb966;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 10px;
}



.bio-text {
    font-family:Georgia, 'Times New Roman', Times, serif; /* Or another readable serif font if preferred */
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 30px;
}


.btn-primary {
    display: inline-block;
    background-color: #ffb966;
    color: var(--dark-blue);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--font-cinzel);
    font-size: 1rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-primary-2 {
    display: inline-block;
    background-color: #ffb966;
    color: var(--dark-blue);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--font-cinzel);
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: 8rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e6c264; /* Lighter shade of gold */
    color: var(--dark-blue);
}
.btn-primary-2:hover {
    background-color: #e6c264; /* Lighter shade of gold */
    color: var(--dark-blue);
}

/* Responsive Design for About Section */
@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
    }

    .author-bio {
        text-align: center;
        max-width: 90%;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .author-card-name {
    
    text-align: center;
}

.author-image-container-2 {
    width: 286px;
    height: 307px;
    border-radius: 97% / 100% 100% 0 0;
    overflow: hidden;
    position: relative;
}
}

@media (max-width: 480px) {
    .author-image-container {
        width: 243px;
        height: 273px;
    }

    .section-title {
        font-size: 2rem;
    }

    .bio-text {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    .btn-primary-2 {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}




/* Separator with Ornament */
.separator-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 60px 20px; /* Adjust padding as needed */
    background-color: var(--dark-blue);
}

.separator-ornament .line {
    flex-grow: 1; /* Makes the lines expand */
    height: 1px;
    background-color: var(--light-grey);
    max-width: 40%; /* Limit line length */
}

.ornament-center {
    position: relative;
    width: 60px; /* Width of the central ornament area */
    height: 60px; /* Height of the central ornament area */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 30px; /* Space between lines and ornament */
}

.ornament-center .star-part {
    position: absolute;
    width: 2px; /* Thickness of the star points */
    height: 30px; /* Length of the star points */
    background-color: var(--light-grey);
}

.ornament-center .star-part.top {
    transform: rotate(45deg);
}

.ornament-center .star-part.bottom {
    transform: rotate(-45deg);
}

.ornament-center .star-circle {
    width: 10px;
    height: 10px;
    border: 1px solid var(--light-grey);
    border-radius: 50%;
    position: absolute;
}

/* Pseudo-elements for the inner dots and dashes within the star circle */
.ornament-center .star-circle::before,
.ornament-center .star-circle::after {
    content: '';
    position: absolute;
    background-color: var(--light-grey);
}

/* Inner dots */
.ornament-center .star-circle::before {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Inner dashes (can be adjusted for more intricate patterns) */
.ornament-center .star-circle::after {
    width: 6px;
    height: 1px;
    top: calc(50% - 1px);
    left: calc(50% - 3px);
    transform: rotate(90deg); /* Vertical dash */
}


/* Adjustments for the small vertical dashes and dots around the ornament */
.ornament-center::before,
.ornament-center::after {
    content: '';
    position: absolute;
    height: 10px;
    width: 1px;
    background-color: var(--light-grey);
}

.ornament-center::before {
    left: -10px; /* Position to the left of the ornament */
    top: 50%;
    transform: translateY(-50%) rotate(90deg); /* Rotate for horizontal dash */
    width: 5px; /* Short horizontal dash */
}

.ornament-center::after {
    right: -10px; /* Position to the right of the ornament */
    top: 50%;
    transform: translateY(-50%) rotate(90deg); /* Rotate for horizontal dash */
    width: 5px; /* Short horizontal dash */
}

/* Add small dots near the ornament */
.ornament-center::before {
    left: -20px;
    top: calc(50% - 2px);
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: var(--light-grey);
    transform: none;
}

.ornament-center::after {
    right: -20px;
    top: calc(50% - 2px);
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: var(--light-grey);
    transform: none;
}

/* To get the exact pattern of small dots and lines: */
/* Let's redefine the ornament_center pseudo-elements for the side dots and dashes */
.ornament-center::before,
.ornament-center::after,
.ornament-center .star-circle::before,
.ornament-center .star-circle::after {
    content: '';
    position: absolute;
    background-color: var(--light-grey);
}

/* Main inner star circle */
.ornament-center .star-circle {
    width: 10px;
    height: 10px;
    border: 1px solid var(--light-grey);
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Inner dot of the star circle */
.ornament-center .star-circle::before {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: var(--light-grey);
}

/* Inner vertical lines on the star circle */
.ornament-center .star-circle::after {
    width: 1px;
    height: 6px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent; /* Make this transparent initially */
    box-shadow: 0 -4px 0 var(--light-grey), /* Top dash */
                0 4px 0 var(--light-grey); /* Bottom dash */
}

/* For the small vertical lines and dots around the central ornament */
.ornament-center-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ornament-center-elements::before,
.ornament-center-elements::after {
    content: '';
    position: absolute;
    background-color: var(--light-grey);
    top: 50%;
    transform: translateY(-50%);
}

.ornament-center-elements::before { /* Left side elements */
    left: -25px; /* Adjust distance from ornament */
    width: 1px;
    height: 8px; /* Vertical dash */
    box-shadow: -5px 0 0 0 var(--light-grey), /* Left dot */
                5px 0 0 0 var(--light-grey); /* Right dot */
    transform: translateY(-50%) rotate(90deg); /* Rotate for horizontal arrangement */
}

.ornament-center-elements::after { /* Right side elements */
    right: -25px; /* Adjust distance from ornament */
    width: 1px;
    height: 8px; /* Vertical dash */
    box-shadow: -5px 0 0 0 var(--light-grey), /* Left dot */
                5px 0 0 0 var(--light-grey); /* Right dot */
    transform: translateY(-50%) rotate(90deg); /* Rotate for horizontal arrangement */
}

/* To refine the small dots and dashes near the center ornament for precise replication: */
/* Let's use individual elements or more precise pseudo-elements for the small details */

.ornament-detail {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: var(--light-grey);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.ornament-detail.left-dot-1 { left: -30px; }
.ornament-detail.left-dash { left: -25px; width: 6px; height: 1px; border-radius: 0; }
.ornament-detail.left-dot-2 { left: -18px; }

.ornament-detail.right-dot-1 { right: -30px; }
.ornament-detail.right-dash { right: -25px; width: 6px; height: 1px; border-radius: 0; }
.ornament-detail.right-dot-2 { right: -18px; }


/* Updated ornament-center for more precise star and inner circle */
.ornament-center {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 30px;
}

.ornament-center .star-part {
    position: absolute;
    width: 1px; /* Thinner lines for star */
    height: 25px; /* Length of the star points */
    background-color: var(--light-grey);
}

/* Using multiple rotations for a more complex star shape */
.ornament-center .star-part:nth-child(1) { transform: rotate(0deg); }
.ornament-center .star-part:nth-child(2) { transform: rotate(90deg); }
.ornament-center .star-part:nth-child(3) { transform: rotate(45deg); }
.ornament-center .star-part:nth-child(4) { transform: rotate(-45deg); }

.ornament-center .star-circle {
    width: 10px;
    height: 10px;
    border: 1px solid var(--light-grey);
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ornament-center .star-circle::before { /* Inner dot */
    content: '';
    width: 2px;
    height: 2px;
    background-color: var(--light-grey);
    border-radius: 50%;
}

.ornament-center .star-circle::after { /* Inner vertical dashes */
    content: '';
    position: absolute;
    width: 1px;
    height: 8px; /* Length of the dashes */
    background-color: transparent;
    box-shadow: 0 -4px 0 var(--light-grey), /* Top dash */
                0 4px 0 var(--light-grey); /* Bottom dash */
}

/* For the small side elements near the ornament */
.ornament-center::before,
.ornament-center::after {
    content: '';
    position: absolute;
    background-color: var(--light-grey);
    top: 50%;
    transform: translateY(-50%);
}

.ornament-center::before { /* Left side */
    left: -25px;
    width: 2px; /* Dot */
    height: 2px;
    border-radius: 50%;
    box-shadow: -8px 0 0 0 var(--light-grey), /* Further left dot */
                -2px 0 0 0 var(--light-grey), /* Dash */
                -2px 0 0 0 var(--light-grey), /* Dash */
                2px 0 0 0 var(--light-grey), /* Dash */
                8px 0 0 0 var(--light-grey); /* Further right dot */
    width: 1px; height: 1px; /* Reset for individual styling below */
    background-color: transparent; /* Use box-shadow for individual elements */
    
    /* Re-creating the specific small dots and dashes */
    box-shadow:
        -30px 0 0 0 var(--light-grey), /* Far left dot */
        -25px -1px 0 0 var(--light-grey), /* Left dash top */
        -25px 1px 0 0 var(--light-grey), /* Left dash bottom */
        -18px 0 0 0 var(--light-grey); /* Inner left dot */
    width: 0; height: 0; /* No actual element, only shadows */
    border-radius: 0;
}

.ornament-center::after { /* Right side - mirror of before */
    right: -25px;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: transparent;
    box-shadow:
        30px 0 0 0 var(--light-grey), /* Far right dot */
        25px -1px 0 0 var(--light-grey), /* Right dash top */
        25px 1px 0 0 var(--light-grey), /* Right dash bottom */
        18px 0 0 0 var(--light-grey); /* Inner right dot */
    width: 0; height: 0;
    border-radius: 0;
}

/* Responsive adjustments for the separator */
@media (max-width: 768px) {
    .separator-ornament {
        padding: 40px 10px;
    }

    .separator-ornament .line {
        max-width: 35%; /* Adjust line length */
    }

    .ornament-center {
        margin: 0 15px; /* Reduce margin */
        width: 50px;
        height: 50px;
    }

    .ornament-center .star-part {
        height: 20px;
    }

    .ornament-center::before,
    .ornament-center::after {
        box-shadow:
            -25px 0 0 0 var(--light-grey),
            -20px -1px 0 0 var(--light-grey),
            -20px 1px 0 0 var(--light-grey),
            -15px 0 0 0 var(--light-grey);
    }

    .ornament-center::after {
         box-shadow:
            25px 0 0 0 var(--light-grey),
            20px -1px 0 0 var(--light-grey),
            20px 1px 0 0 var(--light-grey),
            15px 0 0 0 var(--light-grey);
    }
}

@media (max-width: 480px) {
    .separator-ornament .line {
        max-width: 30%;
    }

    .ornament-center {
        margin: 0 10px;
        width: 40px;
        height: 40px;
    }

    .ornament-center .star-part {
        height: 15px;
    }

    .ornament-center::before,
    .ornament-center::after {
        box-shadow:
            -20px 0 0 0 var(--light-grey),
            -15px -1px 0 0 var(--light-grey),
            -15px 1px 0 0 var(--light-grey),
            -10px 0 0 0 var(--light-grey);
    }
     .ornament-center::after {
         box-shadow:
            20px 0 0 0 var(--light-grey),
            15px -1px 0 0 var(--light-grey),
            15px 1px 0 0 var(--light-grey),
            10px 0 0 0 var(--light-grey);
    }
}



/* Next Projects Section */
.next-projects-section {
    background-color: var(--dark-blue);
    padding: 80px 20px 30px 20px;
    text-align: center;
    position: relative; /* For positioning the stars */
    overflow: hidden; /* Ensure stars don't overflow */
}

.next-projects-section .section-title {
   
    font-size: 1.5rem;
    color: #ffb966;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block; /* To center the underline */
    padding-bottom: 10px;
}

.next-projects-section .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px; /* Underline width */
   
}

.stars-top-left {
    position: absolute;
    top: 40px;
    left: 40px;
}

.stars-top-left .star-small {
    color: var(--light-grey); /* Stars are lighter in this section */
    font-size: 1.8rem;
    display: block; /* Stack stars vertically slightly */
}

.stars-top-left .star-small.second-star {
    font-size: 1.3rem;
    margin-top: -5px; /* Bring closer to the first star */
    margin-left: 10px; /* Offset slightly */
    opacity: 0.8;
}


.project-item {
    max-width: 800px; /* Limit width for readability */
    margin: 0 auto 40px auto; /* Center items and add bottom margin */
    text-align: left;
    padding: 0 20px; /* Add some horizontal padding */
}

.project-title {
    font-family: var(--font-cinzel);
    font-size: 1.1rem;
    color: #ffb966;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.project-title2 {
    font-family: var(--font-cinzel);
    font-size: 3.1rem;
    color: #ffb966;
    margin-bottom: 20px;
    margin-top: 6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
}
.project-title3 {
    font-family: var(--font-cinzel);
    font-size: 2.1rem;
    color: #ffb966;
    margin-bottom: 6rem;
    margin-top: 12rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    font-weight: 100;
    justify-content: center;
}


.project-subtitle {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0.8;
}

.progress-bar-container {
    width: 100%;
    
    height: 25px;
    border-radius: 19px;
    border: .2px solid #ffb966;
    overflow: hidden; /* Ensures the inner bar respects border-radius */
    margin-bottom: 30px;
}

.progress-bar {
    height: 100%;
    background-color: #ffb966;
    border-radius: 12px;
    transition: width 0.5s ease-in-out; /* Smooth transition for progress */
}

.project-divider {
    border: none;
    border-top: 1px solid rgb(255, 255, 255);
    margin: 40px 0; /* Space above and below the divider */
}

/* Responsive Design for Next Projects */
@media (max-width: 768px) {
    .next-projects-section {
        padding: 60px 10px;
    }

    .next-projects-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .stars-top-left {
        top: 20px;
        left: 20px;
    }

    .stars-top-left .star-small {
        font-size: 1.5rem;
    }

    .stars-top-left .star-small.second-star {
        font-size: 1.1rem;
        margin-left: 5px;
    }

    .project-item {
        max-width: 90%;
        margin-bottom: 30px;
    }

    .project-title {
        font-size: 1.3rem;
    }

    .project-subtitle {
        font-size: 0.9rem;
    }

    .progress-bar-container {
        height: 6px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .next-projects-section {
        padding: 40px 5px;
    }

    .next-projects-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .stars-top-left {
        top: 15px;
        left: 15px;
    }

    .stars-top-left .star-small {
        font-size: 1.3rem;
    }

    .stars-top-left .star-small.second-star {
        font-size: 0.9rem;
        margin-top: -3px;
        margin-left: 3px;
    }

    .project-item {
        padding: 0 10px;
    }

    .project-title {
        font-size: 1.1rem;
    }

    .project-subtitle {
        font-size: 0.8rem;
    }

    .progress-bar-container {
        height: 5px;
        margin-bottom: 20px;
    }

    .project-divider {
        margin: 30px 0;
    }
}



/* Latest Posts Section */
.latest-posts-section {
    background-color: var(--dark-blue);
    padding: 80px 20px;
    text-align: center;
    position: relative; /* For positioning the stars */
    overflow: hidden;
}

.latest-posts-section .section-title {
   
    font-size: 1.5rem;
    color: var(--orange-gold);
    margin-bottom: 100px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block; /* To center the underline */
    padding-bottom: 10px;
}

.latest-posts-section .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px; /* Underline width */
    height: 2px;
    
}

.stars-top-right {
    position: absolute;
    top: 40px;
    right: 40px;
}

.stars-top-right .star-small {
    color: var(--light-grey);
    font-size: 1.8rem;
    display: block;
    margin-left: auto; /* Push to the right within its container */
}

.stars-top-right .star-small.second-star {
    font-size: 1.3rem;
    margin-top: -5px;
    margin-right: 10px; /* Offset slightly */
    opacity: 0.8;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 40px; /* Space between cards */
    max-width: 1200px;
    margin: 0 auto;
}

.post-card {
    background-color: var(--dark-blue);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px; /* Slight general card rounding */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px; /* Padding for text below image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.post-image-container {
    width: 100%;
    height: 200px; /* Fixed height for image container */
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 50% 50% / 0 0 100% 100%; /* Arch shape at the bottom */
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--orange-gold); /* Gold border for the arch */
}

.post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Adjust position if image doesn't fit perfectly in the arch */
}

.post-title {
    font-family: var(--font-cinzel);
    font-size: 1.2rem;
    color: var(--light-grey);
    padding: 0 15px; /* Padding to prevent text from touching edges */
    line-height: 1.4;
    text-transform: uppercase;
}

/* Responsive Design for Latest Posts */
@media (max-width: 992px) {
    .posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 60px;
    }

    .post-image-container {
        height: 180px;
    }

    .post-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .latest-posts-section {
        padding: 60px 10px;
    }

    .latest-posts-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .stars-top-right {
        top: 20px;
        right: 20px;
    }

    .stars-top-right .star-small {
        font-size: 1.5rem;
    }

    .stars-top-right .star-small.second-star {
        font-size: 1.1rem;
        margin-top: -3px;
        margin-right: 5px;
    }

    .posts-grid {
        grid-template-columns: 1fr; /* Stack cards on very small screens */
        max-width: 400px; /* Limit width when stacked */
        margin: 0 auto;
    }

    .post-image-container {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .latest-posts-section {
        padding: 40px 5px;
    }

    .latest-posts-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .stars-top-right {
        top: 15px;
        right: 15px;
    }

    .stars-top-right .star-small {
        font-size: 1.3rem;
    }

    .stars-top-right .star-small.second-star {
        font-size: 0.9rem;
    }

    .post-image-container {
        height: 180px;
    }

    .post-title {
        font-size: 1rem;
        padding: 0 10px;
    }
}


/* Main Footer */
.main-footer {
    background-color: var(--dark-blue);
    padding: 60px 20px 30px 20px; /* Adjust padding for top, sides, bottom */
    text-align: center;
    
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 50px; /* Space between columns */
    padding: 40px 0; /* Padding inside the content area */
    border: 1px solid rgba(255, 255, 255, 0.9); /* Border around the main content */
    max-width: 1200px;
    margin: 0 auto; /* Center the footer content box */
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
}

.footer-column {
    flex: 1; /* Distribute space evenly */
    min-width: 280px; /* Minimum width before wrapping */
    text-align: center;
    padding: 0 20px; /* Internal padding for columns */
    
}

.footer-heading {
    font-family: var(--font-playfair);
    font-size: 1.5rem;
    color: #ffb966;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Follow Me Section */
.social-links-footer {
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between social icons */
}

.social-links-footer a {
    color: var(--light-grey);
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.social-links-footer a:hover {
    color: var(--orange-gold);
}

/* Newsletter Section */
.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0; /* No gap between input and button */
    max-width: 300px; /* Limit width of newsletter form */
    margin: 0 auto;
    border: 1px solid var(--light-grey); /* Border around the input group */
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px; /* Slightly rounded corners for the input group */
    overflow: hidden; /* Ensures contents are clipped by border-radius */
}

.email-input {
    flex-grow: 1; /* Allow input to take available space */
    padding: 12px 15px;
    border: none;
    background-color: transparent;
    color: var(--light-grey);
    font-family: Arial, sans-serif;
    font-size: 1rem;
    outline: none; /* Remove default outline */
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-button {
    background-color: var(--orange-gold);
    color: var(--dark-blue);
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    display: flex; /* To center the icon */
    align-items: center;
    justify-content: center;
}

.subscribe-button:hover {
    background-color: #e6c264; /* Lighter gold on hover */
}

/* Footer Bottom (Copyright and Links) */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    color: var(--light-grey);
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
}

.copyright {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-grey);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange-gold);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.4);
}


/* Responsive Design for Footer */
@media (max-width: 768px) {
    .main-footer {
        padding: 40px 15px 20px 15px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        padding: 30px 0;
    }

    .footer-column {
        min-width: unset; /* Remove min-width to allow full stacking */
        width: 100%;
    }

    .footer-heading {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .newsletter-form {
        max-width: 90%; /* Allow more width on smaller screens */
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 15px;
    }

    .copyright {
        font-size: 0.85rem;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px; /* Adjust gap for wrapped links */
    }

    .footer-links a,
    .footer-links span {
        margin: 5px; /* Add vertical margin for wrapped items */
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 30px 10px 15px 10px;
    }

    .footer-content {
        padding: 20px 0;
    }

    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .social-links-footer a {
        font-size: 1.5rem;
        gap: 20px;
    }

    .email-input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .subscribe-button {
        padding: 10px 15px;
        font-size: 1rem;
    }

    .footer-bottom {
        margin-top: 20px;
        padding-top: 10px;
    }

    .copyright {
        font-size: 0.8rem;
    }

    .footer-links a,
    .footer-links span {
        font-size: 0.8rem;
        margin: 3px;
    }
}


.vertical-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dot {
  background-color: white;
  border-radius: 50%;
  margin: 6px 0;
}

.dot.small {
  width: 6px;
  height: 6px;
}

.dot.medium {
  width: 14px;
  height: 14px;
}

.line {
  width: 2px;
  height: 40vh;
  background-color: white;
  margin-top: 10px;
}


.sparkle-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin-top: -2rem;
}
.sparkle-container-2 {
position: relative;
    width: 120px;
    height: 120px;
    top: 9rem;
    right: -4rem;
    margin-top: 2rem;
}

.sparkle {
  position: absolute;
  width: 24px;
  height: 24px;
  background: white;
  clip-path: polygon(
    50% 0%,
    62% 38%,
    100% 50%,
    62% 62%,
    50% 100%,
    38% 62%,
    0% 50%,
    38% 38%
  );
}
.sparkle-2 {
  position: absolute;
  width: 24px;
  height: 24px;
  background: white;
  clip-path: polygon(
    50% 0%,
    62% 38%,
    100% 50%,
    62% 62%,
    50% 100%,
    38% 62%,
    0% 50%,
    38% 38%
  );
}

.sparkle-top-left {
  top: 20%;
  left: 0%;
  width: 16px;
  height: 16px;
}

.sparkle-center {
  top: 33%;
  left: 44%;
}

.sparkle-top-right {
  top: -12%;
  left: 26%;
  width: 30px;
  height: 30px;
}



/* Wrap for scoping */
.horizontal-divider-wrapper {
  width: 100%;
  margin: 80px 0;
  overflow: hidden;
}

/* Main layout */
.horizontal-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  width: 100%;
  max-width: 100%;
  opacity: 0;
  position: relative;

  /* Center-out mask */
  mask-image: radial-gradient(ellipse at center, black 0%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, black 100%, transparent 100%);
  mask-size: 0% 100%;
  -webkit-mask-size: 0% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;

  transition: opacity 0.6s ease-out, mask-size 1.2s ease-out;
  -webkit-transition: opacity 0.6s ease-out, -webkit-mask-size 1.2s ease-out;
}

/* When triggered */
.horizontal-divider.reveal {
  opacity: 1;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

/* Dots + sparkle */
.horizontal-line {
  flex: 1;
  height: 1px;
  background-color: white;
}

.horizontal-dots {
  display: flex;
  gap: 6px;
}

.horizontal-dot {
  background-color: white;
  border-radius: 50%;
}

.horizontal-dot.small {
  width: 4px;
  height: 4px;
}

.horizontal-dot.medium {
  width: 8px;
  height: 8px;
}

.horizontal-sparkle {
  width: 24px;
  height: 24px;
  background-color: white;
  clip-path: polygon(
    50% 0%,
    60% 38%,
    100% 50%,
    60% 62%,
    50% 100%,
    38% 62%,
    0% 50%,
    38% 38%
  );
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-up-2 {
  opacity: 1;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-up-about {
  opacity: 1;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-up-about.revealed {
  opacity: 1;
  transform: translateY(0);
}


@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes revealUp-about {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.animation2-vertical-ui {
     
      top: 0;
      left: 0px;
      margin-top: -6rem;
      position: relative;
      transform: translateY(0%);
      display: flex;
      flex-direction: column;
      align-items: center;
       opacity: 0;
  clip-path: inset(0 0 100% 0); /* completely hidden vertically */
  transition: clip-path 1.2s ease-out, opacity 1s ease-out;
    }

    .animation2-vertical-ui.animation2-reveal {
      clip-path: inset(0 0 0% 0); /* fully visible */
  opacity: 1;
    }

    .animation2-dot {
      background-color: white;
      border-radius: 50%;
      margin: 6px 0;
    }

    .animation2-dot.small {
      width: 4px;
      height: 4px;
    }

    .animation2-dot.medium {
      width: 10px;
      height: 10px;
    }

    .animation2-dot.large {
      width: 6px;
      height: 6px;
    }

    .animation2-line {
      width: 1px;
      height: 31vh;
      background-color: white;
      margin-top: 10px;
    }

    @media (max-width: 768px) {
      .animation2-vertical-ui {
        left: 10px;
      }

      .animation2-dot.small {
        width: 4px;
        height: 4px;
      }

      .animation2-dot.medium {
        width: 10px;
        height: 10px;
      }

      .animation2-dot.large {
        width: 6px;
        height: 6px;
      }

      .animation2-line {
        height: 50vh;
      }
      .sparkle-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin-top: 4rem;
}
    }







    .container-hover {
            max-width: 1100px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
        }
        .section-hover-series {
            position: relative;
        }
        .section-hover-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 30px 0;
            border-bottom: 1px solid white;
            margin-bottom: 20px;
            position: relative;
            transition: all 0.3s ease;
            z-index: 1;
        }
        .section-hover-item:hover {
            transform: translateX(10px);
           
            padding-left: 0px;
            
            z-index: 10;
        }
        .section-hover-info {
            flex: 0 0 40%;
            padding-right: 20px;
        }
        .section-hover-cover-area {
            flex: 0 0 60%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            
        }
        .section-hover-title {
            color: #ffb966;
            font-size: 1.5rem;
            font-weight: 100;
            letter-spacing: 2px;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            text-transform: uppercase;
        }
        .section-hover-subtitle {
            font-size: 1.2rem;
            color: #ffffff;
            letter-spacing: 1px;
            font-weight: 300;
        }
        .section-hover-cover {
            width: 200px;
            height: 300px;
            background-color: #8b1313;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 25px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
            position: absolute;
            top: -150px;
            left: 50%;
            transform: translateX(-50%) rotate(10deg);
            transition: opacity 0.4s ease, visibility 0.4s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
            pointer-events: none;
        }
        
        
        .book-cover::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
            border-radius: 8px;
        }
        .cover-series {
            font-size: 1rem;
            text-align: center;
            color: #f4f4f4;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            line-height: 1.3;
        }
        .cover-title {
            font-size: 1.5rem;
            text-align: center;
            color: #f4f4f4;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            line-height: 1.2;
        }
        .book-number {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 60px;
            height: 60px;
            background: #d44c37;
            color: #1a2847;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.8rem;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
        }
        .section-hover-cover-series {
                font-size: 0.9rem;
                align-items: center;
                margin: 0 auto;
            }
            .section-hover-cover-series-2 {
                font-size: .6rem;
                align-items: center;
                text-align: center;
                margin: 0 auto;
            }

           .cover-navy {
                background-color: #132b8b;
            }

            .cover-brown {
                background-color: #8b5b13;
            }

            .cover-green {
                background-color: #138b6f;
            }




                .container-4 {
                display: flex;
                flex-wrap: wrap;
                width: 120px;
                height: 120px;
                gap: 10px;
                }

    .circle {
      width: 50px;
      height: 50px;
      background-color: #08132b;
      border: 1px solid #08132b;
      border-top-left-radius: 100px;
      border-top-right-radius: 0;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      border-top-color: white;
      border-left-color: white;
    }

    .rotate-0 {
      transform: rotate(0deg);
      position: relative;
      top: 89.3rem;
      left: 82.9rem;
    }

    .rotate-90 {
      transform: rotate(90deg);
      position: relative;
      top: 89.3rem;
      right: 3.8rem;
    }



    .rotate-180 {
      transform: rotate(180deg);
      position: relative;
      bottom: 8.6rem;
      left: -2px;
    }

    .rotate-270 {
      transform: rotate(270deg);
      position: relative;
       bottom: 8.6rem;
      left: 79.1rem;
    }




    .rotate-00 {
      transform: rotate(0deg);
      position: relative;
      top: 6.3rem;
      left: 81.6rem;
    }

    .rotate-900 {
      transform: rotate(90deg);
      position: relative;
      top: 6.3rem;
      right: 5.1rem;
    }

    

       




       
        /* Animation for page load */
        .section-hover-item {
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }
        .section-hover-item:nth-child(1) { animation-delay: 0.1s; }
        .section-hover-item:nth-child(2) { animation-delay: 0.2s; }
        .section-hover-item:nth-child(3) { animation-delay: 0.3s; }
        .section-hover-item:nth-child(4) { animation-delay: 0.4s; }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



        .container-six {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0px;
            max-width: 1337px;
            width: 100%;
            padding: 0rem 0rem;
            margin: 0 auto;
        }

        .card {
            
           
            border-radius: 20px;
            padding: 10px 40px;
            position: relative;
            overflow: hidden;
           
            
        }

        .card:hover {
            transform: translateY(0px);
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        /* Animated border effect */
        .card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 20px;
            padding: 2px;
          
            
           
        }

        .card.reveal-border::after {
            opacity: 1;
            transform: scaleX(1);
        }

        

        .card-number {
            font-size: 2rem;
            font-weight: 100;
            color: #ffb966;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            margin-bottom: 20px;
            display: block;
            position: relative;
            z-index: 1;
        }

        .card-title {
            font-size: 1rem;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 15px;
            line-height: 1.3;
            position: relative;
            z-index: 1;
        }
        .card-flex{
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .card-subtitle {
            font-size: 1rem;
            color: #e8f4fd;
            opacity: 0.9;
            line-height: 1.4;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        .decorative-line {
            width: 100%;
            height: 1.5px;
            background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 1) 100%);
            margin: 25px 0;
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.8s ease;
            position: relative;
            z-index: 1;
        }
         .decorative-line-2 {
            width: 100%;
            height: 1.5px;
            background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 1) 100%);
            margin: 25px 0;
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 1.5s ease;
            position: relative;
            z-index: 1;
        }
         .decorative-line-3 {
            width: 100%;
            height: 1.5px;
            background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 1) 100%);
            margin: 25px 0;
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 2s ease;
            position: relative;
            z-index: 1;
        }

        .card.in-view .decorative-line {
            transform: scaleX(1);
        }
        .card.in-view .decorative-line-2 {
            transform: scaleX(1);
        }
        .card.in-view .decorative-line-3 {
            transform: scaleX(1);
        }


        .star1{
                position: relative;top: -6rem;left: 16.8rem;
        }


           .circle-wrapper {
      position: relative;
      width: 450px;
      height: 450px;
      
      
    }

    .circle-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }

    svg {
      position: absolute;
      top: -74px;
    left: -66px;
    width: 580px;
    height: 580px;
      pointer-events: none;
      z-index: 2;
    }

    text {
      fill: white;
      font-size: 11px;
      font-weight: 100;
      letter-spacing: 1px;
      font-family: "Cinzel Decorative", serif;
    }
    .image-design{
        display: flex;
        align-items: center;
       justify-content: center;
       gap: 5rem;
       padding: 10rem 0rem;
    }

        

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 10px;
            }

            .card {
                padding: 30px 25px;
            }

            .card-number {
                font-size: 3rem;
                margin-bottom: 15px;
            }

            .card-title {
                font-size: 1.3rem;
                margin-bottom: 12px;
            }

            .card-subtitle {
                font-size: 0.95rem;
            }

            .decorative-line {
                margin: 20px 0;
            }
             .container-six {
            grid-template-columns: 1fr;
            padding: 0;
        }

         .image-design{
        display: flex;
        align-items: center;
       justify-content: center;
       gap: 5rem;
       padding: 10rem 0rem 0rem 0rem;
       flex-direction: column;
    }
    .star1{
               display: none;
        }
        .circle-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
}
.star2{
       display: none;
}
.star3{
     display: none;
}
.star4{
        display: none;
}
.star5{
      display: none;
}
svg {
    position: absolute;
    top: -43px;
    left: -47px;
    width: 382px;
    height: 380px;
    pointer-events: none;
    z-index: 2;
}
        }

        @media (max-width: 480px) {
            body {
                padding: 15px;
            }

            .card {
                padding: 25px 20px;
            }

            .card-number {
                font-size: 2.5rem;
            }

            .card-title {
                font-size: 1.2rem;
            }

            .card-subtitle {
                font-size: 0.9rem;
            }
            .sparkle-container-2 {
            position: relative;
            width: 120px;
            height: 120px;
            top: -3rem;
            right: -1rem;
            margin-top: 2rem;
        }
        .project-title3 {
    font-family: var(--font-cinzel);
    font-size: 2.1rem;
    color: #ffb966;
    margin-bottom: 6rem;
    margin-top: 12rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    font-weight: 100;
    justify-content: center;
    text-align: center;
}
        }

        /* Animation for cards */
        .card {
            animation: fadeInUp 0s ease-out;
        }

        .card:nth-child(2) {
            animation-delay: 0.2s;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


         @media (max-width: 1281px) {
                    .rotate-270 {
                    transform: rotate(270deg);
                    position: relative;
                    bottom: 8.6rem;
                    left: 69.2rem;
                    }
                    .rotate-0 {
                    transform: rotate(0deg);
                    position: relative;
                    top: 89.4rem;
                    left: 72.9rem;
                    }
                    .rotate-180 {
                    transform: rotate(180deg);
                    position: relative;
                    bottom: 8.6rem;
                    left: -3px;
                     }
                         .rotate-00 {
                            transform: rotate(0deg);
                            position: relative;
                            top: 6.4rem;
                            left: 71.6rem;
                        }
                        .rotate-90 {
                        transform: rotate(90deg);
                        position: relative;
                        top:89.4rem;
                        right:3.9rem;
                          }


                        
                     

                        .rotate-900 {
                        transform: rotate(90deg);
                        position: relative;
                        top: 6.4rem;
                        right: 5.2rem;
                          }


                     
        }

         @media (max-width: 1025px) {
                    .rotate-270 {
                    transform: rotate(270deg);
                    position: relative;
                    bottom: 8.6rem;
                    left: 53.2rem;
                    }
                    .rotate-0 {
                    transform: rotate(0deg);
                    position: relative;
                    top: 89.3rem;
                    left: 16.9rem;
                    }
                    .rotate-180 {
                    transform: rotate(180deg);
                    position: relative;
                    bottom: 8.6rem;
                    left: -3px;
                     }
                         .rotate-00 {
                            transform: rotate(0deg);
                            position: relative;
                            top: 6.6rem;
                            left: 56rem;
                        }
                     

                        .rotate-900 {
                        transform: rotate(90deg);
                        position: relative;
                        top: 6.4rem;
                        right: 5.2rem;
                          }


                     
        }

         @media (max-width: 913px) {
                    .rotate-270 {
                    transform: rotate(270deg);
                    position: relative;
                    bottom: 8.5rem;
                    left: 46.2rem;
                    }
                    .rotate-0 {
                    transform: rotate(0deg);
                    position: relative;
                    top: 89.3rem;
                    left: 16.9rem;
                    }
                    .rotate-180 {
                    transform: rotate(180deg);
                    position: relative;
                    bottom: 8.5rem;
                    left: -3px;
                     }
                         .rotate-00 {
                            transform: rotate(0deg);
                            position: relative;
                            top: 6.4rem;
                            left: 48.6rem;
                        }
                     

                        .rotate-900 {
                        transform: rotate(90deg);
                        position: relative;
                        top: 6.4rem;
                        right: 5.2rem;
                          }


                     
        }

        @media (max-width: 854px) {
                    .rotate-270 {
                    transform: rotate(270deg);
                    position: relative;
                    bottom: 8.4rem;
                    left: 42.6rem;
                    }
                    .rotate-0 {
                    transform: rotate(0deg);
                    position: relative;
                    top: 89.3rem;
                    left: 16.9rem;
                    }
                    .rotate-180 {
                    transform: rotate(180deg);
                    position: relative;
                    bottom: 8.4rem;
                    left: -3px;
                     }
                         .rotate-00 {
                            transform: rotate(0deg);
                            position: relative;
                            top: 6.6rem;
                                    left: 44.1rem;
                        }
                     

                        .rotate-900 {
                        transform: rotate(90deg);
                        position: relative;
                        top: 6.9rem;
                        right: 5.2rem;
                          }


                     
        }


         @media (max-width: 821px) {
                    .rotate-270 {
                    transform: rotate(270deg);
                    position: relative;
                    bottom: 8.5rem;
                    left: 40.6rem;
                    }
                    .rotate-0 {
                    transform: rotate(0deg);
                    position: relative;
                    top: 89.3rem;
                    left: 16.9rem;
                    }
                    .rotate-180 {
                    transform: rotate(180deg);
                    position: relative;
                    bottom: 8.4rem;
                    left: -3px;
                     }
                         .rotate-00 {
                            transform: rotate(0deg);
                            position: relative;
                            top: 6.6rem;
                            left: 43rem;
                        }
                     

                        .rotate-900 {
                        transform: rotate(90deg);
                        position: relative;
                        top: 6.5rem;
                        right: 5.2rem;
                          }


                     
        }

        @media (max-width: 769px) {
                .rotate-270 {
                transform: rotate(270deg);
                position: relative;
                bottom: 0.2rem;
                left: 37.2rem;
            }
                .rotate-0 {
                transform: rotate(0deg);
                position: relative;
                top: 89.3rem;
                left: 16.9rem;
                }
                .rotate-180 {
                transform: rotate(180deg);
                position: relative;
                bottom: .2rem;
                left: -3px;
                }


                     .rotate-00 {
                        transform: rotate(0deg);
                        position: relative;
                        top: 1.3rem;
                        left: 40rem;
                    }

                    .rotate-900 {
                        transform: rotate(90deg);
                        position: relative;
                        top: 1.3rem;
                        right: 4.9rem;
                    }
        }

         @media (max-width: 541px) {
                    .rotate-270 {
                    transform: rotate(270deg);
                    position: relative;
                    bottom: 0.2rem;
                     left: 22.8rem;
                    }
                    .rotate-0 {
                    transform: rotate(0deg);
                    position: relative;
                    top: 89.3rem;
                    left: 16.9rem;
                    }
                    .rotate-180 {
                    transform: rotate(180deg);
                    position: relative;
                            bottom: 0.2rem;

                    left: -3px;
                     }
                         .rotate-00 {
                            transform: rotate(0deg);
                            position: relative;
                            top: 1.4rem;
                            left: 25.8rem;
                        }
                     

                        .rotate-900 {
                        transform: rotate(90deg);
                        position: relative;
                        top: 1.4rem;
                        right: 4.8rem;
                                        }


                     
        }

         @media (max-width: 480px) {
            .section-hover-title {
                font-size: 1.5rem;
                letter-spacing: 1px;
            }
            .section-hover-subtitle {
                font-size: 0.9rem;
            }
            .section-hover-cover {
                width: 120px;
                height: 180px;
                padding: 15px;
                top: -167px;
            }
            .section-hover-number {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
                top: -15px;
                right: -15px;
            }
            .section-hover-cover-title {
                font-size: 1rem;
            }
            .section-hover-cover-series {
                font-size: 0.8rem;
            }
            .animation2-vertical-ui{
                display: none;
            }
        }

        @media (max-width: 431px) {
            .rotate-270 {
                transform: rotate(270deg);
                position: relative;
                bottom: .1rem;
                left: 18.2rem;
                }
                .rotate-0 {
                transform: rotate(0deg);
                position: relative;
                top: 89.3rem;
                left: 16.9rem;
                }
                .rotate-180 {
                transform: rotate(180deg);
                position: relative;
                bottom: .1rem;
                left: -2px;
                }


                 .rotate-00 {
                transform: rotate(0deg);
                position: relative;
                top: 1.1rem;
                left: 21.4rem;
                }
                .rotate-900 {
                    transform: rotate(90deg);
                    position: relative;
                    top: 1.1rem;
                    right: 4.5rem;
                    }

                    
        }

        @media (max-width: 415px) {
            .rotate-270 {
                transform: rotate(270deg);
                position: relative;
                bottom: .1rem;
                left: 17.2rem;
                }
                .rotate-0 {
                transform: rotate(0deg);
                position: relative;
                top: 89.3rem;
                left: 16.9rem;
                }
                .rotate-180 {
                transform: rotate(180deg);
                position: relative;
                bottom: .1rem;
                left: -2px;
                }


                 .rotate-00 {
                transform: rotate(0deg);
                position: relative;
                top: 1.1rem;
                left: 20.2rem;
                }
                .rotate-900 {
                    transform: rotate(90deg);
                    position: relative;
                    top: 1.1rem;
                    right: 4.5rem;
                    }

                    
        }

        @media (max-width: 391px) {
            .rotate-270 {
                transform: rotate(270deg);
                position: relative;
                bottom: .1rem;
                left: 15.7rem;
                }
                .rotate-0 {
                transform: rotate(0deg);
                position: relative;
                top: 89.3rem;
                left: 16.9rem;
                }
                .rotate-180 {
                transform: rotate(180deg);
                position: relative;
                bottom: .1rem;
                left: -2px;
                }


                 .rotate-00 {
                    transform: rotate(0deg);
                    position: relative;
                    top: 1.1rem;
                    left: 18.9rem;
                    }

                    .rotate-900 {
                    transform: rotate(90deg);
                    position: relative;
                    top: 1.1rem;
                    right: 4.5rem;
                    }
        }


        @media (max-width: 376px) {
            .rotate-270 {
                transform: rotate(270deg);
                position: relative;
                bottom: .1rem;
                left: 14.8rem;
                }
                .rotate-0 {
                transform: rotate(0deg);
                position: relative;
                top: 89.3rem;
                left: 16.9rem;
                }
                .rotate-180 {
                transform: rotate(180deg);
                position: relative;
                bottom: .1rem;
                left: -2px;
                }


                 .rotate-00 {
                    transform: rotate(0deg);
                    position: relative;
                    top: 1.1rem;
                    left: 17.9rem;
                    }

                    .rotate-900 {
                    transform: rotate(90deg);
                    position: relative;
                    top: 1.1rem;
                    right: 4.5rem;
                    }
        }

        @media (max-width: 361px) {
            .rotate-270 {
                transform: rotate(270deg);
                position: relative;
                bottom: .1rem;
                left: 13.8rem;
                }
                .rotate-0 {
                transform: rotate(0deg);
                position: relative;
                top: 89.3rem;
                left: 16.9rem;
                }
                .rotate-180 {
                transform: rotate(180deg);
                position: relative;
                bottom: .1rem;
                left: -2px;
                }


                 .rotate-00 {
                    transform: rotate(0deg);
                    position: relative;
                    top: 1.1rem;
                    left: 16.9rem;
                    }

                    .rotate-900 {
                    transform: rotate(90deg);
                    position: relative;
                    top: 1.1rem;
                    right: 4.5rem;
                    }
        }

        @media (max-width: 345px) {
            .rotate-270 {
                transform: rotate(270deg);
                position: relative;
                bottom: .1rem;
                left: 12.8rem;
                }
                .rotate-0 {
                transform: rotate(0deg);
                position: relative;
                top: 89.3rem;
                left: 16.9rem;
                }
                .rotate-180 {
                transform: rotate(180deg);
                position: relative;
                bottom: .1rem;
                left: -2px;
                }


                 .rotate-00 {
                    transform: rotate(0deg);
                    position: relative;
                    top: 1.1rem;
                    left: 15.9rem;
                    }

                    .rotate-900 {
                    transform: rotate(90deg);
                    position: relative;
                    top: 1.1rem;
                    right: 4.5rem;
                    }
        }

        

    
    /* Phones (SE to XR to Galaxy S20 Ultra) */
    @media (max-width: 599px) {
      
    }


    /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 20px 10px;
            }
            .section-hover-item {
                flex-direction: column;
                text-align: center;
                gap: 20px;
                padding: 20px 0;
            }
            .section-hover-title {
                font-size: 2rem;
            }
            .section-hover-subtitle {
                font-size: 1rem;
            }
            .section-hover-cover {
                width: 160px;
                height: 240px;
                top: -120px;
            }
            .section-hover-number {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            .section-hover-cover-title {
                font-size: 1.2rem;
            }
            .section-hover-cover-series {
                font-size: 0.9rem;
            }
            .hero-section {
            display: flex;
            justify-content: space-between;
            text-align: center;
            position: relative;
            margin:0px 80px 0px 80px;
            flex-direction: column;
        
            }
            .navbar{
                display: none;
            }
            .top-width {
            padding: 0rem;
            }
            
            .container-4 {
                display: flex;
                flex-wrap: wrap;
                width: 120px;
                height: 50px;
                gap: 10px;
                }

                
                            


           


        }

    /* Small Tablets / Foldables (iPad Mini, Fold5 portrait) */
    @media (min-width: 600px) and (max-width: 767px) {
      main {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* Medium Tablets (iPad Air, Fold5 landscape) */
    @media (min-width: 768px) and (max-width: 1023px) {
      main {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* Large Tablets & Laptops (iPad Pro, Surface Pro 7) */
    @media (min-width: 1024px) and (max-width: 1366px) {
      main {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* Desktops & Zenbook Fold or Surface Duo Unfolded */
    @media (min-width: 1367px) {
      main {
        grid-template-columns: repeat(4, 1fr);
      }
    }



        


     

    