/********** Modern Template CSS **********/
.img{
    margin-right: 130px !important;
    margin-bottom: 20px !important;
}
.product-img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}
.product-img:hover {
    transform: scale(1.05);
}
.beanut-flower{
    object-fit: cover;
}

/* Modern Color Palette */
:root {
    --primary: #FF6B35;
    --primary-dark: #E85A29;
    --secondary: #FFB627;
    --accent: #4A90E2;
    --light: #F8F9FA;
    --dark: #2C3E50;
    --gray: #6C757D;
    --gradient-1: linear-gradient(135deg, #FF6B35 0%, #FFB627 100%);
    --gradient-2: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Global Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Modern Typography */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 100px; /* Space for fixed header */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Text Highlight Effects */
.text-orange {
    color: var(--primary) !important;
}

.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern Card Styles */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Content Sections */
.container-xxl,
.container-fluid {
    position: relative;
}

/* Animated Underline for Links */
a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary) !important;
}

/* =========================
   BACK TO TOP BUTTON
========================= */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff9800, #ff6a00);
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #ff6a00, #ff9800);
    transform: translateY(-4px);
    color: #fff;
}

/* Show Button */
.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Fix */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


.fw-medium {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}


/*** Modern Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 182, 39, 0.05));
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#spinner .spinner-border {
    border-color: var(--primary);
    border-right-color: transparent;
}


/*** Modern Buttons ***/
.btn {
    transition: all 0.3s ease;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 32px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #E85A29 0%, #FF9614 100%);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--gradient-2);
    border: none;
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-light {
    background: white;
    color: var(--primary);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-square {
    width: 38px;
    height: 38px;
    border-radius: 8px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Modern Navbar ***/
.sticky-top {
    position: fixed !important;
    top: 150 !important;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
}

.sticky-top.scrolled {
    box-shadow: var(--shadow-lg);
}


.navbar {
    padding: 15px 0;
}

.navbar .navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar .navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-width: 150px;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 12px 0;
        font-size: 14px;
    }
    
    .navbar .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--gray-light);
    }
    
    .navbar {
        padding: 8px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Modern Header Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background:none;
    z-index: 1;
}

.carousel-item {
    transition: transform 0.8s ease-in-out;
}
.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.35) 60%,
        rgba(0, 0, 0, 0.25) 100%
    );
    z-index: 1;
}

.carousel-item img {
    filter: brightness(0.95);
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gradient-1);
    border: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
/* =========================
   PAGE HEADER (HERO)
========================= */

.page-header {
    position: relative;
    min-height: 420px;
    background: url("../img/back-3.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dark overlay for readability */
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.45) 100%
    );
    z-index: 1;
}

/* Content on top of overlay */
.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

/* Main heading */
.page-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Subtitle */
.page-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #f1f1f1;
    letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-header {
        min-height: 300px;
    }

    .page-title {
        font-size: 34px;
    }

    .page-subtitle {
        font-size: 15px;
    }
}
/* =========================
   PAGE HEADER
========================= */

.page-header {
    position: relative;
    min-height: 380px;
    background: url("../img/back-3.webp") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dark overlay for text clarity */
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.45) 100%
    );
    z-index: 1;
}

/* Content above overlay */
.page-header .container {
    position: relative;
    z-index: 2;
}

/* Heading */
.page-header h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Subtitle */
.page-header p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .page-header {
        min-height: 280px;
    }

    .page-header h1 {
        font-size: 34px;
    }

    .page-header p {
        font-size: 15px;
    }
}


/*** Modern Section Title ***/
.section-title {
    position: relative;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--gradient-1);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.section-title:hover::before {
    width: 120px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    bottom: -8px;
    left: 30px;
    background: var(--primary);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.section-title:hover::after {
    transform: scale(1.2);
    box-shadow: var(--shadow-lg);
}

.section-title.text-center::before {
    left: 50%;
    transform: translateX(-50%);
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title.text-center:hover::after {
    transform: translateX(-50%) scale(1.2);
}

.section-title p {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-title h1 {
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}


/*** Modern Products/Services ***/
.product {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(255, 182, 39, 0.05) 100%);
    position: relative;
}

.product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../img/product-bg.png) left bottom no-repeat;
    background-size: auto;
    opacity: 0.3;
}

.product-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 100%;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: var(--gradient-1);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    font-size: 22px;
    transition: all 0.3s ease;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    background: var(--gradient-2);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}


/*** Modern Video/About Section ***/
.video {
    background: var(--gradient-1), url(../img/video-bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
}

.video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(255, 182, 39, 0.85));
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: none;
    outline: none !important;
    padding: 28px 30px 30px 38px;
    background: white;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

.btn-play:hover {
    transform: scale(1.1);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 13px;
    border-left: 40px solid var(--primary);
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Modern Store ***/
.store-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.store-item:hover {
    box-shadow: var(--shadow-xl);
}

.store-item .store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95), rgba(255, 182, 39, 0.9));
    opacity: 0;
    transition: all 0.4s ease;
}

.store-item:hover .store-overlay {
    opacity: 1;
}


/*** Modern Contact ***/
.contact .btn-square {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.contact .btn-square:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: var(--shadow-xl);
}


/*** Modern Testimonial ***/
.testimonial {
    background: var(--gradient-2), url(../img/testimonial-bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.92), rgba(53, 122, 189, 0.88));
}

