:root {     --primary: #4361ee;
            --primary-light: #4895ef;
            --secondary: #3a0ca3;
            --accent: #4cc9f0;
            --success: #38b000;
            --warning: #ffaa00;
            --danger: #ef233c;
            --dark: #14213d;
            --darker: #0d1b2a;
            --light: #f8f9fa;
            --lighter: #ffffff;
            --gray: #6c757d;
            --light-gray: #e2e8f0;
            --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-light));
            --gradient-dark: linear-gradient(135deg, var(--dark), var(--darker));           

            /* Dark mode variables */
            --bg-dark: #0f172a;
            --text-dark: #e2e8f0;
            --card-dark: #1e293b;
            --border-dark: #334155;
        }

        [data-theme="dark"] {
            --bg-color: var(--text-dark);
            --text-color: var(--light);
            --card-bg: var(--card-dark);
            --border-color: var(--border-dark);
            --light: var(--bg-dark);
            --lighter: var(--card-dark);
            --dark: var(--text-dark);
            --gray: #94a3b8;
            --bs-card-title-color: var(--light);
        }

        [data-theme="light"] {
            --bg-color: var(--light);
            --text-color: var(--dark);
            --card-bg: var(--lighter);
            --border-color: var(--light-gray);
        }
        body {

            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            background-color: var(--bg-color);
            line-height: 1.6;
            overflow-x: hidden;
            transition: all 0.3s ease;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--text-color);
        }
        /* Navbar */

        .navbar {
            background-color: white;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
            padding: 0.8rem 0;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border-bottom: 1px solid var(--border-color);
        }
        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.2rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 0.3s ease;
        }
        .navbar-brand:hover {
            transform: translateY(-2px);
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-color);
            padding: 0.5rem 1rem;
            position: relative;
            transition: all 0.2s ease;
        }
        .nav-link:hover {
            color: var(--primary);
        }
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1rem;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .nav-link:hover:after {
            width: calc(100% - 2rem);
        }
        /* Dropdown Menu */
        .dropdown-menu {
            border: none;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            border-radius: 12px;
            padding: 0.5rem;
            margin-top: 0.5rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: block;
        }
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-item {
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 500;
            margin: 0.2rem 0;
        }
        .dropdown-item:hover {
            background: rgba(67, 97, 238, 0.1);
            color: var(--primary);
            transform: translateX(8px);
        }
        /* Mega Menu */
        .mega-menu {
            width: 100%;
            left: 0;
            padding: 2rem;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            border-radius: 0 0 20px 20px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(25px);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: block !important;
            background-color: white;
            z-index: 1000;
            position: absolute;
            top: 100%;
        }
        .mega-dropdown:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .mega-menu .col {
            padding: 0 1.2rem;
        }
        .mega-menu h6 {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid rgba(67, 97, 238, 0.2);
            position: relative;
            display: inline-block;
        }
        .mega-menu h6:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-primary);
            transition: width 0.4s ease;
        }
        .mega-menu h6:hover:after {
            width: 80px;
        }
        .mega-menu ul {
            list-style: none;
            padding: 0;
        }
        .mega-menu li {
            transform: translateX(0);
            transition: all 0.4s ease;
            text-transform: capitalize;
        }
        .mega-menu li:hover {
            transform: translateX(8px);
        }
        .mega-menu a {
            color: var(--dark);
            text-decoration: none;
            transition: all 0.4s;
            display: flex;
            align-items: center;
            padding: 0.4rem 0;
        }
        .mega-menu a:hover {
            color: var(--primary);
        }
        .mega-menu a i {
            margin-right: 10px;
            color: var(--primary);
            font-size: 0.9rem;
            width: 24px;
            height: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .mega-menu a:hover i {
            background: rgba(67, 97, 238, 0.2);
            transform: scale(1.1);
        }
        /* === Hero Section === */
/* Pagination Container */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
}

/* Pagination Links */
.pagination a, .pagination .page-number {
    padding: 6px 10px;
    background-color: #0d6efd;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 3px;
}

/* Active Page */
.pagination .page-number.active {
    background-color: #2980b9; /* Blue background */
    color: #fff; /* White text */
}

/* Hover Effect */
.pagination a:hover, .pagination .page-number:hover {
    background-color: #2980b9; /* Blue background on hover */
    color: #fff; /* White text on hover */
}

/* Previous & Next Arrows */
.pagination .prev, .pagination .next {
    font-weight: bold;
    font-size: 18px;
}

        
.hero {
        position: relative;
        background: #242424;
        color: #fff;
        text-align: center;
        padding: 160px 0px 70px 0px;
        }
  
  .hero-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #fff;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  
  .hero-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .hero-btn:hover {
    background: var(--gradient-primary);
    color: #fff;
  }h2.section-heading {
    text-align: center;
    margin-top: 50px;
    font-size: 2rem;
    color: #333;
}


