    @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cormorant Garamond', serif;
            background-color: #e6e9ed;
        }

        .top-section {
            display: flex;
            min-height: 100vh;
            flex-direction: column;
        }

        @media (min-width: 768px) {
            .top-section {
                flex-direction: row;
            }
        }

        .left-column, .right-column {
            flex: 1;
            padding: 20px;
        }

        @media (min-width: 768px) {
            .left-column, .right-column {
                padding: 40px;
            }
        }

        h1 {
            font-size: 24px;
            font-weight: 300;
            margin-bottom: 20px;
        }

        @media (min-width: 768px) {
            h1 {
                font-size: 32px;
                margin-bottom: 40px;
            }
        }

        .book-entry {
            margin-bottom: 20px;
        }

        @media (min-width: 768px) {
            .book-entry {
                margin-bottom: 40px;
            }
        }

        .book-title {
            margin-bottom: 5px;
        }

        .book-title span {
            color: #a0522d;
        }

        .date {
            font-size: 14px;
            margin-bottom: 10px;
        }

        .description {
            font-size: 16px;
            line-height: 1.4;
        }

        .book-card {
            background-color: white;
            margin: 10px 0;
            padding: 20px;
        }

        @media (min-width: 768px) {
            .book-card {
                margin: 10px;
            }
        }

        .bottom-section {
            background-color: #2f3640;
            color: white;
            padding: 40px 20px;
        }

        .tagline {
            text-align: center;
            font-size: 14px;
            margin-bottom: 10px;
        }

        h2 {
            text-align: center;
            font-size: 28px;
            font-weight: 300;
            margin-bottom: 20px;
        }

        @media (min-width: 768px) {
            h2 {
                font-size: 36px;
                margin-bottom: 40px;
            }
        }

        .dark-image {
            width: 100%;
            height: 300px;
            background-color: #1e2a38;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .dark-image {
                height: 400px;
            }
        }

        .typewriter {
            width: 95%;
            height: 95%;
        }

        .services-heading {
            text-align: center;
            font-size: 24px;
            margin-bottom: 20px;
        }

        @media (min-width: 768px) {
            .services-heading {
                font-size: 28px;
                margin-bottom: 40px;
            }
        }

        .services-grid {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        @media (min-width: 768px) {
            .services-grid {
                flex-direction: row;
                justify-content: space-around;
            }
        }

        .service-card {
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 20px;
            width: 100%;
            text-align: center;
            margin-bottom: 20px;
        }

        @media (min-width: 768px) {
            .service-card {
                width: 30%;
                margin-bottom: 0;
            }
        }

        .book-now {
            display: inline-block;
            border: 1px solid white;
            padding: 8px 16px;
            margin-top: 15px;
            color: white;
            text-decoration: none;
            font-size: 14px;
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: #2f3640;
            padding: 20px;
            z-index: 100;
        }

        .logo {
            color: white;
            font-size: 20px;
            text-align: center;
            margin-bottom: 10px;
            display: flex;
    	    align-items: center;
            gap: 10px;
        }

        @media (min-width: 768px) {
            .logo {
                font-size: 25px;
                text-align: left;
                margin-bottom: 0;
            }
        }


        .navigation ul {
            list-style-type: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        @media (min-width: 768px) {
            .navigation ul {
                flex-direction: row;
                justify-content: flex-end;
                gap: 20px;
            }
        }

        .navigation a {
            text-decoration: none;
            color: #fff;
        }

/*HAMBURGER MENU*/
/* Hamburger Menu Styles */
.hamburger {
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

/* Responsive Navigation */
@media screen and (max-width: 768px) {

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .navigation {
        position: fixed;
        right: -100%;
        top: 70px;
        width: 100%;
        background-color: #2f3640;
        padding: 20px;
        transition: 0.3s;
    }

    .navigation.active {
        right: 0;
    }

    .navigation ul {
        flex-direction: column;
        align-items: center;
    }

    .navigation ul li {
        margin: 10px 0;
    }
}
/*HAMBURGER MENU*/

/*
        .footer {
            background-color: grey;
            padding: 40px 20px;
            font-family: 'Cormorant Garamond', serif;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .footer-content {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }

        .footer-logo {
            font-size: 20px;
            font-weight: bold;
            color: white;
            margin-bottom: 20px;
        }

        @media (min-width: 768px) {
            .footer-logo {
                font-size: 24px;
                margin-bottom: 0;
            }
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        @media (min-width: 768px) {
            .newsletter-form {
                flex-direction: row;
                align-items: center;
            }
        }

        .newsletter-form input[type="email"] {
            padding: 10px;
            border: 1px solid #2f3640;
            margin-bottom: 10px;
            font-family: 'Cormorant Garamond', serif;
            width: 100%;
            max-width: 250px;
        }

        @media (min-width: 768px) {
            .newsletter-form input[type="email"] {
                margin-right: 10px;
                margin-bottom: 0;
            }
        }

        .newsletter-form button {
            padding: 10px 20px;
            background-color: #2f3640;
            color: #fff;
            border: none;
            cursor: pointer;
            font-family: 'Cormorant Garamond', serif;
            width: 100%;
            max-width: 250px;
        }

        @media (min-width: 768px) {
            .newsletter-form button {
                width: auto;
            }
        }

        .newsletter-text {
            font-size: 14px;
            margin-bottom: 10px;
            text-align: center;
        }

        @media (min-width: 768px) {
            .newsletter-text {
                margin-right: 20px;
                margin-bottom: 0;
                text-align: left;
            }
        }
*/

/*
NEW FOOTER
*/
.footer {
    background: linear-gradient(135deg, #242a47 0%, #1a1a2e 100%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 100px;
    display: flex;
    align-items: center;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(249, 213, 110, 0.2) 20%,
        rgba(249, 213, 110, 0.5) 50%,
        rgba(249, 213, 110, 0.2) 80%,
        transparent
    );
    filter: blur(1px);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    gap: 3rem;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.footer-logo {
   /* font-family: 'Cinzel', serif;*/
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #f9d56e;
    white-space: nowrap;
    position: relative;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.footer-logo::before,
.footer-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.footer-logo:hover::before {
    border-color: rgba(249, 213, 110, 0.3);
    transform: skew(2deg);
}

.footer-logo:hover::after {
    border-color: rgba(249, 213, 110, 0.3);
    transform: skew(-2deg);
}

.newsletter-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    min-width: 500px;
}

.newsletter-form::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(45deg, #f9d56e, #ff6b6b);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.newsletter-form:hover::before {
    opacity: 0.3;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: rgba(249, 213, 110, 0.5);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(249, 213, 110, 0.1);
}

.newsletter-form button {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(45deg, #f9d56e, #ff6b6b);
    color: #1a1a2e;
    border: none;
    border-radius: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 50%);
    transform: scale(0);
    transition: transform 0.5s ease-out;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 213, 110, 0.2);
}

.newsletter-form button:hover::before {
    transform: scale(1);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-link {
    color: #f9d56e;
    font-size: 1.25rem;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f9d56e, #ff6b6b);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link:hover::before {
    opacity: 0.5;
}

/* Glow effect for elements */
@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(249, 213, 110, 0.3)); }
    50% { filter: drop-shadow(0 0 10px rgba(249, 213, 110, 0.5)); }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .footer-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .newsletter-form {
        min-width: auto;
        width: 100%;
    }
    
    .social-links {
        width: 100%;
        justify-content: center;
    }
}

/* Interactive ripple effect on click */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(249, 213, 110, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/*END NEW FOOTER*/
        .my-work {
            background-color: #1a1a2e;
            padding: 40px 20px;
            font-family: 'Cormorant Garamond', serif;
        }

        .my-work h2 {
            font-size: 28px;
            color: #fff;
            margin-bottom: 20px;
            font-weight: 300;
        }

        @media (min-width: 768px) {
            .my-work h2 {
                font-size: 32px;
                margin-bottom: 30px;
            }
        }

        .work-grid {
            display: flex;
            flex-direction: column;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .work-grid {
                flex-direction: row;
                justify-content: space-between;
                flex-wrap: wrap;
            }
        }

        .work-card {
            width: 100%;
            background-color: #fff;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        @media (min-width: 768px) {
            .work-card {
                width: calc(33.33% - 20px);
                margin-bottom: 30px;
            }
        }

        .work-card h3 {
            font-size: 22px;
            color: #333;
            margin-bottom: 10px;
            font-weight: 400;
        }

        @media (min-width: 768px) {
            .work-card h3 {
                font-size: 24px;
            }
        }

        .work-card h3 span {
            color: #a0522d;
        }

        .work-card .date {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
        }

        .work-card .description {
            font-size: 16px;
            color: #333;
            line-height: 1.4;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        

        .author-section {
  display: flex;
  align-items: center;
  padding: 5rem 2rem;
  background-color: #f5f5f5;
}

.author-details {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.author-profile {
  flex-basis: 200px;
  flex-shrink: 0;
}

.author-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.author-info {
  flex-grow: 1;
  color: white;
}

.author-name {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.author-title {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 1.5rem;
}

.author-bio {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.author-link {
  color: #007bff;
  text-decoration: none;
  font-size: 1.1rem;
}

.author-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .author-section {
    padding: 3rem 1rem;
  }

  .author-details {
    flex-direction: column;
    text-align: center;
  }

  .author-profile {
    flex-basis: auto;
  }

  .author-image {
    width: 120px;
    height: 120px;
  }

  .author-name {
    font-size: 2rem;
  }

  .author-title {
    font-size: 1rem;
  }

  .author-bio {
    font-size: 1rem;
  }

  .author-link {
    font-size: 1rem;
  }
} 

.author-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.author-link:hover {
    background-color: #242a47;
    color: #242a47;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/*popup*/
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    background-color: #242a47;
    color: white;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    margin: 50px auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-content h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.popup-text {
    line-height: 1.6;
    font-size: 16px;
}

.popup-text p {
    margin-bottom: 15px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: white;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #ff4444;
}

/* Custom scrollbar for the popup */
.popup-content::-webkit-scrollbar {
    width: 8px;
}

.popup-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.popup-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.popup-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}
/*end-popup*/


.work-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.work-card:hover {
    transform: scale(1.02);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/*START SOCIAL ON BASE.HTML*/
.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    font-size: 1.5rem; /* Adjust size */
    color: #f0a500; /* Adjust color */
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: #ffcc00; /* Change color on hover */
}

/*END SOCIAL ICONS*/


/*LOGO ANIMATION*/
/*END LOGO ANIMATION*/