.testimonial-item {
    margin: 0 auto;
    max-width: 700px;
    text-align: center;
    background: white;
    border: none;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.testimonial-item::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 100px;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-item img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
    border: 4px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.testimonial-carousel .owl-dots {
    margin-top: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 6px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}


/*** Modern Footer ***/
.footer {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: #B8C5D6;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 8px;
    padding: 0;
    text-align: left;
    color: #B8C5D6;
    font-weight: normal;
    text-transform: capitalize;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
}

.footer .btn.btn-link::before {
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    left: 0;
    transition: all 0.3s ease;
}

.footer .btn.btn-link:hover {
    color: white;
    padding-left: 30px;
    box-shadow: none;
}

.footer .btn.btn-link:hover::before {
    color: var(--secondary);
}

.copyright {
    background: #1A252F;
    color: #B8C5D6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright a {
    color: var(--primary);
    transition: all 0.3s ease;
}

.copyright a:hover {
    color: var(--secondary) !important;
}
/* Service Carousel Image Fix */
.product-item {
  height: 100%;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 300px;          /* FIXED HEIGHT – adjust if needed */
  object-fit: contain;     /* Ensures image fills area without distortion */
  border-radius: 6px;
}

/* Optional: make carousel items equal height */
.owl-carousel .product-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Modern Service Box Styling */
.service-box {
  background: white;
  border: none;
  border-radius: 16px;
  padding: 35px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-box:hover::before {
  transform: scaleX(1);
}

.service-box h4 {
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.service-box:hover h4 {
  color: var(--primary);
}

.service-box p {
  font-weight: 500;
  margin-bottom: 18px;
  color: var(--gray);
  line-height: 1.7;
}

.service-box ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.service-box ul li {
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding-left: 8px;
}

.service-box ul li::marker {
  color: var(--primary);
}

/* Hover Effect with lift and glow */
.service-box:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}
/* =========================
   MODERN ABOUT SECTION
========================= */

/* Left image grid with modern styling */
.about-images img,
.col-lg-6 img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
}

.about-images img:hover,
.col-lg-6 img:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow: var(--shadow-xl);
}

/* Uniform height for left images */
.col-lg-6 .img-fluid {
  height: 250px;
}

/* RIGHT CONTENT IMAGES */
.about-right-img,
.col-sm-4 img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 15px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.about-right-img:hover,
.col-sm-4 img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

/* Content spacing with modern typography */
.col-sm-8 h5 {
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
  font-size: 1.2rem;
}

.col-sm-8 p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
}

/* Modern divider */
.border-top {
  border-top: 2px solid rgba(255, 107, 53, 0.1) !important;
}

/* Section title enhancement */
.section-title h1 {
  font-weight: 800;
  background: linear-gradient(135deg, var(--dark) 0%, var(--gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .col-lg-6 .img-fluid {
    height: auto;
    margin-bottom: 20px;
  }

  .col-sm-4 img {
    height: auto;
    margin-bottom: 20px;
  }

  .section-title {
    text-align: center;
  }

  .section-title h1 {
    font-size: 2rem;
  }
}

/* ====================================
   MODERN UTILITY CLASSES & ANIMATIONS
==================================== */

/* Fade-in animations for content */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply subtle animations */
.animate-on-scroll {
  animation: fadeInUp 0.8s ease-out;
}

/* Modern Badges */
.badge-modern {
  background: var(--gradient-1);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  color: white;
  box-shadow: var(--shadow-sm);
}

/* Icon Boxes */
.icon-box {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  border-radius: 16px;
  color: white;
  font-size: 32px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-5px) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

/* Modern List Styles */
.list-modern {
  list-style: none;
  padding-left: 0;
}

.list-modern li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-weight: 500;
  color: var(--dark);
}

.list-modern li::before {
  content: '\\2713';
  position: absolute;
  left: 0;
  color: white;
  background: var(--gradient-1);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

/* Glassmorphism Effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-lg);
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Social Icons */
.social-icon {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-md);
  color: white;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--gradient-1);
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Pricing Tables */
.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

/* Feature Icons with Pulse */
.feature-icon {
  position: relative;
  display: inline-block;
}

.feature-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Responsive Utilities */
@media (max-width: 992px) {
  .btn {
    padding: 12px 28px;
    font-size: 14px;
  }
  
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .display-5 {
    font-size: 1.8rem !important;
  }
  
  .display-6 {
    font-size: 1.5rem !important;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  
  .section-title {
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
  }
  
  .carousel-caption h1 {
    font-size: 1.8rem !important;
  }
  
  .carousel-caption p {
    font-size: 14px !important;
  }
  
  .page-header {
    padding: 80px 0 50px;
  }
}

@media (max-width: 768px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 15%;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 40px;
    height: 40px;
  }
  
  .section-title h1 {
    font-size: 1.75rem;
  }
  
  .section-title p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .btn {
    padding: 10px 24px;
    font-size: 13px;
    letter-spacing: 0.5px;
  }
  
  .display-1 {
    font-size: 1.75rem !important;
    line-height: 1.3;
  }
  
  .display-5,
  .display-6 {
    font-size: 1.5rem !important;
  }
  
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .section-title h1 {
    font-size: 1.5rem;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .navbar-toggler {
    padding: 8px 10px;
    font-size: 18px;
  }
  
  .carousel-caption {
    padding: 0 15px;
  }
  
  .carousel-caption h1 {
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
  }
  
  .carousel-caption p {
    font-size: 13px !important;
    margin-bottom: 20px !important;
  }
  
  .page-header {
    padding: 60px 0 40px;
  }
  
  .page-header h1 {
    font-size: 1.75rem;
  }
  
  /* Mobile padding adjustments */
  .py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  
  .my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}

/* Loading State */
.loading-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Enhanced Focus States for Accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