/* Job Title (Person's Name) */
.person-name {
    font-size: 20px;
    font-weight: 600;
    color: #333; /* Dark text */
    margin-bottom: 10px;
    text-align: center; /* This centers the name */
}

/* Rest of the CSS */
.editor-picks {
    margin: 20px 0;
}

.section-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

/* Job Grid - CSS Grid for multi-row layout */
.job-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 items per row */
    gap: 20px;
    justify-items: center;
    margin-top: 20px;
}

/* Job Item Styling */
.job-item {
    background-color: #f9f9f9; /* Light background */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    padding: 20px;
    position: relative;
    text-align: left;
    transition: all 0.3s ease-in-out; /* Smooth hover effect */
    width: 100%; /* Ensure it takes full width of grid cell */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

/* Hover effect for job items */
.job-item:hover {
    transform: translateY(-5px); /* Lift effect */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
}

/* Job Skills */
.job-skills {
    font-size: 14px;
    color: #555; /* Medium gray */
    line-height: 1.6; /* Better spacing between skills */
    margin-bottom: 10px;
}

/* Job Role */
.job-role {
    font-size: 14px;
    color: #555; /* Medium gray */
    line-height: 1.6; /* Consistent spacing */
    margin-bottom: 20px;
}

/* Read More Link */
.read-more {
    display: block; /* Makes the button a block element */
    width: max-content; /* Make the width of the button based on content */
    margin: 20px auto 0; /* Auto margin horizontally to center */
    padding: 10px 20px; /* Add padding to the button */
    color: #0d6efd; /* Button text color */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    font-weight: bold; /* Make the button text bold */
    text-align: center; /* Center the text inside the button */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.read-more:hover {
    color: #0056b3; /* Darker blue on hover */
    text-decoration: underline; /* Underline effect on hover */
}

/* Responsive Design */
@media (max-width: 1200px) {
    .job-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 items per row on medium screens */
    }
}

@media (max-width: 992px) {
    .job-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 items per row on smaller screens */
    }
}

@media (max-width: 768px) {
    .job-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row */
    }
}

@media (max-width: 576px) {
    .job-grid {
        grid-template-columns: 1fr; /* 1 item per row on mobile */
    }
}



/* Global Styles */

main#primary {
    margin-top: 10rem !important;
    margin-bottom: 3rem !important;
}    
  /* Main Layout */
  .site-main {
    margin-top: 60px;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
  }
  
  .col-lg-8 {
    flex: 0 0 66.66%;
  }
  
  .col-lg-4 {
    flex: 0 0 31%;
  }
  
  /* Article Card */
  .card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }
  
  .card-body {
    padding: 25px;
  }
  
  .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .entry-meta {
    font-size: 0.9rem;
    color: #777;
  }
  
  /* Content Styling */
  .entry-content p {
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  .entry-content hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 25px 0;
  }
  
  .entry-content ul {
    list-style: none;
    padding-left: 0;
  }
  
  .entry-content ul li {
    margin-bottom: 10px;
    position: relative;
  }
  
  .entry-content ul li::before {
    content: "✔️";
    position: absolute;
    left: -25px;
    color: #28a745;
  }
  
  /* Sidebar */
  .sidebar-card {
    margin-bottom: 25px;
  }
  
  .sidebar-card .card-header {
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 600;
    padding: 10px 15px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  
  .sidebar-card .card-body {
    padding: 15px;
  }
  
  .popular-category a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
  }
  
  .popular-category a:hover {
    color: #0077cc;
  }
  
  /* Search box */
  .sidebar-search {
    display: flex;
    gap: 8px;
  }
  
  .search-input {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 8px;
  }
  
  .sidebar-search .btn {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
  }
  
  .sidebar-search .btn:hover {
    background: var(--gradient-primary);
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .col-lg-8,
    .col-lg-4 {
      flex: 0 0 100%;
    }
  }
     /* Footer */
        .footer {
            background-color: var(--darker);
            color: white;
            position: relative;
        }
        .footer-top {
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .footer-middle {
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .footer-bottom {
            padding: 30px 0;
        }
        .footer-widget {
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }
        .footer-about {
            color: rgba(255,255,255,0.7);
            margin-bottom: 1.5rem;
        }
        .widget-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
            color: white !important;
        }
        .widget-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-primary);
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        .footer-links i {
            width: 20px;
            margin-right: 10px;
            color: var(--primary);
        }
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        .social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        .newsletter h4 {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            color: white !important;
        }
        .newsletter-form {
            display: flex;
            gap: 1rem;
        }
        .newsletter-form .form-control {
            background: rgba(255,255,255,0.1);
            border: none;
            color: white;
            padding: 0.75rem 1rem;
            flex: 1;
            margin: 0;
        }
        .newsletter-form .form-control::placeholder {
            color: rgba(255,255,255,0.5);
        }
        .newsletter-form .btn {
            white-space: nowrap;
            padding: 0px 20px 0px 20px;
        }
        .footer-app h4 {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            color: white !important;
        }
        .app-buttons {
            display: flex;
            gap: 1rem;
        }
        .app-btn {
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 0.5rem 1rem;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
        }
        .app-btn:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        .app-btn i {
            font-size: 1.5rem;
        }
        .app-btn span {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
            font-size: 0.8rem;
        }
        .app-btn strong {
            font-size: 1rem;
        }
        .footer-links-horizontal {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-links-horizontal a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-links-horizontal a:hover {
            color: white;
        }
        .copyright {
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
        }
        /* Dark/Light Mode Toggle */
        .theme-toggle {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
            z-index: 1000;
            border: none;
            transition: all 0.3s ease;
        }
        .theme-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(67, 97, 238, 0.4);
        }
        

        /* 1️⃣ contact us page css *//* ===== Professional Contact Section ===== */
