body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #3f021c28;
    color: #91232328;
    padding: 0px;
}

header {
    background: #3b04221c;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: rgba(255, 255, 255, 0.979);
    text-decoration: none;
}

main {
    padding: 30px;
    text-align: center;
    color: white;

}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 15px;
    background: #8b3147;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.button:hover {
    background: #350117;
}

footer {
    background: #222;
    color: #ddd;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

footer a {
    color: #ddd;
    text-decoration: underline;
}

.contact-box {
    background: #4b0315;
    padding: 20px;
    margin: 30px auto;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-box p {
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-box a {
    color: #97ff0e;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

.hobby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.hobby-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.hobby-item h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.hobby-item p {
    font-size: 14px;
    color: #555;
}

blockquote {
    font-style: italic;
    background: #f9f9f9;
    border-left: 4px solid #007BFF;
    padding: 10px 15px;
    margin: 20px 0;
    color: #333;
}

ul {
    list-style: none;
    padding: 0;
}

ul li::before {
    content: "🪶";
    margin-right: 8px;
    color: rgb(94, 14, 70);

}
.portfolio-section {
    background: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    max-width: 900px;
    margin: 30px auto;
    box-shadow: 0 4px 12px rgba(49, 6, 18, 0.05);
}

.portfolio-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #640e2f;
}

.portfolio-section p {
    font-size: 16px;
    color: #4b091f;
    margin-bottom: 30px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.portfolio-item {
    background: #fafafa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.portfolio-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #571025;
}

.portfolio-item p {
    font-size: 14px;
    color: #666;
}

/* Responsive Fixes */
@media (max-width: 600px) {
    .portfolio-section {
        padding: 20px 10px;
    }

    .portfolio-section h2 {
        font-size: 22px;
    }
}

.selected-works {
    background: linear-gradient(135deg, #420633, #f0f4ff);
    padding: 40px 30px;
    margin: 40px auto;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: -50px;
}

.selected-works h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 5px;
    position: relative;
}

.selected-works h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #007BFF;
    margin: 10px auto 0;
    border-radius: 2px;
}

.selected-works ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.selected-works li {
    background: #ffffff;
    border-left: 6px solid #007BFF;
    margin: 15px auto;
    padding: 15px 20px;
    max-width: 600px;
    border-radius: 10px;
    font-size: 16px;
    color: #555;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.selected-works li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    background: #f9fbff;
}

.selected-works li::before {
    content: "✔️ ";
    margin-right: 8px;
    font-size: 18px;
}
/* Finance Hero Section */
.finance-hero {
    background: linear-gradient(135deg, #00B4DB, #0083B0);
    color: white;
    padding: 50px 20px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 1000px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.finance-hero h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.finance-hero p {
    font-size: 16px;
    margin-bottom: 20px;
}

.finance-hero .button {
    background: #ffffff;
    color: #007BFF;
    font-weight: bold;
    border-radius: 6px;
    padding: 12px 25px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.finance-hero .button:hover {
    background: #e9e9e9;
    color: #0056b3;
}

/* Finance Cards Section */
.finance-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
}

.finance-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.finance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.finance-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    color: #007BFF;
}

.finance-card p {
    font-size: 15px;
    color: #555;
}

/* Responsive Tweak */
@media (max-width: 600px) {
    .finance-hero h2 {
        font-size: 24px;
    }

    .finance-card h3 {
        font-size: 18px;
    }
}

.hero-writing {
    background: #fff8ee;
    border: 2px solid #e0d5c2;
    border-radius: 16px;
    margin: 40px auto;
    padding: 40px 20px;
    max-width: 800px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.hero-writing::before, .hero-writing::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background: #fff8ee;
    border: 2px solid #e0d5c2;
    z-index: -1;
}

.hero-writing::before {
    left: -5%;
    transform: rotateY(-5deg);
    box-shadow: -5px 0 10px rgba(0,0,0,0.05);
}

.hero-writing::after {
    right: -5%;
    transform: rotateY(5deg);
    box-shadow: 5px 0 10px rgba(0,0,0,0.05);
}

.hero-writing h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.hero-writing p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.hero-writing .button {
    background: #e0d5c2;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    color: #4a3b2c;
    font-weight: bold;
    transition: background 0.3s ease;
}

.hero-writing .button:hover {
    background: #d2c3ac;
}



/* Writing Section */
.hero-writing {
  background: linear-gradient(135deg, #ffe4ec, #e0f7fa);
  text-align: center;
  padding: 80px 20px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  max-width: 1000px;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.hero-writing h2 {
  font-size: 2.5rem;
  color: #5e4b8b;
  margin-bottom: 15px;
  text-shadow: 1px 1px #ffffffa0;
}

.hero-writing p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.hero-writing .button {
  display: inline-block;
  background-color: #ff92a5;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(255, 146, 165, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-writing .button:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: #ff7a92;
}

.hero-writing::before,
.hero-writing::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.hero-writing::before {
  width: 150px;
  height: 150px;
  top: -40px;
  left: -40px;
  animation: float 6s ease-in-out infinite;
}

.hero-writing::after {
  width: 120px;
  height: 120px;
  bottom: -30px;
  right: -30px;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(15px); }
}

.writing-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 40px auto;
  font-family: 'Poppins', sans-serif;
}

.writing-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.writing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.writing-card h3 {
  font-size: 1.8rem;
  color: #5e4b8b;
  margin-bottom: 15px;
}

.writing-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  max-width: 90%;
  margin: 0 auto;
}


section {
  padding: 60px 20px;
  background-color: transparent;
  font-family: Arial, sans-serif;
}

section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffffff;
}

.design-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.design-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.design-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.design-box p {
  margin: 15px 0;
  font-weight: bold;
  font-size: 1.1rem;
  color: #555;
}

.design-box video,
.design-box img {
  max-width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 600px) {
  section h2 {
    font-size: 1.8rem;
  }
}


.clickable {
  cursor: pointer;
  padding: 16px 24px;  /* Adjust padding as needed */
  border-radius: 12px;
  background-color: #e70ebc77;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.clickable:hover {
  transform: translateY(-5px);
  background-color: #aa0f5c;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
