.addr{padding: 5px; color: blue !important; text-align: right !important;}
.hepad{padding: 5px !important;}
.gradient-text {
        background: linear-gradient(90deg, #ff6600, #0044cc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hover-shadow {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds shadow */
        border-radius: 10px; /* Optional rounded corners */
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
    }

    .hover-shadow:hover {
        transform: scale(1.05); /* Slight zoom effect on hover */
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Larger shadow on hover */
    }

    /* Button Styling */
        #scrollTopBtn {
            display: none; /* Hidden by default */
            position: fixed; /* Stay in place */
            bottom: 20px; /* 20px from the bottom */
            right: 30px; /* 30px from the right */
            z-index: 99; /* Ensure it's above other content */
            border: none;
            outline: none;
            background-color: #ff6600; /* Button color */
            color: white;
            cursor: pointer;
            padding: 15px;
            border-radius: 50px;
            font-size: 18px;
        }

        #scrollTopBtn:hover {
            background-color: #555; /* Darker color on hover */
        }

          .parg {
            display: none;
            text-align: justify;
            color: #607d8b;
            margin-top: 10px;
        }
        #readMoreBtn, #lessTextBtn {
            cursor: pointer;
            color: blue;
            text-decoration: underline;
        }
    /* Colorful line styling */
        .line {
            height: 4px;
            background: linear-gradient(to right, #E91E63, #FFC107, #0044cc);
            border-radius: 2px;
            margin: 20px 0;
        }

        /* Text animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        h2 {
            text-align: center;
            animation: fadeIn 1s ease-out;
            font-size: 36px;
        }
        
        /* Adding some shadow for text styling */
        h2 span {
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        }

        .contact-options {
            position: relative;
            display: inline-block;
            padding: 5px;
            background-color: #ed1b37;
            border-radius: 5px;
            color: white;
            cursor: pointer;
            z-index: 1001; /* Make sure it's above the navbar */
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #f1f1f1;
            min-width: 160px;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1000; /* Ensures the dropdown appears above other content */
            border-radius: 4px;
            top: 100%; /* Ensures dropdown is positioned below the button */
        }

        .dropdown-content a {
            color: black;
            padding: 10px 16px;
            text-decoration: none;
            display: block;
        }

        .dropdown-content a:hover {
            background-color: #ddd;
        }

        .contact-options:hover .dropdown-content {
            display: block;
        }

        .navbar {
            z-index: 999; /* Lower z-index than the dropdown */
        }

        .navbar-nav .nav-link {
            margin-right: 15px;
        }


        /* Navbar Styles */
        .navbar {
            background-color: #f8f9fa; /* Light background */
        }

        /* Navigation Item Colors */
        .navbar-nav .nav-link {
            color: #007bff; /* Default link color */
            font-weight: bold;
            font-size: 16px;
            position: relative;
            transition: color 0.3s ease, background-color 0.3s ease; /* Smooth color transition */
        }

        /* Hover Effect */
        .navbar-nav .nav-link:hover {
            color: #ff4081; /* Change to pink on hover */
        }

        /* Adding Underline Effect on Hover */
        .navbar-nav .nav-link:before {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: #ff4081; /* Pink underline */
            visibility: hidden;
            transition: all 0.3s ease-in-out;
        }

        .navbar-nav .nav-link:hover:before {
            visibility: visible;
            width: 100%; /* Full underline on hover */
        }

        /* Icon Color Change */
        .navbar-nav .nav-link i {
            margin-right: 8px;
            color: #8b2c6d;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover i {
            color: #ff4081; /* Change icon color on hover */
        }

        /* Animation Effect */
        .navbar-nav .nav-link {
            opacity: 0;
            transform: translateY(-20px);
            animation: fadeIn 0.6s forwards;
        }

        /* Staggered Animation */
        .navbar-nav .nav-item:nth-child(1) .nav-link {
            animation-delay: 0.2s;
        }

        .navbar-nav .nav-item:nth-child(2) .nav-link {
            animation-delay: 0.4s;
        }

        .navbar-nav .nav-item:nth-child(3) .nav-link {
            animation-delay: 0.6s;
        }

        .navbar-nav .nav-item:nth-child(4) .nav-link {
            animation-delay: 0.8s;
        }

        .navbar-nav .nav-item:nth-child(5) .nav-link {
            animation-delay: 1s;
        }

        .navbar-nav .nav-item:nth-child(6) .nav-link {
            animation-delay: 1.2s;
        }

        /* Keyframes for Animation */
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

    .portfolio-tabs {
        display: flex;
        justify-content: center;
        border-bottom: 1px solid #ddd;
        padding-left: 0;
        margin-bottom: 20px;
        list-style: none;
    }
    
    .portfolio-tabs .tab-item {
        margin-right: 20px;
        padding: 10px 15px;
        cursor: pointer;
        font-size: 16px;
        color: #007bff;
        background-color: transparent;
        border: 1px solid transparent;
        border-radius: .25rem .25rem 0 0;
        transition: color 0.3s ease, border-color 0.3s ease;
    }

    .portfolio-tabs .tab-item.active {
        color: #495057;
        background-color: #fff;
        border-color: #dee2e6 #dee2e6 #fff;
    }

    .portfolio-tabs .tab-item:hover {
        color: #0056b3;
        border-color: #e9ecef #e9ecef #dee2e6;
    }
    
    .portfolio-tabs .tab-item:not(.active):hover {
        background-color: #f8f9fa;
    }

    /* Tab Content Styles */
    .tab-content {
        display: none;
        padding: 20px 0;
    }

    .tab-content.show {
        display: block;
    }
    
    /* Cards */
    /*.card {
        border: 1px solid #ddd;
        padding: 10px;
        margin: 10px;
        text-align: center;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }*/
    
    /*.card img {
        width: 100%;
        height: auto;
    }*/

    /* Zoom effect on image hover */
    .zoom-img {
        transition: transform 0.3s ease;
        width: 100%;
        height: auto;
    }

    .zoom-img:hover {
        transform: scale(1.05); /* Zoom in slightly */
    }

    /* Card Styles */
    .card {
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 10px;
        margin: 15px;
        text-align: center;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s ease;
    }

    .card:hover {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
    }

    .card-body {
        padding: 15px;
    }

    .card-title {
        font-size: 18px;
        color: #E91E63;
        font-weight: bold;
    }

    .card-text {
        color: #333;
        font-size: 14px;
font-family: Aeonik, -apple-system, BlinkMacSystemFont, Montserrat, sans-serif !important;
    font-weight: 400;
    }
