@charset "UTF-8";

/*
Theme Name: Twenty Twenty-One
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 6.9
Requires PHP: 5.6
Version: 2.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog, portfolio

Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/

/**
 * SETTINGS
 * File-header..........The file header for the themes style.css file.
 * Fonts................Any font files, if the project needs specific fonts.
 * Global...............Project-specific, globally available variables.
 *
 * TOOLS
 * Functions............Global functions.
 * Mixins...............Global mixins.
 *
 * GENERIC
 * Normalize.css........Normalise browser defaults.
 * Breakpoints..........Mixins and variables for responsive styles
 * Vertical-margins.....Vertical spacing for the main components.
 * Reset................Reset specific elements to make them easier to style in other contexts.
 * Clearings............Clearings for the main components.
 *
 * ELEMENTS
 * Blockquote...........Default blockquote.
 * Forms................Element-level form styling.
 * Headings.............H1–H6
 * Links................Default links.
 * Lists................Default lists.
 * Media................Images, Figure, Figcaption, Embed, iFrame, Objects, Video.
 *
 * BLOCKS
 * Audio................Specific styles for the audio block.
 * Button...............Specific styles for the button block.
 * Code.................Specific styles for the code block.
 * Columns..............Specific styles for the columns block.
 * Cover................Specific styles for the cover block.
 * File.................Specific styles for the file block.
 * Gallery..............Specific styles for the gallery block.
 * Group................Specific styles for the group block.
 * Heading..............Specific styles for the heading block.
 * Image................Specific styles for the image block.
 * Latest comments......Specific styles for the latest comments block.
 * Latest posts.........Specific styles for the latest posts block.
 * Legacy...............Specific styles for the legacy gallery.
 * List.................Specific styles for the list block.
 * Media text...........Specific styles for the media and text block.
 * Navigation...........Specific styles for the navigation block.
 * Paragraph............Specific styles for the paragraph block.
 * Pullquote............Specific styles for the pullquote block.
 * Quote................Specific styles for the quote block.
 * Search...............Specific styles for the search block.
 * Separator............Specific styles for the separator block.
 * Table................Specific styles for the table block.
 * Verse................Specific styles for the verse block.
 * Video................Specific styles for the video block.
 * Utilities............Block alignments.
 *
 * COMPONENTS
 * Header...............Header styles.
 * Footer...............Footer styles.
 * Comments.............Comment styles.
 * Archives.............Archive styles.
 * 404..................404 styles.
 * Search...............Search styles.
 * Navigation...........Navigation styles.
 * Footer Navigation....Footer Navigation styles.
 * Pagination...........Pagination styles.
 * Single...............Single page and post styles.
 * Posts and pages......Misc, sticky post styles.
 * Entry................Entry, author biography.
 * Widget...............Widget styles.
 * Editor...............Editor styles.
 *
 * UTILITIES
 * A11y.................Screen reader text, prefers reduced motion etc.
 * Color Palette........Classes for the color palette colors.
 * Editor Font Sizes....Editor Font Sizes.
 * Measure..............The width of a line of text, in characters.
 */

/* Categories 01 to 03 are the basics. */

/* Variables */



/* ===== Single Blog Page Layout ===== */

.page-single-post {
    padding: 60px 0;
    background: #f8f9fa;
}

.custom-single-blog-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Featured Image */
.custom-single-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Meta Info */
.custom-single-meta {

    color: #777;
    margin-bottom: 15px;
}

/* Content */
.custom-single-content {

    line-height: 1.8;
    color: #333;
}

