/* Base Section Styling */
/* Base Slider Styling */


 /* Base Section */
#families {
	margin: 60px 0;
	padding: 40px 20px;
	background-color: #f9f9f9;
	text-align: center;
  }
  
  .section-title {
	font-size: 2.5rem;
	margin-bottom: 10px;
	color: #4b0082;
  }
  
  .section-intro {
	font-size: 1.1rem;
	color: #666;
	max-width: 700px;
	
  }
  
  /* Slider Container */
  .slider {
	position: relative;
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
  overflow: hidden;
	border-radius: 10px;
	aspect-ratio: 16/9;
	background: #000116;
  }
  
  /* Slide */

  

.slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 1.5s ease-in-out, opacity 1s ease-in-out;
  pointer-events: none;
}


.slider .slide.active {
  opacity: 1;
  clip-path: circle(150% at 50% 50%);
  z-index: 1;
  pointer-events: auto;
}

  
  /* Image */
  .slider .slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 10px;
  }
  
  /* Slide Info Box */
  .slider .slide .info {
	position: absolute;
	bottom: 30px;
	left: 30px;
	background: rgba(255, 255, 255, 0.3);
	padding: 15px 25px;
	border-radius: 8px;
	color: #222;
	max-width: 75%;
	text-align: left;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  }
  
  .slider .slide .info h2 {
	font-size: 1.8rem;
	margin-bottom: 5px;
  }
  
  .slider .slide .info p {
	font-size: 1rem;
  }
  
  /* Navigation Arrows */
  .navigation {
	position: absolute;
	top: 50%;
	width: 100%;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 2;
  }
  
  .slider:hover .navigation {
	opacity: 1;
  }
  
  .prev-btn, .next-btn {
	font-size: 2rem;
	background: rgba(255, 255, 255, 0.8);
	color: #222;
	padding: 10px 14px;
	cursor: pointer;
	user-select: none;
	border-radius: 3px;
  }
  
  /* Slide Indicators */
  .navigation-visibility {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 2;
  }
  
  .slide-icon {
	width: 20px;
	height: 10px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 5px;
	cursor: pointer;
  }
  
  .slide-icon.active {
	background: #4285f4;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
  .slider {
    aspect-ratio: 16/9;
    height: auto;
  }


  
	.slider .slide .info {
	  position: relative;
	  left: 0;
	  bottom: 0;
	  margin: 15px auto;
	  text-align: center;
	  max-width: 90%;
	}
  
	.slider .slide .info h2 {
	  font-size: 1.5rem;
	}
  
	.slider .slide .info p {
	  font-size: 0.95rem;
	}
  }
  
  
  
/*End Slider*/


/* Base styles */
/*
.second-section {
	padding: 40px 20px;
	background-color: #fff;
	max-width: 1200px;
	margin: 0 auto;
  }
  
  .second-section-content {
	display: flex;
	gap: 40px;
	align-items: center;
	flex-wrap: wrap;
  }
  
  .second-section-image {
	flex: 1 1 400px;
	text-align: center;
  }
  
  .ss-img {
	width: 100%;
	max-width: 500px;
	border-radius: 10px;
	object-fit: cover;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  
  .second-section-text {
	flex: 1 1 400px;
  }
  
  .badge {
	display: inline-block;
	border: 3px solid red;
	color: red;
	padding: 10px 20px;
	text-align: center;
	font-weight: bold;
	border-radius: 5px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
  }
  
  .badge:hover {
	background-color: red;
	color: white;
  }
  
  .icon-group {
	display: flex;
	gap: 20px;
	font-size: 1.8rem;
	color: red;
	margin: 20px 0;
  }
  
  .icon-group a {
	color: red;
	text-decoration: none;
  }
  
  .section-writeup h1 {
	color: purple;
	font-size: 1.8rem;
	margin-bottom: 10px;
  }
  
  .section-writeup h3 {
	color: red;
	margin-bottom: 15px;
	font-weight: 500;
  }
  
  .section-writeup p {
	font-size: 1rem;
	line-height: 1.6;
	color: #333;
	text-align: justify;
  }
  */
  /* Responsive styles */
 /*
  @media (max-width: 992px) {
	.second-section-content {
	  flex-direction: column;
	  text-align: center;
	}
  
	.second-section-text {
	  margin-top: 30px;
	}
  
	.icon-group {
	  justify-content: center;
	}
  
	.section-writeup p {
	  text-align: center;
	}
  }
  
  @media (max-width: 576px) {
	.badge {
	  padding: 8px 16px;
	  font-size: 0.9rem;
	}
  
	.icon-group {
	  font-size: 1.5rem;
	  gap: 15px;
	}
  
	.section-writeup h1 {
	  font-size: 1.5rem;
	}
  
	.section-writeup p {
	  font-size: 0.95rem;
	}
  }
  */




