/* General Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}
/* style for nav links */
.nav-link.active {
    background-color: rgb(33, 54, 62);
    color: white !important;
    border-radius: 5px; /* optional for better visuals */
  }
  
/* Hero Section */
.hero-section {
    background: linear-gradient(rgb(25, 75, 113), rgb(33, 54, 62), rgb(25, 75, 113)),
                url('image/welcome.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding-top: 80px;
}
/* hero image style goes here */
.w-90 {
    width: 90% !important;
  }
  
  @media (min-width: 768px) {
    .w-md-50 {
      width: 50% !important;
    }

  }
/* my about us section */
.about-img{
    width: 50%;
}

/* Section Styling */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Card Styling */
.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
}

/* Certification Cards */
.cert-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-5px);
}

/* Form Styling */
.form-control {
    border: 1px solid #ddd;
    padding: 12px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--secondary-color);
}

/* Button Styling */
.btn {
    padding: 10px 25px;
    border-radius: 5px;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}

/* Animation */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* General Styles */
body {
    background-color: #ffd7e9;
    font-family: 'Arial', sans-serif;
}

/* Hero Section */
.birthday-hero {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}


/* Floating Balloons Animation */
.floating-balloons span {
    font-size: 50px;
    position: absolute;
    animation: float 6s infinite;
}

.floating-balloons span:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.floating-balloons span:nth-child(2) {
    left: 50%;
    animation-delay: 2s;
}

.floating-balloons span:nth-child(3) {
    right: 10%;
    animation-delay: 4s;
}

/* Slideshow Styling */
.carousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    padding: 20px;
}

/* Birthday Message Styling */
.birthday-message {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Cake Animation */
.cake-container {
    margin: 50px auto;
    position: relative;
}

.cake {
    width: 200px;
    height: 100px;
    background: #ff69b4;
    border-radius: 10px;
    position: relative;
    margin: 0 auto;
}

.candle {
    width: 20px;
    height: 40px;
    background: #fff;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* CSS for the blog listing Page */
/* --------------------------------- */
.entry2 h2 {
  font-size: 24px;
  /* background-color: transparent; */
  font-weight: 700;
  margin-top: 2%;
}
.entry2 a{
  text-decoration: none;
  color: #000;
}
.site-section{
  padding-top:5% ;
}

.blog-detail{
  padding: 4% 5%;
}

.blog-detail h3{
  color:#6d5b98;
}
.news-pic{
  border-radius: 20px;
  }
  .news-pic{
  width: 100%;
  }
  .latest{
  margin: 4% 0px;
  }
  .news-block-title-link{
    text-decoration: none;
    color:#6d5b98;
    font-size: 23px;
  }

.froala-view img {
  max-width: 100% !important; 
  height: auto; /* Maintains the aspect ratio */
  display: block; /* Prevents inline alignment issues */
}
@media only screen and (max-width: 600px) {
  .blog-title{
    font-size: 20px;
  }
  .news-block-title-link{
    font-size: 19px;
  }
  .blog-detail{
  padding: 16% 5%;
}

}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .birthday-title {
        font-size: 3rem;
    }
    .name-title {
        font-size: 2.5rem;
    }
    .carousel-item img {
        height: 300px;
    }
    .hero-text{
        margin-top: 30px;
    }
    .about-img{
        width: 100%;
    }
    
} 