:root {
	--primary: #10334b; /* Primary blue color */
	--primary-dark: #2980b9;
	--primary-light: #ebf5fb;
	--dark: #2c3e50;
	--light: #f8f9fa;
	--gray: #7a7a7a;
	--white: #ffffff;
	--main-color: #db7093;
	--accent-color: #fce4ec;
	--text-color: #2c2c2c;
	--highlight-color: #c1e1dc;
}

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

/* Base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
  scroll-behavior: smooth; /* Enables smooth scrolling */
}
body {
	font-family: 'Poppins', sans-serif;
	color: var(--primary);
	line-height: 1.8;
	background-color: var(--light);
}
body, html {
  overflow-x: hidden;
}

h1, h2 {
    font-family: "Ubuntu", sans-serif;
} 

header {
	background-color: var(--primary);
	color: white;
	padding: 15px 10px;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
}

.logo img {
	width: 100%;
	max-width: 200px;
}

.logo span {
	color: var(--secondary);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

nav ul .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 10px 0;
    z-index: 1000;
}

nav ul .dropdown-menu li {
    display: block;
    white-space: nowrap;
}

nav ul li a {
	color: var(--white);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
	position: relative;
}

nav ul li a:after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background: var(--secondary);
	bottom: -5px;
	left: 0;
	transition: width 0.3s;
}

nav ul li a:hover:after {
	width: 100%;
}

.mobile-menu {
	display: none;
	font-size: 24px;
	cursor: pointer;
}
.lg-backdrop.in{background-color:rgba(0,0,0,0.8)!important;}
/* Hero Section */
.hero {
	background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), 
		url('https://social.trustyoke.com/wp-content/uploads/2025/10/premium_photo-1661338813483-d816177ec98c.webp') center/cover no-repeat;
	height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 80px;
}

.hero-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
	color: var(--white);
}

.hero h1 {
	font-size: 48px;
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero p {
	font-size: 20px;
	margin-bottom: 30px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.hero-btns {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 40px;
}

.btn {
	display: inline-block;
	padding: 15px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	border: 2px solid transparent;
}

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

.btn-primary:hover {
	background-color: transparent;
	border-color: var(--secondary);
	transform: translateY(-3px);
}

.btn-outline {
	background-color: transparent;
	border: 2px solid white;
	color: white;
}

.btn-outline:hover {
	background-color: white;
	color: var(--primary);
	transform: translateY(-3px);
}

/* Section styling */
.section {
	padding: 30px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 35px;
}

.section-title h2 {
	font-size: 36px;
	color: var(--dark);
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
}

.section-title h2:after {
	content: '';
	position: absolute;
	width: 50%;
	height: 3px;
	background: var(--primary);
	bottom: -4px;
	left: 25%;
}

.section-title p {
	color: var(--gray);
	max-width: 700px;
	margin: 0 auto;
}

/* Service card styling */
.services-section {
    padding: 30px 0;
    background-color: #f9f9f9;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
	line-height: 1;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.title-decoration {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d23669, #ffa7c4);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    margin: 0 10px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-icon-container {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #10334b;
}

.icon-background {
    position: absolute;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2rem;
    color: #d23669;
    position: relative;
    z-index: 1;
}

.service-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    color: #d23669;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #a61e4d;
}

.icon-background i {
    color: #10334b;
    position: absolute;
    top: 30%;
    right: 30%;
    font-size: 30px;
}
.slick-prev:before, .slick-next:before {
    color: #10334b !important;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}


.service-card {
	background: var(--white);
	border-radius: 15px;
	overflow: hidden;
	margin: 0 15px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: all 0.4s;
	position: relative;
	border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* .service-card:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--primary);
} */

.service-img {
/* 	height: 200px; */
	overflow: hidden;
	position: relative;
}

.service-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s;
}

.service-card:hover .service-img img {
	transform: scale(1.1);
}

.service-content {
	padding: 25px;
	position: relative;
	display: none !important;
}

section.section .service-content {
    display: block;
}

.service-icon {
	position: absolute;
	top: 20px;
	right: 25px;
	width: 60px;
	height: 60px;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 24px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	z-index: 2;
	border: 2px solid var(--primary);
}

.service-content h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--dark);
}

.service-content p {
	color: var(--gray);
	margin-bottom: 20px;
	font-size: 15px;
}

.service-link {
	display: inline-flex;
	align-items: center;
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
}

.service-link i {
	margin-left: 8px;
	transition: transform 0.3s;
}