/*New Secod Section*/

      .second-section {
            padding: 60px 20px;
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab, #ff6b9d, #845ec2);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        .floating-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .particle:nth-child(1) {
            width: 10px;
            height: 10px;
            left: 10%;
            animation-delay: 0s;
            animation-duration: 8s;
        }

        .particle:nth-child(2) {
            width: 15px;
            height: 15px;
            left: 20%;
            animation-delay: 2s;
            animation-duration: 10s;
        }

        .particle:nth-child(3) {
            width: 8px;
            height: 8px;
            left: 70%;
            animation-delay: 4s;
            animation-duration: 12s;
        }

        .particle:nth-child(4) {
            width: 12px;
            height: 12px;
            left: 80%;
            animation-delay: 1s;
            animation-duration: 9s;
        }

        .particle:nth-child(5) {
            width: 6px;
            height: 6px;
            left: 50%;
            animation-delay: 3s;
            animation-duration: 11s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10%, 90% {
                opacity: 1;
            }
            50% {
                transform: translateY(-10px) rotate(180deg);
                opacity: 0.8;
            }
        }

        .second-section-content {
            display: flex;
            gap: 50px;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: slideUp 1s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .second-section-image {
            flex: 1 1 400px;
            text-align: center;
            position: relative;
        }

        .image-container {
            position: relative;
            display: inline-block;
            animation: imageFloat 6s ease-in-out infinite;
        }

        @keyframes imageFloat {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .ss-img {
            width: 100%;
            max-width: 400px;
            border-radius: 25px;
            object-fit: cover;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            border: 5px solid rgba(255, 255, 255, 0.3);
        }

        .ss-img:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .image-glow {
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(45deg, #ff6b9d, #845ec2, #23a6d5, #23d5ab);
            border-radius: 35px;
            z-index: -1;
            filter: blur(20px);
            opacity: 0.7;
            animation: glowPulse 3s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% {
                opacity: 0.5;
                transform: scale(0.95);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.05);
            }
        }

        .second-section-text {
            flex: 1 1 400px;
            animation: slideInRight 1s ease-out 0.3s both;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .badge {
            display: inline-block;
            border: 3px solid #ff4757;
            background: linear-gradient(135deg, #ff4757, #ff6b9d);
            color: white;
            padding: 15px 25px;
            text-align: center;
            font-weight: bold;
            border-radius: 25px;
            margin-bottom: 25px;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(255, 71, 87, 0.3);
            animation: badgePulse 2s ease-in-out infinite;
        }

        @keyframes badgePulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 8px 20px rgba(255, 71, 87, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 12px 30px rgba(255, 71, 87, 0.5);
            }
        }

        .badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: badgeShine 3s ease-in-out infinite;
        }

        @keyframes badgeShine {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }


.icon-group {
    display: flex;
    gap: 25px;
    font-size: 2rem;
    margin: 25px 0;
    justify-content: flex-start;
}

.icon-group i,
.icon-group a {
    color: #845ec2;
    text-decoration: none;
    padding: 15px;
    background: rgba(132, 94, 194, 0.1);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    position: relative;
    overflow: hidden;
}

.icon-group i:hover,
.icon-group a:hover {
    transform: translateY(-10px) rotate(15deg) scale(1.1);
    background: linear-gradient(135deg, #845ec2, #ff6b9d);
    color: white;
    box-shadow: 0 15px 30px rgba(132, 94, 194, 0.4);
}


        .section-writeup h1 {
            background: linear-gradient(135deg, #845ec2, #ff6b9d);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 2.2rem;
            margin-bottom: 15px;
            font-weight: 800;
            position: relative;
            animation: titleGlow 3s ease-in-out infinite;
        }

        @keyframes titleGlow {
            0%, 100% {
                filter: drop-shadow(0 0 10px rgba(132, 94, 194, 0.3));
            }
            50% {
                filter: drop-shadow(0 0 20px rgba(132, 94, 194, 0.6));
            }
        }

        .section-writeup h3 {
            color: #ff4757;
            margin-bottom: 20px;
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-writeup h3 i {
            animation: clockTick 2s ease-in-out infinite;
        }

        @keyframes clockTick {
            0%, 100% {
                transform: rotate(0deg);
            }
            50% {
                transform: rotate(15deg);
            }
        }

        .section-writeup p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
            text-align: justify;
            position: relative;
            padding: 20px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 15px;
            border-left: 5px solid #845ec2;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .decorative-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }

        .heart {
            position: absolute;
            color: rgba(255, 107, 157, 0.6);
            font-size: 20px;
            animation: heartFloat 8s ease-in-out infinite;
        }

        .heart:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .heart:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: 3s;
        }

        .heart:nth-child(3) {
            bottom: 30%;
            left: 80%;
            animation-delay: 6s;
        }

        @keyframes heartFloat {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
                opacity: 0.8;
            }
        }

        /* Responsive styles */
       @media (max-width: 992px) {
            .second-section-content {
                flex-direction: column;
                text-align: center;
                gap: 30px;
                padding: 30px;
            }

            .second-section-text {
                margin-top: 0;
            }

            .icon-group {
                justify-content: center;
            }

            .section-writeup p {
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .second-section {
                padding: 40px 15px;
            }

            .second-section-content {
                padding: 25px;
                border-radius: 20px;
            }

            .badge {
                padding: 12px 20px;
                font-size: 0.8rem;
            }

            .icon-group {
                font-size: 1.6rem;
                gap: 20px;
            }

            .icon-group i, .icon-group a {
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
            }

            .section-writeup h1 {
                font-size: 1.8rem;
            }

            .section-writeup p {
                font-size: 1rem;
                padding: 15px;
            }

            .ss-img {
                max-width: 320px;
            }
        }

        @media (max-width: 576px) {
            .badge {
                padding: 10px 18px;
                font-size: 0.75rem;
            }

            .icon-group {
                font-size: 1.4rem;
                gap: 15px;
            }

            .icon-group i, .icon-group a {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }

            .section-writeup h1 {
                font-size: 1.6rem;
            }

            .section-writeup h3 {
                font-size: 1rem;
            }

            .section-writeup p {
                font-size: 0.95rem;
                padding: 12px;
            }
        }
/*END*/

/*Google Map
*/


.gMap {

	border: 1px solid red;
	margin-top: 3px;
}

.mapFrame {
	width: 100%;
}

