   

/* navbar */
 /* Fixed top and smooth background transition */
    /* Fixed navbar transition */
    .navbar {
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .navbar.scrolled {
      background-color: rgb(11, 20, 37) !important;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      color: black !important;
    }
    

    /* Custom toggler icon */
    .custom-toggler {
      border: none;
      padding: 0;
      width: 39px;
      height: 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      z-index: 1001;
    }

    .custom-toggler .bar {
      width: 100%;
      height: 3px;
      background-color: white;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .custom-toggler:focus,
    .custom-toggler:active {
      outline: none !important;
      box-shadow: none !important;
      border: none !important;
    }

    /* Animate to "X" */
    .custom-toggler:not(.collapsed) .bar:nth-child(1) {
      transform: rotate(45deg) translateY(10px);
    }

    .custom-toggler:not(.collapsed) .bar:nth-child(2) {
      opacity: 0;
    }

    .custom-toggler:not(.collapsed) .bar:nth-child(3) {
      transform: rotate(-45deg) translateY(-10px);
    }

    /* Reset bars when collapsed */
    .custom-toggler.collapsed .bar:nth-child(1),
    .custom-toggler.collapsed .bar:nth-child(3) {
      transform: rotate(0deg) translateY(0);
    }

    .custom-toggler.collapsed .bar:nth-child(2) {
      opacity: 1;
    }

    /* Mobile nav menu slide in */
    .navbar-collapse {
      position: absolute;
      top: 40px;
      left: 0;
      width: 100%;
      background:rgb(11, 20, 37);;
      z-index: 1000;
      transform: translateX(100%);
      transition: transform 0.4s ease-in-out;
      text-align: center;
    }

    .navbar-collapse.show {
      transform: translateX(0);
    }

    /* Center nav items on mobile */
    @media (max-width: 991.98px) {
      .navbar-nav {
        width: 100%;
        height: 500px;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .navbar-nav .nav-item {
        padding: 8px 0;
      }
    }

    /* Desktop layout reset */
    @media (min-width: 992px) {
      .navbar-collapse {
        position: static;
        transform: none !important;
        background: transparent;
        top: auto;
        width: auto;
        text-align: left;
      }

      .navbar-nav {
        flex-direction: row;
        align-items: center;
      }

      .navbar-nav .nav-item {
        padding: 0 10px;
      }
    }
    /* @media(max-width:400px){
       .navbar-collapse {
        position: static;
        transform: none !important;
        background: transparent;
        top: auto;
        width: auto;
        text-align: left;
        height: 700px;
      } 
    } */

     /* hero  */

      .hero-section {
            height: 100vh;
            background: linear-gradient(
                135deg,
                rgba(0, 0, 0, 0.7) 0%,
                rgba(0, 0, 0, 0.5) 50%,
                rgba(0, 0, 0, 0.8) 100%
            ),
            url(images/hero.jpg);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            display: flex;
            flex-direction: column;
            
        }
        @media(max-width:400px){
            .hero-section{
                height: 90vh;
            }
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgb(11, 20, 37);
            
            z-index: 1;
        }
        
        .hero-content {
            flex: 1;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 2;
            padding: 2rem 0;
        }
        
        .hero-text h1 {
            font-size: 4.5rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -2px;
        }
        
        .hero-text .highlight {
            background: linear-gradient(135deg, #8B0000 0%, #A0202A 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-text h1{
            padding-top: 80px;
        }
      
        .hero-text p {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            font-weight: 300;
            line-height: 1.6;
            max-width: 600px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .btn-primary-custom {
            background: linear-gradient(135deg, #8B0000 0%, #A0202A 100%);
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.6s;
        }
        
        .btn-primary-custom:hover::before {
            left: 100%;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(139, 0, 0, 0.4);
            color: #fff;
        }
        
        .btn-secondary-custom {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .btn-secondary-custom:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
            color: #fff;
        }
        
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }
        
        .floating-elements::before,
        .floating-elements::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(160, 32, 42, 0.1) 100%);
            animation: float 20s ease-in-out infinite;
        }
        
        .floating-elements::before {
            width: 300px;
            height: 300px;
            top: 20%;
            right: 10%;
            animation-delay: -10s;
        }
        
        .floating-elements::after {
            width: 200px;
            height: 200px;
            bottom: 30%;
            left: 10%;
            animation-delay: -5s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }
        
        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 2.8rem;
                padding-top: 10px;
                
            }
            
            .hero-text p {
                font-size: 1.2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .btn-primary-custom,
            .btn-secondary-custom {
                text-align: center;
                width: auto;
                max-width: 280px;
            }
        }
@media(max-width:400px){
    .about_paragraphs{
        padding-top: 50px;
    }
}
        /* card section */
           * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        @media(max-width:400px){
            .about-text{
                padding-top: 30px;

      }

        }

    @media(max-width:600px){
        .about-image{
            width: 300px;
            height: 350px;
        }
        .about-image iframe{
            width: 100%;
            height: 100%;
        }
    }    
      
        .about-image{
            width: 700px;
            height: 350px;
        }
        .about-image video{
            width: 100%;
            height: 100%;
        }
        .properties-section {
            padding: 6rem 0;
            /* background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); */
            position: relative;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title {
            font-size: 10px;
            font-weight: 800;
            color: #2d3748;
            margin-bottom: 1rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #8B0000 0%, #A0202A 100%);
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .property-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-bottom: 2rem;
            position: relative;
            height: 350px;
            cursor: pointer;
        }
        
        .property-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }
        
        .card-image-wrapper {
            position: relative;
            height: 100%;
            overflow: hidden;
        }
        
        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .property-card:hover .card-image {
            transform: scale(1.08);
        }
        
        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(0, 0, 0, 0.4) 0%,
                rgba(0, 0, 0, 0.6) 50%,
                rgba(0, 0, 0, 0.7) 100%
            );
            opacity: 1;
            transition: opacity 0.4s ease;
        }
        
        .property-card:hover .card-overlay {
            opacity: 0.9;
        }
        
        .card-badges {
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            z-index: 10;
        }
        
        .card-info {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            z-index: 10;
            color: white;
        }
        
        .property-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }
        
        .property-location-overlay {
            font-size: 1rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            opacity: 0.9;
        }
        
        .property-features-overlay {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .feature-item-overlay {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .feature-icon-overlay {
            font-size: 0.9rem;
        }
        
        .price-badge {
            background: linear-gradient(135deg, #8B0000 0%, #A0202A 100%);
            color: white;
            padding: 0.7rem 1.2rem;
            border-radius: 25px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .availability-badge {
            background: linear-gradient(135deg, #8B0000 0%, #A0202A 100%);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .availability-dot {
            width: 8px;
            height: 8px;
            background: #fff;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        /* View More Link Styles */
        .view-more-link {
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            width: fit-content;
        }
        
        .property-card:hover .view-more-link {
            opacity: 1;
            transform: translateY(0);
        }
        
        .view-more-link:hover {
            background: rgba(255, 255, 255, 0.25);
            color: white;
            text-decoration: none;
            transform: translateX(5px);
        }
        
        .view-more-icon {
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }
        
        .view-more-link:hover .view-more-icon {
            transform: translateX(3px);
        }
        
        /* Responsive Design */
        @media (max-width: 991.98px) {
            .section-title {
                font-size: 3rem;
            }
            
            .property-name {
                font-size: 1.4rem;
            }
            
            .property-location-overlay {
                font-size: 0.95rem;
            }
            
            .feature-item-overlay {
                font-size: 0.85rem;
                padding: 0.35rem 0.7rem;
            }
            
            .price-badge {
                font-size: 1rem;
                padding: 0.6rem 1rem;
            }
            
            .availability-badge {
                font-size: 0.85rem;
                padding: 0.45rem 0.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .properties-section {
                padding: 4rem 0;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .property-card {
                height: 320px;
            }
            
            .card-badges {
                top: 15px;
                left: 15px;
                right: 15px;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            
            .card-info {
                bottom: 15px;
                left: 15px;
                right: 15px;
            }
            
            .property-name {
                font-size: 1.25rem;
                margin-bottom: 0.4rem;
            }
            
            .property-location-overlay {
                font-size: 0.9rem;
                margin-bottom: 0.8rem;
            }
            
            .property-features-overlay {
                gap: 1rem;
                margin-bottom: 0.8rem;
            }
            
            .feature-item-overlay {
                font-size: 0.8rem;
                padding: 0.3rem 0.6rem;
            }
            
            .feature-icon-overlay {
                font-size: 0.8rem;
            }
            
            .price-badge {
                font-size: 0.9rem;
                padding: 0.5rem 0.9rem;
            }
            
            .availability-badge {
                font-size: 0.75rem;
                padding: 0.4rem 0.7rem;
            }
            
            .view-more-link {
                font-size: 0.9rem;
                padding: 0.5rem 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-subtitle {
                font-size: 0.9rem;
            }
            
            .property-card {
                height: 280px;
            }
            
            .card-badges {
                top: 12px;
                left: 12px;
                right: 12px;
                gap: 0.4rem;
            }
            
            .card-info {
                bottom: 12px;
                left: 12px;
                right: 12px;
            }
            
            .property-name {
                font-size: 1.1rem;
                margin-bottom: 0.3rem;
                line-height: 1.3;
            }
            
            .property-location-overlay {
                font-size: 0.8rem;
                margin-bottom: 0.6rem;
                gap: 0.3rem;
            }
            
            .property-features-overlay {
                gap: 0.6rem;
                margin-bottom: 0.6rem;
                flex-wrap: wrap;
            }
            
            .feature-item-overlay {
                font-size: 0.7rem;
                padding: 0.25rem 0.5rem;
                gap: 0.3rem;
            }
            
            .feature-icon-overlay {
                font-size: 0.7rem;
            }
            
            .price-badge {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }
            
            .availability-badge {
                font-size: 0.7rem;
                padding: 0.3rem 0.6rem;
            }
            
            .availability-dot {
                width: 6px;
                height: 6px;
            }
            
            .view-more-link {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
                gap: 0.3rem;
            }
            
            .view-more-icon {
                font-size: 0.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .property-card {
                height: 260px;
            }
            
            .card-badges {
                top: 10px;
                left: 10px;
                right: 10px;
            }
            
            .card-info {
                bottom: 10px;
                left: 10px;
                right: 10px;
            }
            
            .property-name {
                font-size: 1rem;
                margin-bottom: 0.25rem;
            }
            
            .property-location-overlay {
                font-size: 0.75rem;
                margin-bottom: 0.5rem;
            }
            
            .property-features-overlay {
                gap: 0.5rem;
                margin-bottom: 0.5rem;
            }
            
            .feature-item-overlay {
                font-size: 0.65rem;
                padding: 0.2rem 0.4rem;
            }
            
            .feature-icon-overlay {
                font-size: 0.65rem;
            }
            
            .price-badge {
                font-size: 0.75rem;
                padding: 0.35rem 0.7rem;
            }
            
            .availability-badge {
                font-size: 0.65rem;
                padding: 0.25rem 0.5rem;
            }
            
            .view-more-link {
                font-size: 0.75rem;
                padding: 0.35rem 0.7rem;
            }
            
            .view-more-icon {
                font-size: 0.75rem;
            }
        }

        /* achievement section */
        .achieve{
         padding: 0 150px 0 150px ;
         margin-top: 0;

        }
        @media(max-width:600px){
            .achieve{
         padding: 0 17px 0 17px ;
         text-align: left !important

        }
     
        }
        .bsb-circle {
            width: 80px;
            height: 80px;
            background: #f8f9fa;
            border-radius: 50%;
            border: 2px solid #e9ecef;
            transition: all 0.3s ease;
        }
        
        .achievement-item {
            padding: 20px;
            margin: 10px;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        
        .achievement-item:hover {
            transform: translateY(-5px);
        }
        
        .achievement-item:hover .bsb-circle {
            background: #fff;
            border-color: #dc3545;
            box-shadow: 0 5px 15px rgba(220, 53, 69, 0.2);
        }
        
        /* Custom Owl Carousel Navigation */
        .owl-nav {
            text-align: center;
            margin-top: 30px;
        }
        
        .owl-nav button {
            background: #dc3545 !important;
            color: white !important;
            border-radius: 50% !important;
            width: 40px !important;
            height: 40px !important;
            margin: 0 10px !important;
            font-size: 16px !important;
            transition: all 0.3s ease !important;
        }
        
        .owl-nav button:hover {
            background: #b02a37 !important;
            transform: scale(1.1);
        }
        
        /* Custom Owl Carousel Dots */
        .owl-dots {
            text-align: center;
            margin-top: 20px;
        }
        
        .owl-dot {
            display: inline-block;
            margin: 0 5px;
        }
        
        .owl-dot span {
            width: 12px;
            height: 12px;
            background: #e9ecef;
            border-radius: 50%;
            display: block;
            transition: all 0.3s ease;
        }
        
        .owl-dot.active span,
        .owl-dot:hover span {
            background: #dc3545;
        }
        
        /* Achievement section background */
        .achievement-section {
            /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
            position: relative;
        }
        
        .achievement-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }
        
        .container {
            position: relative;
            z-index: 1;
        }
        

        /* video */
            :root {
            --primary-color: #2c3e50;
            --accent-color: #e74c3c;
            --gradient-start: #722f37;
            --gradient-end: #4a1e24;
            --text-light: #ecf0f1;
            --shadow-light: rgba(0, 0, 0, 0.1);
            --shadow-medium: rgba(0, 0, 0, 0.2);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }

        .property-showcase {
            background: url('https://images.unsplash.com/photo-1580587771525-78b9dba3b914?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80') center/cover;
            background-attachment: fixed;
            min-height: 100vh; /* Make it taller to demonstrate the fixed effect */
            position: relative;
            overflow: hidden;
        }

        .property-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            pointer-events: none;
        }

        .video-container {
            position: relative;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 20px 40px var(--shadow-medium);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .video-container:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px var(--shadow-medium);
        }

        .iframe-wrapper {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .iframe-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .content-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            position: relative;
            z-index: 2;
        }

        .content-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            padding: 3rem;
            box-shadow: 0 25px 50px var(--shadow-medium);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), #f39c12, var(--accent-color));
            border-radius: 25px 25px 0 0;
        }

        .content-title {
            color: var(--primary-color);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .content-description {
            color: #555;
            font-size: 1.0rem;
            line-height: 1.8;
            margin-bottom: 2.5rem;
            font-weight: 400;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
          background-color: rgb(128, 0, 32);
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 18px 35px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }
        @media(max-width:500px){
            .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background-color: rgb(128, 0, 32);
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 7px 10px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(231, 76, 60, 0.5);
            color: white;
            text-decoration: none;
        }

        .cta-button:active {
            transform: translateY(-1px);
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

       /* our services */
         :root {
            --ox-blood-red: rgb(128, 0, 32);
            --ox-blood-light: rgb(160, 32, 64);
            --ox-blood-dark: rgb(96, 0, 24);
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --medium-gray: #6c757d;
        }
        
        * {
            font-family: 'Inter', sans-serif;
        }
        
        .services-section {
            background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
            padding: 2rem 0;
            position: relative;
        }
        
        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgb(128, 0, 32)" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        }
        
        .content-wrapper {
            position: relative;
            z-index: 2;
        }
        
        .section-subtitle {
            color: var(--ox-blood-red);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-subtitle::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--ox-blood-red);
        }
        
        .section-title {
            color: var(--ox-blood-red);
            font-weight: 800;
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        .section-description {
            color: var(--medium-gray);
            font-size: 1.0rem;
            line-height: 1.7;
            margin-bottom: 2.5rem;
        }
        
        .cta-button {
            background: var(--ox-blood-red);
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            border: 2px solid var(--ox-blood-red);
            box-shadow: 0 4px 15px rgba(128, 0, 32, 0.2);
        }
        
        .cta-button:hover {
            background: var(--white);
            color: var(--ox-blood-red);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(128, 0, 32, 0.3);
        }
        
        .service-card {
            background: var(--white);
            border: none;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            height: 100%;
            transition: all 0.4s ease;
            position: relative;
            box-shadow: 0 4px 15px rgba(128, 0, 32, 0.08);
            border-bottom: 3px solid var(--ox-blood-red);
            overflow: hidden;
            max-width: 280px;
            margin: 0 auto;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--ox-blood-red) 0%, var(--ox-blood-light) 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: left;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(128, 0, 32, 0.15);
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--ox-blood-red) 0%, var(--ox-blood-light) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
            color: var(--white);
            font-size: 1.5rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 6px 15px rgba(128, 0, 32, 0.3);
        }
        
        .service-title {
            color: var(--ox-blood-red);
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
        }
        
        .service-description {
            color: var(--medium-gray);
            line-height: 1.5;
            margin-bottom: 1.2rem;
            font-size: 0.9rem;
        }
        
        .service-link {
            color: var(--ox-blood-red);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            position: relative;
            font-size: 0.9rem;
        }
        
        .service-link::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--ox-blood-red);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: left;
        }
        
        .service-link:hover {
            color: var(--ox-blood-light);
        }
        
        .service-link:hover::before {
            transform: scaleX(1);
        }
        
        .service-link i {
            transition: transform 0.3s ease;
        }
        
        .service-link:hover i {
            transform: translateX(5px);
        }
        
        .left-content {
            padding-right: 2rem;
        }
        
        .services-grid {
            position: relative;
        }
        
        .services-grid::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: 20px;
            bottom: 20px;
            background: var(--ox-blood-red);
            border-radius: 30px;
            opacity: 0.03;
            z-index: 0;
        }
        
        .services-grid .row {
            position: relative;
            z-index: 1;
        }
        
        @media (max-width: 992px) {
            .left-content {
                padding-right: 0;
                margin-bottom: 3rem;
                text-align: center;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .services-section {
                padding: 2rem 0;
            }
            
            .service-card {
                max-width: 320px;
                padding: 1.8rem 1.5rem;
            }
            
            .service-icon {
                width: 58px;
                height: 58px;
                font-size: 1.4rem;
            }
            
            .service-title {
                font-size: 1.15rem;
            }
            
            .service-description {
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 768px) {
            .service-card {
                margin-bottom: 2rem;
                padding: 1.8rem 1.3rem;
                max-width: 340px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .services-section {
                padding: 2rem 0;
            }
            
            .service-icon {
                width: 55px;
                height: 55px;
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 576px) {
            .service-card {
                max-width: 100%;
                padding: 1.5rem 1.2rem;
            }
            
            .service-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }
        
        .floating-accent {
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, var(--ox-blood-red) 0%, transparent 70%);
            opacity: 0.02;
            border-radius: 50%;
            top: 10%;
            right: 10%;
            z-index: 1;
        }
        /* blog 1 */
        /* our partners */
             .partners-section {
            padding: 80px 0;
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }
        
        .partners-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23000" opacity="0.02"/><circle cx="80" cy="80" r="1" fill="%23000" opacity="0.02"/><circle cx="40" cy="60" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            pointer-events: none;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 1rem;
            position: relative;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: #666666;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .partners-carousel {
            position: relative;
            z-index: 2;
        }
        
        .partner-logo {
            background: #ffffff;
            border-radius: 15px;
            padding: 30px;
            margin: 0 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .partner-logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
            transition: left 0.5s ease;
        }
        
        .partner-logo:hover::before {
            left: 100%;
        }
        
        .partner-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .partner-logo img {
            max-width: 120px;
            max-height: 60px;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.7);
            transition: all 0.3s ease;
        }
        
        .partner-logo:hover img {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.05);
        }
        
        .owl-carousel .owl-nav {
            display: none;
        }
        
        .owl-carousel .owl-dots {
            display: none;
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .partner-logo {
                margin: 0 10px;
                padding: 20px;
                height: 100px;
            }
            
            .partner-logo img {
                max-width: 100px;
                max-height: 50px;
            }
        }
        
        .stats-row {
            margin-top: 60px;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 10px;
        }
        
        .stat-label {
            color: #666666;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        /* blog */
    .blog-section {
      padding: 40px 15px;
      background-color: #f9f9f9;
    }

    .section-title {
      text-align: center;
      font-size: 28px;
      margin-bottom: 30px;
      color: #222;
    }

    .owl-carousel .blog-card {
      background: #fff;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      padding: 15px;
      margin: 10px auto;
      max-width: 300px;
      height: auto;
    }

    .blog-card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 4px;
      margin-bottom: 10px;
    }

    .blog-content h3 {
      font-size: 16px;
      margin-bottom: 8px;
      color: #333;
    }

    .blog-content p {
      font-size: 13px;
      color: #555;
      line-height: 1.5;
    }            