.service-link:hover {
	color: var(--primary-dark);
}

.service-link:hover i {
	transform: translateX(5px);
}
/*********/
#graphic-designing .service-img {
    aspect-ratio: 4/5; 
/*     min-height: 274px;
    max-height: 2100px;  */
    overflow: hidden;
}

 #website-design .service-img  , #app-design .service-img , #brand-logo-design .logo-item{
    aspect-ratio: 4/3;
}

.service-img img, #graphic-designing .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
/*     min-width: 366px;
    max-width: 2800px;  */
}



/* Improved arrow design */
.slick-arrow {
	width: 50px;
	height: 50px;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	transition: all 0.3s;
	border: 2px solid var(--primary);
}

.slick-arrow:before {
	color: var(--primary);
	opacity: 1;
	font-size: 20px;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
}

.slick-prev:before {
	content: '\f060';
}

.slick-next:before {
	content: '\f061';
}

.slick-arrow:hover {
	/* background: var(--primary) !important; */
}

.slick-arrow:hover:before {
	color: #10334b;
}

.slick-prev {
	left: 3% !important;
}

.slick-next {
	right: 6% !important;
}
.slick-prev:before, .slick-next:before{
	font-size: 50px !important;
}
/* Slider container */
.slider-container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Logo slider specific styles */

.logo-wrapper {margin: 0 15px;}
.logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.8s ease;
	margin: 0 auto;
}
.logo-grid .slick-track {
    display: flex;
    align-items: center;
}

.logo-item:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .logo-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .logo-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 40px 0;
    }
}

@media (max-width: 400px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Reel slider specific styles */
.reel-item {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	height: 480px !important;
	margin: 0 10px;
}

.reel-item video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.reel-item:hover img {
	transform: scale(1.05);
}

.reel-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	color: var(--white);
	opacity: 0;
	transition: opacity 0.3s;
}

.reel-item:hover .reel-overlay {
	opacity: 1;
}

.reel-overlay i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 40px;
	color: var(--white);
}

.reel-overlay h3 {
	margin-bottom: 10px;
	font-size: 18px;
}

.reel-overlay p {
	font-size: 14px;
	opacity: 0.8;
}

/* Festival slider specific styles */
.festival-slider {
	margin: 0 -10px;
	width: calc(100% + 40px);
	left: -20px;
}

.festival-slide {
	padding: 0 10px;
	transition: transform 0.3s;
}

.festival-slide.slick-center {
	transform: scale(1.05);
}

.festival-item {
	position: relative;
	background: var(--white);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: all 0.3s;
	border: 1px solid rgba(0,0,0,0.05);
}

.festival-item img {
	width: 100%;
	height: auto;
	display: block;
}

/* Post package section */
.post-package-section {
	background: linear-gradient(135deg, var(--primary), var(--dark));
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.post-package-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 2;
	text-align: center;
}

.post-package-title h2 {
	font-size: 36px;
	margin-bottom: 20px;
}

.post-package-title p {
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto 40px;
	opacity: 0.9;
}

.post-package-highlights {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
}

.highlight-card {
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(10px);
	padding: 30px;
	border-radius: 15px;
	flex: 1;
	min-width: 250px;
	max-width: 300px;
	transition: all 0.4s;
	border: 1px solid rgba(255,255,255,0.2);
}

.highlight-card:hover {
	transform: translateY(-10px);
	background: rgba(255,255,255,0.2);
}

.highlight-icon {
	font-size: 40px;
	margin-bottom: 20px;
	color: var(--white);
}

.highlight-card h3 {
	margin-bottom: 15px;
	font-size: 20px;
}

.post-package-price {
	font-size: 48px;
	font-weight: 700;
	margin: 30px 0;
	color: var(--white);
}

.post-package-price span {
	font-size: 18px;
	font-weight: 400;
	opacity: 0.8;
}

.package-btn {
	display: inline-block;
	background: var(--white);
	color: var(--primary);
	padding: 15px 40px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	transition: all 0.3s;
	border: 2px solid transparent;
}

.package-btn:hover {
	background: transparent;
	border-color: var(--white);
	color: var(--white);
	transform: translateY(-3px);
}

.post-package-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.1;
	z-index: 1;
}

.post-package-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
	overflow: auto;
	opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}
.modal.show {
    opacity: 1;
}
.modal-content {
	margin: auto;
	padding: 20px;
    width: 100%;
	max-width: 1200px;
	top: 50%;
    background: #000;
    padding: 1rem;
    position: relative;
	transform: translateY(-50%);
    animation: modalopen 0.4s;
}

