 /* Remove underlines from all links */
    a {
        text-decoration: none !important;
    }
    
    a:hover, a:focus, a:active {
        text-decoration: none !important;
    }
    
    /* Specifically ensure feature buttons have no underline */
    .feature-btn, .feature-btn:hover, .feature-btn:focus {
        text-decoration: none !important;
    }
    
    /* Remove the dash above copyright text */
    .copyright {
        border-top: none !important;
        padding-top: 0 !important;
        margin-top: 20px !important;
    }
    
    .rotate animation {
        display: none;
    }
    
    .color-switcher-wrap .color-switcher-item .color-toggle-btn i {
        display: none;
    }

    .section-padding {
        padding: 10px 0;
    }


    .wpo-section-title, .wpo-section-title-s2{
        padding-top: 60px;
        margin-bottom: 60px;
        text-align: center;
    }

    .wpo-page-title {
        background: url(images/banner.webp) no-repeat center top / cover;
        min-height: 300px;
        position: relative;
        display: flex;
        justify-content: center;
        flex-direction: column;
        z-index: 1;
    }

    .wpo-page-title:before {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #4f4f4feb;
        content: "";
        z-index: -1;
        opacity: 0.4;
    }

    .wpo-site-header #navbar > ul > li > a:before {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 4px;
        background: none;
        content: "";
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        border-radius: 3px;
    }

    .wpo-site-header #navbar > ul > li > a {
        font-size: 16px;
        padding: 35px 20px;
        display: block;
        color: #fff;
        font-weight: 500;
        position: relative;
        font-family: "Jost", sans-serif;
        text-transform: uppercase;
    }

    .wpo-site-header #navbar > ul li a:hover, .wpo-site-header #navbar > ul li a:focus {
        text-decoration: none;
        color: #740e51;
    }

    @media screen and (min-width: 992px) {
        .wpo-site-header #navbar > ul > li > a:before {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 4px;
            background: none;
            content: "";
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            border-radius: 3px;
        }
    }

    @media screen and (min-width: 992px) {
        .wpo-site-header #navbar > ul > li > a {
            font-size: 16px;
            padding: 35px 20px;
            display: block;
            color: #fff;
            font-weight: 500;
            position: relative;
            font-family: "Jost", sans-serif;
            text-transform: uppercase;
        }
    }

    /* Carousel Styles */
    .wpo-Service-carousel {
        position: relative;
        overflow: hidden;
        padding: 20px 0;
    }

    .wpo-Service-carousel-container {
        display: flex;
        transition: transform 0.5s ease;
        padding: 20px 0;
    }

    .wpo-Service-carousel-item {
        flex: 0 0 auto;
        width: 300px;
        margin: 0 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-radius: 10px;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .wpo-Service-carousel-item:hover {
        transform: translateY(-5px);
    }

    .wpo-Service-carousel-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        z-index: 10;
        pointer-events: none;
    }

    .wpo-Service-carousel-btn {
        background: rgba(255,255,255,0.8);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        pointer-events: auto;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transition: background 0.3s ease;
    }

    .wpo-Service-carousel-btn:hover {
        background: rgba(255,255,255,1);
    }

    .wpo-Service-carousel-btn-prev {
        margin-left: 10px;
    }

    .wpo-Service-carousel-btn-next {
        margin-right: 10px;
    }
    
    .footer {
            background-color: #333;
            color: white;
            padding: 40px 0;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #4a6cf7;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #4a6cf7;
        }
        
        

        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #999;
        }

    /* Button row styles - IMPROVED WITH !important to ensure priority */
    .button-row {
        padding: 30px 0;
        background: #f8f9fa;
    }

    .button-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .feature-btn {
        padding: 12px 25px !important;
        border-radius: 5px !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        font-family: "Jost", sans-serif !important;
        background: #c2a68c !important;
        color: white !important;
        border: 1px solid #c2a68c !important;
        text-align: center !important;
        min-width: 150px !important;
        display: inline-block !important;
        cursor: pointer !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .feature-btn:hover {
        background: #c2a68c !important;
        border-color: #c2a68c !important;
        color: white !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
        text-decoration: none !important;
    }

    .feature-btn:focus {
        outline: none !important;
        box-shadow: 0 0 0 3px rgba(116, 14, 81, 0.3) !important;
    }

    /* Responsive styles */
    @media (max-width: 991px) {
        .header-buttons-container {
            flex-direction: column;
            gap: 15px;
        }
        
        .header-left-buttons, .header-right-buttons {
            justify-content: center;
        }
        
        .button-container {
            justify-content: center;
            margin-bottom: 15px;
        }
        
        .search-bar {
            width: 90%;
        }
    }

    @media (max-width: 576px) {
        .header-btn {
            padding: 6px 15px;
            font-size: 14px;
        }
        
        .feature-btn {
            padding: 10px 15px !important;
            min-width: 120px !important;
            font-size: 14px !important;
        }
        
        .search-input {
            padding: 10px 15px;
        }
        
        .search-button {
            padding: 10px 20px;
        }
    }

    /* Header Styles */
    .header {
        height: 200px;
        width: 100%;
        background-color: #E6D8C3;
        position: relative;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .top-left {
        position: absolute;
        top: 20px;
        left: 20px;
        display: flex;
        align-items: center;
    }

    .notebook-icon {
        font-size: 28px;
        color: #fff;
        margin-right: 10px;
    }

    .home-btn {
        background-color: rgba(255, 255, 255, 0.2);
        color: #333;
        border: 2px solid white;
        padding: 8px 20px;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none; /* Removes underline */
        display: inline-block;
    }

    .home-btn:hover {
        background-color: #c2a68c;
        color: #fff;
        text-decoration: none; /* Prevent underline on hover */
    }

    .title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 48px;
        font-weight: 700;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        letter-spacing: 1px;
    }

    .top-right {
        position: absolute;
        top: 20px;
        right: 20px;
        display: flex;
        align-items: center;
    }

    .icons {
        display: flex;
        gap: 15px;
    }

    .icon {
        font-size: 22px;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
        background-color: rgba(255, 255, 255, 0.2);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icon:hover {
        background-color: white;
        color: #c2a68c;
        transform: scale(1.1);
    }

    /* Search bar positioned flush right and above bottom edge */
    .search-container {
        position: absolute;
        bottom: 15px; /* Positioned slightly above the bottom edge */
        right: 20px; /* Flush to the right side */
    }

    .search-bar {
        display: flex;
        width: 300px;
    }

    .search-bar input {
        flex: 1;
        padding: 10px 15px;
        border: none;
        border-radius: 30px 0 0 30px;
        outline: none;
        font-size: 16px;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .search-bar button {
        background-color: #c2a68c;
        color: white;
        border: none;
        border-radius: 0 30px 30px 0;
        padding: 10px 20px;
        cursor: pointer;
        font-weight: 600;
        transition: background-color 0.3s ease;
    }

    .search-bar button:hover {
        background-color: #c2a68c;
    }

    /* Header buttons styling */
    .header-buttons {
        position: absolute;
        bottom: 15px;
        left: 20px;
        display: flex;
        gap: 15px;
    }

    .header-btn {
        background-color: rgba(255, 255, 255, 0.2);
        color: #333;
        border: 2px solid white;
        padding: 8px 20px;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .header-btn:hover {
        background-color: #c2a68c;
        color: #fff;
        text-decoration: none;
    }

    @media (max-width: 768px) {
        .title {
            font-size: 36px;
        }
        
        .top-right {
            position: static;
            align-items: center;
            margin-top: 20px;
            justify-content: flex-end;
        }
        
        .search-container {
            position: static;
            margin-top: 20px;
        }
        
        .search-bar {
            width: 100%;
            max-width: 300px;
        }
        
        .header-buttons {
            position: static;
            margin-top: 20px;
            justify-content: center;
        }
    }

    /* Image Paragraph Section Styles */
    .image-paragraph-section {
      margin: 60px auto;
      font-family: "Jost", sans-serif;
    }

    /* Main bordered block */
    .bordered-block {
      border: 2px dashed #333;
      border-radius: 12px;
      padding: 40px;
      background-color: #fffaf8;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      overflow: hidden; /* Ensure content stays within border */
    }

    /* Image styling - positioned at left edge */
    .image-container {
      text-align: left;
      margin-bottom: 0;
      padding-right: 0;
    }

    .image-container img {
      border-radius: 20px;
      max-width: 100%;
      height: auto;
      transition: transform 0.3s ease;
      margin-left: 0; /* Ensure image touches left edge */
    }

    .image-container img:hover {
      transform: scale(1.03);
    }

    /* Text styling - positioned immediately next to image */
    .text-content {
      padding: 0 0 0 30px; /* Left padding to create space between image and text */
    }

    .text-content h2 {
      font-size: 24px;
      font-weight: 600;
      color: #333;
      margin-bottom: 15px;
    }

    .text-content p {
      font-size: 16px;
      color: #555;
      line-height: 1.7;
      margin-bottom: 12px;
    }

    /* Remove default column padding to position elements closer */
    .image-paragraph-section .col-lg-6,
    .image-paragraph-section .col-md-12 {
      padding-left: 0;
      padding-right: 0;
    }

    /* Responsive layout */
    @media (max-width: 768px) {
      .bordered-block {
        padding: 25px;
      }

      .text-content {
        padding: 20px 0 0 0; /* Reset padding for mobile */
      }

      .text-content h2 {
        font-size: 20px;
      }
      
      .image-container {
        text-align: center; /* Center image on mobile */
      }
      
      .image-container img {
        margin-left: auto;
        margin-right: auto;
      }
    }
       /* Mobile button layout */
@media (max-width: 768px) {
    .button-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        justify-items: center !important;
    }
    
    .button-container .feature-btn {
        min-width: 140px !important;
        padding: 10px 15px !important;
        font-size: 13px !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 160px !important;
    }
    
    /* First 4 buttons in first row */
    .button-container .feature-btn:nth-child(-n+4) {
        grid-column: span 1;
    }
    
    /* Last 3 buttons in second row, centered */
    .button-container .feature-btn:nth-child(n+5) {
        grid-column: span 1;
    }
    
    /* Center the last 3 buttons by adjusting grid columns */
    .button-container .feature-btn:nth-child(5) {
        grid-column: 1;
    }
    
    .button-container .feature-btn:nth-child(6) {
        grid-column: 2;
    }
    
    .button-container .feature-btn:nth-child(7) {
        grid-column: 1 / span 2;
        justify-self: center;
        max-width: 160px !important;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .button-container {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    
    .button-container .feature-btn {
        max-width: 200px !important;
        min-width: 160px !important;
    }
    
    .button-container .feature-btn:nth-child(7) {
        grid-column: 1 !important;
    }
}