/* Headings */
.custom-single-content h1 { color: #111; font-size: 32px; }
.custom-single-content h2 { color: #222; font-size: 28px; }
.custom-single-content h3 { color: #333; font-size: 24px; }
.custom-single-content h4 { color: #444; font-size: 20px; }
.custom-single-content h5 { color: #555; font-size: 18px; }
.custom-single-content h6 { color: #666; font-size: 16px; }

.custom-single-content h1,
.custom-single-content h2,
.custom-single-content h3,
.custom-single-content h4,
.custom-single-content h5,
.custom-single-content h6 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

/* Paragraph */
.custom-single-content p {
    margin-bottom: 15px;
}

/* UL / OL List Styling */
.custom-single-content ul,
.custom-single-content ol {
    padding-left: 20px;
    margin: 15px 0;
}

.custom-single-content ul li,
.custom-single-content ol li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #333;
}

/* Images inside content */
.custom-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 15px 0;
}

/* Sidebar */
.custom-recent-posts {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.recent-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

/* Recent Post Item */
.recent-post-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.recent-thumb img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.recent-content h6 {
    font-size: 15px;
    line-height: 1.4;
    margin: 0 0 5px;
}

.recent-content h6 a {
    color: #222;
    text-decoration: none;
}

.recent-content h6 a:hover {
    color: #007bff;
}

.recent-date {
  
    color: #888;
}

/* Responsive */
@media (max-width: 991px) {
    .page-single-post {

    }

        padding: 40px 0;
    }

    .custom-single-blog-card,
    .custom-recent-posts {
        margin-bottom: 25px;
    }
}



.comment-respond,
#respond,
.comments-area {
    display: none !important;
}


.comments-area,
.comment-respond,
#respond,
.comments-title {
    display: none !important;
}


.comment-respond {
    display: none !important;
}





/* ===== About Director Section ===== */
.about-director-section {
    background: linear-gradient(135deg, #f8faff, #ffffff);
    padding: 80px 0;
}

/* Image Styling */
.director-img {
    position: relative;
    display: inline-block;
}

.director-img img {
    width: 100%;
    max-width: 320px;
    border-radius: 18px;
    border: 6px solid #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: 0.4s ease-in-out;
}

.director-img img:hover {
    transform: translateY(-6px);
}

/* Content Box */
.director-content {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

/* Headings */
.director-content h6 {
    color: #0d6efd;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.director-content h2 {
    font-size: 43px;
    font-weight: 800;
    color: #be0b32;
    margin-bottom: 3px;
    line-height: 1.2;
}


/* Paragraph */


/* Decorative Line */
.director-content h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #00c6ff);
    margin-top: 10px;
    border-radius: 50px;
}

/* Responsive */
@media (max-width: 991px) {
    .director-content {
        padding: 30px 25px;
    }

    .director-content h2 {
        font-size: 28px;
    }

    .about-director-section {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .director-content h2 {
        font-size: 24px;
    }

    .director-content p {
        font-size: 15px;
    }
}


img.righttt {
    float: left;
    border: 1px solid #be0b32;
    box-shadow: 6px 7px #be0b32;
    margin-right: 27px;
    border-radius: 25px;
    padding: 4px;
    margin-bottom: 30px;
}


.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item strong {
  display: block;
  font-weight: 600;
  color: #222;
}

.contact-item a {
  color: #0d6efd;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}




.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    align-items: flex-start;
    color: white;
}

.contact-item i {
    color: #f2f7ff;
    font-size: 18px;
    margin-top: 4px;
    min-width: 22px;
}

.contact-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 3px;
  color: #111;
}

.contact-item a {
  color: white;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

ul.contact-list li a {
    color: white;
}





@media (max-width: 768px) {


a.navbar-brand.jkll img {
    width: 227px;
}

}



.bgggg {
    background-color: #f1f1f1;




}


/* Specifically target the custom gallery class */
.photo-gallery.jkllllllllllll .image-anime img {
    width: 100%;
    height: 250px;
    object-fit: cover; /* Keeps the image from looking stretched */
    border-radius: 8px; /* Optional: adds a nice rounded corner */
}

/* Optional: Ensure the figure container doesn't overflow */
.photo-gallery.jkllllllllllll .image-anime {
    height: 250px;
    overflow: hidden;
}


a.navbar-brand.jkll img {
    height: 70px;
}

ul.btn a {
    color: white !important;
    font-size: 18px;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