.close-modal {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 40px;
    color: #f1f1f1;
    cursor: pointer;
    z-index: 1000;
	font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

div#modalContent {
    width: 100%;
    max-width: 300px;
    height: auto;
    text-align: center;
    margin: auto;
	max-height: 80vh;
    display: flex;
    justify-content: center;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--main-color);
    text-decoration: none;
}

#modalContent img,
#modalContent video {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

@keyframes modalopen {
    from {
        opacity: 0;
        transform: translateY(-60%);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

/* Background alternation for sections */
.bg-alt {
	background: var(--primary-light);
}

/* Modern Contact Section Styles */
#contact {
    background-color: var(--light);
    padding: 30px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}

.contact-info-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    width: 40%;
    border-top: 4px solid var(--primary);
}

.contact-info-header h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-info-header p {
    color: var(--gray);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-text p, .contact-text a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.modern-contact-form {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    width: 55%;
    border-top: 4px solid var(--primary);
}

.modern-contact-form h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
}

.half-width {
    width: calc(50% - 10px);
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
    background: transparent;
    z-index: 1;
    position: relative;
}

.form-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.form-label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--gray);
    transition: all 0.3s;
    background: var(--white);
    padding: 0 5px;
    z-index: 0;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--primary);
    z-index: 2;
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
	float: ridge;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(41, 128, 185, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-card, .modern-contact-form {
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .half-width {
        width: 100%;
    }
}
/* Footer */
footer {
	background: var(--primary);
	color: white;
	padding: 80px 0 30px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	padding: 0 20px;
}

.footer-col h3 {
	font-size: 20px;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
}

.footer-col h3:after {
	content: '';
	position: absolute;
	width: 50px;
	height: 2px;
	background: var(--secondary);
	bottom: 0;
	left: 0;
}

.footer-col p {
	color: var(--white);
	margin-bottom: 20px;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: var(--white);
	text-decoration: none;
	transition: all 0.3s;
	display: block;
}

.footer-links a:hover {
	color: var(--secondary);
	transform: translateX(5px);
}

.footer-links a i {
	margin-right: 8px;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-links a {
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	transition: all 0.3s;
	text-decoration: none;
}

.social-links a:hover {
	background: var(--secondary);
	transform: translateY(-5px);
}

.newsletter-form {
	margin-top: 20px;
}

.newsletter-form input {
	width: 100%;
	padding: 12px 15px;
	border: none;
	border-radius: 5px;
	margin-bottom: 10px;
	font-family: 'Poppins', sans-serif;
}

.newsletter-btn {
	background: var(--secondary);
	color: white;
	border: none;
	padding: 12px 20px;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
	width: 100%;
	transition: all 0.3s;
}

.newsletter-btn:hover {
	background: var(--accent);
}

.copyright {
	text-align: center;
	margin-top: 50px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.1);
	color: var(--white);
	font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.section {
		padding: 20px 0;
	}

	.section-title h2 {
		font-size: 17px;
	}

	.slick-arrow {
		width: 40px;
		height: 40px;
	}

	.slick-prev {
		left: -15px;
	}

	.slick-next {
		right: -15px;
	}

	.reel-item {
		height: 300px;
	}
}

@media (max-width: 576px) {
	.section-title h2 {
		font-size: 24px;
	}

	.post-package-price {
		font-size: 36px;
	}

	.highlight-card {
		min-width: 100%;
	}
}

.content-suite-section {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    max-width: 1200px;
    margin: 40px auto;
    background: #ececec;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
	position: relative;
    z-index: 1;
}

.suite-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.header-content {
    max-width: 60%;
}

.suite-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: var(--dark);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.suite-header-container h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #222222;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.suite-description {
    font-size: 1.125rem;
    color: #555555;
    line-height: 1.5;
    margin: 0;
    max-width: 80%;
}
.pricing-display {
    text-align: center;
    min-width: 180px;
}
.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #555555;
    margin-right: 2px;
    vertical-align: super;
}
.amount {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}
.period {
    font-size: 1rem;
    color: #777777;
    margin-left: 4px;
    vertical-align: sub;
}

.price-annotation {
    font-size: 0.875rem;
    color: #666666;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 14px;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    padding: 0 48px 48px 48px;
}
.benefit-column {
    padding: 24px;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
	background: #fff;
}
.benefit-column:hover {
    background: rgba(249, 249, 249, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(219, 112, 147, 0.08);
}
.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(219, 112, 147, 0.08);
    border-radius: 12px;
}
.benefit-icon svg {
    width: 24px;
    height: 24px;
}
.benefit-column h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    margin: 0 0 12px 0;
    text-align: center;
}
.benefit-column p {
    font-size: 0.9375rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}
