:root {
    --primary-color: #e74c3c;
    --primary-dark: #c0392b;
    --secondary-color: #3498db;
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #777777;
    --white: #ffffff;
    --light-bg: #f9f9f9;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    line-height: 1.6;
}

/* General Styles */


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 249, 249, 0.98) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color) 0%, rgba(231, 76, 60, 0.1) 70%);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.3;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.hero-txt-content {
    width: 55%;
    text-align: left;
    animation: fadeInUp 0.8s ease-out;
}

.hero-img-content {
    width: 45%;
    position: relative;
    animation: fadeIn 1s ease-out;
}

.hero-img-wrapper {
    position: relative;
    padding-top: 20px;
}

.hero-img-content img {
    width: 100%;
    height: auto;
    border-radius: 800px 800px 0 0;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.img-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-color);
    border-radius: 800px 800px 0 0;
    top: 18px;
    left: 18px;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0.2, 0.2, 1);
    box-shadow: 0 8px 32px rgba(231, 76, 60, 0.15), 0 2px 8px rgba(52, 152, 219, 0.08);
    background: linear-gradient(120deg, rgba(231,76,60,0.07) 0%, rgba(52,152,219,0.05) 100%);
    pointer-events: none;
}

.hero-img-wrapper:hover img {
    transform: translate(-5px, -5px);
}

.hero-img-wrapper:hover .img-decoration {
    transform: translate(5px, 5px);
}

.hero h1 {
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.2rem, 4.5vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

.highlight {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    /*position: relative;*/
    /*display: inline-block;*/
}

/*.highlight::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 5px;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 8px;*/
/*    background-color: rgba(231, 76, 60, 0.3);*/
/*    z-index: -1;*/
/*    transform: scaleX(1.05);*/
/*}*/

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2.5rem;
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 90%;
}

.hero-btn-container {
    display: flex;
    gap: 15px;
    margin-bottom: 2.5rem;
}

.hero-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.hero-btn.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.hero-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

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

.hero-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-medium);
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-txt-content, .hero-img-content {
        width: 100%;
        text-align: center;
    }
    
    .hero p {
        max-width: 100%;
    }
    
    .hero-btn-container {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-btn-container {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* Services Section - Slider */
.services {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

     .slick-prev {
        left: 5px;
    }
    
    .slick-next {
        right: 5px;
    } 
.services .container{

    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 1rem;
}

.section-title p {
    color: #777777;
    max-width: 700px;
    margin: 0 auto;
}

.services-slider {
    position: relative;
    display: flex;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    margin: 0 15px 20px;
}

.service-img {
    height: 200px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333333;
}

.service-content p {
    color: #777777;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.book-now {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.pricing-section {
    background-color: #ffffff;
    padding: 60px 0;
    margin: 40px 0;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-align: center;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 4px;
    background-color: #e74c3c;
}

.section-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.packages-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
}

/* Standard Package Card */
.pricing-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    flex: 1;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.price-badge {
    position: absolute;
    top: 20px;
    right: -40px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.9rem;
}

.price-header {
    text-align: center;
    margin-bottom: 25px;
}

.price-header h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 15px;
}

.features-list {
    list-style-type: none;
    margin-bottom: 30px;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    align-items: center;
}

.features-list li span:first-child {
    color: #e74c3c;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Custom Package Card */
.custom-package-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    flex: 1;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.custom-header {
    text-align: center;
    margin-bottom: 20px;
}

.custom-header h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.custom-icon {
    margin: 0 auto 15px;
    width: 60px;
    height: 60px;
}

.custom-content {
    flex-grow: 1;
}

.custom-content p {
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 20px;
}

.custom-features {
    list-style-type: none;
    margin-bottom: 30px;
    padding-left: 20px;
}

.custom-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.custom-features li::before {
    content: "•";
    color: #e74c3c;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
}

/* CTA Buttons */
.cta {
    text-align: center;
}

.cta a {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid #e74c3c;
}

.cta a:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

.custom-cta {
    background-color: transparent !important;
    color: #e74c3c !important;
}

.custom-cta:hover {
    background-color: #e74c3c !important;
    border-color: #e74c3c !important;
    color: white !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .packages-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card,
    .custom-package-card {
        width: 100%;
        max-width: 100%;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .price-header h3,
    .custom-header h3 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }
}


/* Portfolio Section - Slider */
.portfolio {
    padding: 5rem 2rem;
}

.portfolio-slider {
    margin: 0 -10px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    width: 250px;
    margin: 0 10px;
}

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

.video-container {
    overflow: hidden;
    aspect-ratio: 9/16;
}

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

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

/* Slider Arrows */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

}

.slick-prev {
    left: -60px;
    margin-left: 10px;
}

.slick-next {
    right: -60px;
    margin-right: 10px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 24px;
    color: #e74c3c;
    opacity: 0.9;
    content: ''; /* Remove default content */
    display: block;
}

.slick-prev:before {
    content: '\276E'; /* Unicode for left arrow (❮) */
}

.slick-next:before {
    content: '\276F'; /* Unicode for right arrow (❯) */
}

.slick-prev:hover:before,
.slick-next:hover:before {
    opacity: 1;
}

/* Slider Dots */
.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #e74c3c;
    opacity: 0.7;
}

.slick-dots li.slick-active button:before {
    color: #e74c3c;
    opacity: 1;
}

/* Optional Responsive Tweaks */
@media (max-width: 480px) {
    .slick-prev, .slick-next {
        width: 35px;
        height: 35px;
    }
    .slick-prev {
        left: -40px;
    }
    .slick-next {
        right: -40px;
    }
    
    .hero h1{
        font-size: 0.7rem;
    }
}

/* Testimonials */
.testimonials {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555555;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: #333333;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: #777777;
    font-size: 0.9rem;
}


/* Video Reels Section */
.video-reels {
    padding: 5rem 0;
    background-color: #f5f5f5;
}

.video-slider {
    margin: 0 -15px;
}

.video-item {
    padding: 0 15px;
}

.custom-video-player {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    border-color: none;
}

.custom-video-player video {

    width: 100%;
    display: block;
    aspect-ratio: 9/16;
    object-fit: cover;
}

.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.custom-video-player:hover .custom-controls {
    opacity: 1;
}

.play-pause-btn, .mute-btn, .fullscreen-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 5px 8px;
    margin-right: 5px;
}

.play-pause-btn {
    margin-right: 10px;
}

.pause-icon {
    display: none;
}

.progress-container {
    flex-grow: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
    border-radius: 3px;
    cursor: pointer;
}

.progress-bar {
    height: 100%;
    background: #e74c3c;
    border-radius: 3px;
    width: 0%;
}

.time-display {
    color: white;
    font-size: 12px;
    margin: 0 10px;
    font-family: monospace;
}

.mute-icon {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-reels {
        padding: 3rem 0;
    }
    
    .video-slider .slick-prev {
        left: 10px;
    }
    
    .video-slider .slick-next {
        right: 10px;
    }
}

/* CTA Section */
.i-cta {
    text-align: center;
    background-color: #e74c3c;
    padding: 5rem 2rem;
    color: white;
}

.i-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.i-cta p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.i-cta-btn {
    background-color: white;
    color: #e74c3c;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.i-cta-btn:hover {
    background-color: #000000;
    color: white;
}

.i-cta-btn:active {
    background-color: #333333;
}


@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
}

@media (max-width: 545px){
    .hero h1{
        font-size: clamp(0.8rem, 7vw, 2rem);
    }
    .hero p{
            font-size: clamp(0.67rem, 3.3vw, 1.33rem);
    }
}