.pro-contact-sec {
    background: #ffffff;
    padding: 150px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
  }
  
  .pro-contact-wrap {
    max-width: 1100px;
    margin: auto;
    text-align: center;
  }
  
  .pro-contact-title {
    font-size: 32px;
    color: #111;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .pro-contact-text {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
  }
  
  /* ===== Layout ===== */
  .pro-contact-box {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  /* ===== Left Info Section ===== */
  .pro-contact-info {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
  }
  
  .pro-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .pro-info-item i {
    font-size: 24px;
    color: #007bff;
    background: #e6f0ff;
    padding: 12px;
    border-radius: 50%;
    min-width: 48px;
    text-align: center;
  }
  
  .pro-info-item h3 {
    font-size: 17px;
    color: #222;
    margin: 0 0 4px 0;
  }
  
  .pro-info-item p {
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
  }
  
  /* ===== Right Form Section ===== */
  .pro-contact-form {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 35px 30px;
    text-align: left;
  }
  
  .pro-contact-form h3 {
    font-size: 20px;
    color: #111;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .pro-input,
  .pro-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 15px;
    transition: all 0.3s ease;
  }
  
  .pro-input:focus,
  .pro-textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0,123,255,0.3);
    outline: none;
  }
  
  .pro-textarea {
    resize: none;
    height: 120px;
  }
  
  .pro-btn {
    display: inline-block;
    background: #007bff;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .pro-btn:hover {
    background: #0056b3;
  }
  
  /* ===== Responsive ===== */
  @media (max-width: 768px) {
    .pro-contact-box {
      flex-direction: column;
    }
  
    .pro-contact-info,
    .pro-contact-form {
      width: 100%;
    }
  
    .pro-contact-form {
      margin-top: 30px;
    }
  }




  .firstSection {
    margin-top: 150px !important;
}

  .takluWrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.takluHero {
    text-align: center;
    padding: 80px 0;
    background-color: #0d6efd;
    color: white;
    margin-bottom: 50px;
}

.takluMainHeading {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
}

.takluSubHeading {
    font-size: 20px;
    margin-top: 15px;
    opacity: 0.9;
}

.takluContentBlock {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.takluSectionTitle {
    color: #0d6efd;
    margin-top: 0;
    border-bottom: 2px solid #0d6efd;
    padding-bottom: 12px;
    font-size: 28px;
}

.takluParagraph {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.takluTeamContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.takluTeamMember {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s;
}

.takluTeamMember:hover {
    transform: translateY(-5px);
}

.takluMemberPhoto {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0d6efd;
    margin-bottom: 15px;
}

.takluMemberName {
    margin: 15px 0 8px;
    color: #0d6efd;
    font-size: 20px;
}

.takluMemberRole {
    color: #666;
    font-weight: 600;
    margin-bottom: 15px;
}

.takluStatsGrid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
    text-align: center;
}

.takluStatItem {
    padding: 20px;
}

.takluStatNumber {
    font-size: 40px;
    font-weight: 800;
    color: #0d6efd;
    display: block;
}

.takluStatLabel {
    font-size: 16px;
    color: #666;
}

.takluValuesList {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.takluValueCard {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0d6efd;
}

.takluValueTitle {
    font-size: 20px;
    color: #0d6efd;
    margin-bottom: 12px;
}

.takluCtaSection {
    background-color: #0d6efd;
    color: white;
    padding: 60px 0;
    text-align: center;
    border-radius: 8px;
    margin: 50px 0;
}

.takluCtaHeading {
    font-size: 32px;
    margin-bottom: 20px;
}

.takluCtaButton {
    display: inline-block;
    background: white;
    color: #0d6efd;
    padding: 14px 35px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s;
}

.takluCtaButton:hover {
    background: #e9ecef;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .takluMainHeading {
        font-size: 32px;
    }
    
    .takluSubHeading {
        font-size: 18px;
    }
    
    .takluContentBlock {
        padding: 25px 20px;
    }
    
    .takluSectionTitle {
        font-size: 24px;
    }
}
  