.cta-section {
    padding: 0 48px 48px 48px;
    max-width: 600px;
    margin: 0 auto;
}
.assurance-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.assurance-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #666666;
    gap: 6px;
}
.assurance-item svg {
    flex-shrink: 0;
}
.primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    margin-bottom: 16px;
}
.primary-cta:hover {
    background: var(--gray);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(219, 112, 147, 0.3);
}
.primary-cta svg {
    margin-left: 8px;
    transition: transform 0.2s ease;
}
.primary-cta:hover svg {
    transform: translateX(3px);
}
.availability {
    font-size: 0.875rem;
    color: var(--dark);
    font-weight: 500;
    text-align: center;
    margin: 0;
}
.about-section {
    padding: 5rem 0;
    background: var(--primary);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--white);
}
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.timeline-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.timeline-badge {
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.timeline-title {
    margin-top: 1rem;
    color: var(--primary);
}
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}
.highlight-box {
    background: rgba(219, 112, 147, 0.1);
    padding: 1rem;
    border-left: 4px solid var(--primary-dark);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.stat-item {
    background: var(--white);
    padding: 1.5rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.stat-number {
    font-size: 2rem;
    color: var(--white);
}
.cta-button {
    background: var(--primary-dark);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.cta-button:hover {
    background: var(--primary-light);
    color: var(--primary);
}
.philosophy-content {
    color: var(--white);
}
p.philosophy-text {
    margin-bottom: 10px;
}
.highlight-box {
    margin-bottom: 20px;
}
section#about-counter {
    background: var(--white);
}
section#about-counter .stat-item {
    background: var(--primary);
    color: var(--white);
}
 .lg-item.lg-loaded.lg-complete.lg-complete_ {
    position: absolute;
    top: -100%;
    left: 15%;
}

.lg-content {
    height: 100%;
}

.lg-outer .lg-inner {
    height: 100%;
}

.lg-item.lg-loaded.lg-complete.lg-complete_ {
    height: 100% !important;
}

.lg-video-cont {
    height: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lg-item.lg-loaded.lg-complete.lg-complete_ video.lg-video-object.lg-html5{
 width: 100%;
 max-width: 320px;
 margin: auto;
}
@media (max-width: 900px) {
    .suite-header-container {
        flex-direction: column;
        padding: 40px 32px;
    }
    
    .header-content {
        max-width: 100%;
        margin-bottom: 32px;
        text-align: center;
    }
    
    .suite-description {
        max-width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 32px 40px 32px;
    }
    
    .cta-section {
        padding: 0 32px 40px 32px;
    }
}

@media (max-width: 600px) {
    .suite-header-container {
        padding: 32px 24px;
    }
    
    .suite-header-container h2 {
        font-size: 1.875rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 24px 32px 24px;
    }
    
    .cta-section {
        padding: 0 24px 32px 24px;
    }
    
    .assurance-container {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

.service-icon {
    display: none;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 10px;
    }
    
    .close-modal {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}










.lets_talk > span{
	color: #fff;
	background: var(--primary);
	padding: 2px 5px;
}
.lets_talk:after{display: none;}
.slider-container{max-width: 1300px;}
.slick-prev {
    left: 0% !important;
}.slick-next {
    right: 2.5% !important;
}
.slick-initialized.slick-slider{padding: 0 50px;}


.lg-item.lg-loaded.lg-complete.lg-complete_ {
    left: 0 !important;
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont {
    width: 100% !important;
}
.benefit-icon {
    background: rgb(16 51 75);
}
.benefit-icon svg path {
    stroke: #fff;
}
.benefit-column {
	
    border-radius: 12px;
    box-shadow: 8px 8px 15px #bebebe, -8px -8px 15px #ffffff, inset 4px 4px 6px #bebebe, inset -4px -4px 6px #ffffff !important;
}
.benefit-column:hover {
    box-shadow: inset 6px 6px 10px #bebebe, inset -6px -6px 10px #ffffff !important;
}
.primary-cta {
    background: var(--dark) !important;
    color: var(--white) !important;
	text-decoration: none !important;}

.pricing-display {position: relative;padding: 30px;box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.4);overflow: hidden;background: #fff;}
.pricing-display>span:nth-child(1) {position: absolute;top: 0;right: 0;width: 100%;height: 3px;
  background: linear-gradient(to right, #171618, #3bff3b);animation: animate1 2s linear infinite;}
.pricing-display>span:nth-child(2) {position: absolute;top: 0;right: 0;height: 100%;width: 3px;
  background: linear-gradient(to bottom, #171618, #3bff3b);animation: animate2 2s linear infinite;animation-delay: 1s;}
.pricing-display>span:nth-child(3) {position: absolute;bottom: 0;right: 0;width: 100%;height: 3px;
  background: linear-gradient(to left, #171618, #3bff3b);animation: animate3 2s linear infinite;}
.pricing-display>span:nth-child(4) {position: absolute;top: 0;left: 0;height: 100%;width: 3px;
  background: linear-gradient(to top, #171618, #3bff3b);animation: animate4 2s linear infinite;animation-delay: 1s;}
html:has(body.sbi_no_scroll) {overflow: hidden;}
.lg-content .lg-icon, .fancybox-navigation .fancybox-button {background: transparent;}
.lg-content .lg-next:before , .lg-content .lg-prev:after , .fancybox-navigation .fancybox-button:before , .fancybox-navigation .fancybox-button:after {font-family: 'slick';font-size: 50px;line-height: 1;opacity: .75;color: white;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}
.lg-content .lg-next:before , .fancybox-navigation .fancybox-button--arrow_right:before {content: '→';}
.lg-content .lg-prev:after , .fancybox-navigation .fancybox-button--arrow_left:after {content: '←';}
.fancybox-navigation .fancybox-button div {display: none;}
.slick-lightbox-slick .slick-prev:before, .slick-lightbox-slick .slick-next:before {color: #FFF !important;}
.sbi_header_text {background: #833ab4;background: linear-gradient(to right,#833ab4,#fd1d1d,#fcb045);}
.sbi_header_style_boxed .sbi_bio_info {display: flex;align-items: center;}
.sbi_bio_info span {display: flex;align-items: center;line-height: 1;color: #FFF;}
.sbi_header_bar {display: flex;align-items: center;justify-content: space-between;}
.sb_instagram_header .sbi_followers svg, .sb_instagram_header .sbi_posts_count svg {margin-bottom: 2px;}
.sbi_feedtheme_header_text {padding: 0 5px;}
.sbi-share-button a {color: #8c8f9a;font-size: 13px;text-decoration: none;}
.sbi-share-button a:hover {color: #10334b;}
.sbi_header_bar .sbi_header_follow_btn {
    background: #f09433 !important;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}
.color-grade {color: #fbdd65;background: linear-gradient(270deg, #f042ff 2.36%, #facc15 79.23%);background-clip: text;-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;text-shadow: none;animation: shine 6s linear infinite;background-size: 200% auto;}
.circles{position: absolute;top: 0;left: 0;width: 100%;height: 100%;overflow: hidden;pointer-events: none;}
.circles li{position: absolute;display: block;list-style: none;width: 20px;height: 20px;background: rgba(255, 255, 255, 0.5);animation: animate 25s linear infinite;
    bottom: -150px;	z-index: -1;pointer-events: none;}
.circles li:nth-child(1){left: 25%;width: 80px;height: 80px;animation-delay: 0s;}
.circles li:nth-child(2){left: 10%;width: 20px;height: 20px;animation-delay: 2s;animation-duration: 12s;}
.circles li:nth-child(3){left: 70%;width: 20px;height: 20px;animation-delay: 4s;}
.circles li:nth-child(4){left: 40%;width: 60px;height: 60px;animation-delay: 0s;animation-duration: 18s;}
.circles li:nth-child(5){left: 65%;width: 20px;height: 20px;animation-delay: 0s;}
.circles li:nth-child(6){left: 75%;width: 110px;height: 110px;animation-delay: 3s;}
.circles li:nth-child(7){left: 35%;width: 150px;height: 150px;animation-delay: 7s;}
.circles li:nth-child(8){left: 50%;width: 25px;height: 25px;animation-delay: 15s;animation-duration: 45s;}
.circles li:nth-child(9){left: 20%;width: 15px;height: 15px;animation-delay: 2s;animation-duration: 35s;}
.circles li:nth-child(10){left: 85%;width: 150px;height: 150px;animation-delay: 0s;animation-duration: 11s;}
.slick-track {padding: 30px 0;}
.fancybox-slide--image {padding: 0 40px !important;}
.fancybox-navigation .fancybox-button--arrow_right {right: 10px !important;}
.lg-on {overflow: hidden;}
.price-list {line-height: 1;text-align: left;}
.price-list .text-muted {margin-top: 8px;display: block;line-height: 1.2;}
.text-gradient {background: linear-gradient(45deg, #ff007a, #ffcc00);-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
.pricing-card-alt {background: #fff;animation: fadeUp 1s ease forwards;opacity: 0;transform: translateY(40px);}
.btn-gradient {background: linear-gradient(45deg, #ff007a, #ffcc00);border: none;color: #fff;transition: 0.3s;position: relative;
	overflow: hidden;}
.btn-gradient::after {content: "";position: absolute;top: 0;left: -75%;width: 50%;height: 100%;background: rgba(255,255,255,0.4);
  transform: skewX(-20deg);animation: shimmer 3s infinite;}
.btn-gradient:hover {transform: scale(1.08);box-shadow: 0 8px 25px rgba(0,0,0,0.3);}
.ribbon {width: 180px;height: 35px;background: #ff007a;position: absolute;top: 12px;right: -45px;transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);animation: pulseRibbon 2s infinite;}
.price-highlight {animation: pulseGlow 2s infinite;}
.ribbon span {color: #fff;font-weight: bold;line-height: 35px;text-align: center;display: block;font-size: 0.9rem;
	animation: blinkText 1.2s infinite alternate;}
.feature-list li {opacity: 0;transform: translateX(-20px);animation: fadeSlideIn 0.8s ease forwards;gap: 10px;}
.feature-list li:nth-child(1) { animation-delay: 0.3s; }
.feature-list li:nth-child(2) { animation-delay: 0.5s; }
.feature-list li:nth-child(3) { animation-delay: 0.7s; }
.feature-list li:nth-child(4) { animation-delay: 0.9s; }
.feature-list .icon-circle {display: flex;align-items: center;justify-content: center;background: linear-gradient(135deg, #ff007a, #ffcc00);
  color: #fff;width: 40px;height: 40px;border-radius: 50%;font-size: 1.2rem;flex-shrink: 0;box-shadow: 0 3px 10px rgba(0,0,0,0.2);
	transition: 0.3s;}
.feature-list li:hover .icon-circle {transform: scale(1.2) rotate(10deg);}
.feature-list li {transition: 0.3s;padding: 10px;border-radius: 10px;}
.feature-list li:hover { background: rgba(255, 0, 122, 0.05); }
.services-grid .service-item {
    display: flex !important;
    flex-direction: column;
    height: auto;
}
.services-grid .slick-track {display: flex;height: 100%;}

@media (min-width: 768px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {display: block;}
}
@media (max-width: 768px) {
	.slick-initialized.slick-slider{padding: 0 20px;}
	.festival-slider {margin: 0;width: 100%;left: 0;}
	.hero h1 {font-size: 36px;}
	.services-section {padding-left: 20px;padding-right: 20px;}
	.festival-slider .slick-list {margin: 0 -40px;}
	.px-4.feature-list {padding: 0 !important}
	.price-list {text-align: left;}
	.pricing-card-alt {padding: 16px !important;}
	.display-5 { font-size: 1.4rem; }
    .display-4 { font-size: 2rem; }
    .ribbon {width: 140px;height: 28px;top: 8px;right: -35px;}
    .ribbon span { font-size: 0.75rem; line-height: 28px; }
}

@media (max-width: 576px) {
  .btn-gradient { font-size: 0.9rem; padding: 0.7rem 1.2rem !important; }
  .feature-list li { font-size: 0.9rem; }
}

@keyframes animate1 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes animate2 {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes animate3 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes animate4 {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes shine {
  to {
    background-position: 200% center;
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}

@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer { 100% { left: 125%; } }
@keyframes pulseRibbon {
  0%,100% { transform: rotate(45deg) scale(1); }
  50% { transform: rotate(45deg) scale(1.05); }
}
@keyframes pulseGlow {
  0%,100% { 
    text-shadow: 0 0 2px #ff007a, 0 0 4px #ffcc00; 
    transform: scale(1); 
  }
  50% { 
    text-shadow: 0 0 6px #ff007a, 0 0 12px #ffcc00; 
    transform: scale(1.05); 
  }
}
@keyframes blinkText {
  0% { opacity: 1; }
  100% { opacity: 0.5; }
}
@keyframes fadeSlideIn {
  to { opacity: 1; transform: translateX(0); }
}
