.elementor-2768 .elementor-element.elementor-element-136d14b{--display:flex;}.elementor-2768 .elementor-element.elementor-element-46e3d30{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2768 .elementor-element.elementor-element-118182e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2768 .elementor-element.elementor-element-2bfe06d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2768 .elementor-element.elementor-element-ad20d1c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2768 .elementor-element.elementor-element-46c5006{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2768 .elementor-element.elementor-element-5363349{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-cf5a4cb *//* --- Variables for Easy WordPress Customization --- */
:root {
    --ts-purple: #7155f6;
    --ts-purple-light: #f3f0ff;
    --ts-purple-circle: #e6e1ff;
    --ts-pink: #f472b6;
    --ts-pink-light: #fce7f3;
    --ts-dark: #1a1b24;
    --ts-grey: #64748b;
    --ts-font-main: 'Poppins', sans-serif;
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--ts-font-main);
    background-color: #ffffff;
    color: var(--ts-dark);
}

/* --- Hero Section Layout --- */
.ts-hero-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    overflow: hidden; /* Prevents decorative elements from causing horizontal scroll */
}

.ts-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* --- Typography & Left Content --- */
.ts-content {
    flex: 1;
    max-width: 600px;
}

.ts-greeting {
    color: var(--ts-pink);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
}

.ts-name {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--ts-dark);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.ts-title {
    color: var(--ts-purple);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.ts-description {
    color: var(--ts-grey);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}

/* --- Buttons --- */
.ts-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.ts-btn {
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.ts-btn-primary {
    background-color: var(--ts-purple);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(113, 85, 246, 0.2);
}

.ts-btn-primary:hover {
    background-color: #5a40d0;color: #ffffff;
    transform: translateY(-2px);
}

.ts-btn-outline {
    background-color: transparent;
    color: var(--ts-dark);
    border: 1px solid var(--ts-dark);
}

.ts-btn-outline:hover {
    background-color: var(--ts-dark);
    color: #ffffff;
}

/* --- Social Links --- */
.ts-social-links {
    display: flex;
    gap: 15px;
}

.ts-social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ts-purple-light);
    color: var(--ts-purple);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.ts-social-links a:hover {
    background-color: var(--ts-purple);
    color: #ffffff;
    transform: translateY(-3px);
}

/* --- Right Visual & Graphics --- */
.ts-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.ts-graphics-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
}

/* Overlapping Circles Concept */
.ts-image-circles {
    position: absolute;
    width: 420px;
    height: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ts-circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--ts-purple-light);
    border-radius: 50%;
    top: 15px;
    left: 25px;
    z-index: 1;
}

.ts-circle-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--ts-purple-circle);
    border-radius: 50%;
    box-shadow: -10px 10px 40px rgba(0,0,0,0.08);
    z-index: 2;
    overflow: hidden; 
    border: 8px solid #ffffff; /* Gives the white border effect */
}

/* Decorative Dot Grid */
.ts-dot-grid {
    position: absolute;
    top: 30px;
    left: -20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#c7c0ea 2px, transparent 2px);
    background-size: 16px 16px;
    z-index: 0;
}

/* Decorative Pink Circle */
.ts-pink-circle {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 120px;
    height: 120px;
    background-color: var(--ts-pink-light);
    border-radius: 50%;
    z-index: 0;
}

/* Floating Badge */
.ts-status-badge {
    position: absolute;
    bottom: 50px;
    right: 0px;
    background-color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 5;
}

.ts-dot {
    width: 10px;
    height: 10px;
    background-color: #10b981; /* Green color */
    border-radius: 50%;
    display: inline-block;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .ts-name {
        font-size: 3.5rem;
    }
    .ts-graphics-wrapper {
        width: 400px;
        height: 400px;
    }
    .ts-image-circles {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .ts-container {
        flex-direction: column;
        text-align: center;
    }
    
    .ts-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ts-name {
        font-size: 3rem;
    }

    .ts-buttons {
        justify-content: center;
    }

    .ts-visual {
        justify-content: center;
        margin-top: 40px;
        width: 100%;
    }
    
    .ts-status-badge {
        right: 10%;
    }
}

@media (max-width: 480px) {
    .ts-name {
        font-size: 2.5rem;
    }
    
    .ts-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .ts-btn {
        width: 100%;
        text-align: center;
    }

    .ts-graphics-wrapper {
        width: 100%;
        height: 350px;
    }

    .ts-image-circles {
        width: 280px;
        height: 280px;
    }
}/* --- Variables for Easy WordPress Customization --- */
:root {
    --ts-purple: #7155f6;
    --ts-purple-light: #f3f0ff;
    --ts-purple-circle: #e6e1ff;
    --ts-pink: #f472b6;
    --ts-pink-light: #fce7f3;
    --ts-dark: #1a1b24;
    --ts-grey: #64748b;
    --ts-font-main: 'Poppins', sans-serif;
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--ts-font-main);
    background-color: #ffffff;
    color: var(--ts-dark);
}

/* --- Hero Section Layout --- */
.ts-hero-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    overflow: hidden; /* Prevents decorative elements from causing horizontal scroll */
}

.ts-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* --- Typography & Left Content --- */
.ts-content {
    flex: 1;
    max-width: 600px;
}

.ts-greeting {
    color: var(--ts-pink);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
}

.ts-name {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--ts-dark);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.ts-title {
    color: var(--ts-purple);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.ts-description {
    color: var(--ts-grey);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}

/* --- Buttons --- */
.ts-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.ts-btn {
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.ts-btn-primary {
    background-color: var(--ts-purple);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(113, 85, 246, 0.2);
}

.ts-btn-primary:hover {
    background-color: #5a40d0;
    transform: translateY(-2px);
}

.ts-btn-outline {
    background-color: transparent;
    color: var(--ts-dark);
    border: 1px solid var(--ts-dark);
}

.ts-btn-outline:hover {
    background-color: var(--ts-dark);
    color: #ffffff;
}

/* --- Social Links --- */
.ts-social-links {
    display: flex;
    gap: 15px;
}

.ts-social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ts-purple-light);
    color: var(--ts-purple);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.ts-social-links a:hover {
    background-color: var(--ts-purple);
    color: #ffffff;
    transform: translateY(-3px);
}

/* --- Right Visual & Graphics --- */
.ts-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.ts-graphics-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
}

/* Overlapping Circles Concept */
.ts-image-circles {
    position: absolute;
    width: 420px;
    height: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ts-circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--ts-purple-light);
    border-radius: 50%;
    top: 15px;
    left: 25px;
    z-index: 1;
}

.ts-circle-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--ts-purple-circle);
    border-radius: 50%;
    box-shadow: -10px 10px 40px rgba(0,0,0,0.08);
    z-index: 2;
    overflow: hidden; 
    border: 8px solid #ffffff; /* Gives the white border effect */
}

/* Decorative Dot Grid */
.ts-dot-grid {
    position: absolute;
    top: 30px;
    left: -20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#c7c0ea 2px, transparent 2px);
    background-size: 16px 16px;
    z-index: 0;
}

/* Decorative Pink Circle */
.ts-pink-circle {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 120px;
    height: 120px;
    background-color: var(--ts-pink-light);
    border-radius: 50%;
    z-index: 0;
}

/* Floating Badge */
.ts-status-badge {
    position: absolute;
    bottom: 50px;
    right: 0px;
    background-color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 5;
}

.ts-dot {
    width: 10px;
    height: 10px;
    background-color: #10b981; /* Green color */
    border-radius: 50%;
    display: inline-block;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .ts-name {
        font-size: 3.5rem;
    }
    .ts-graphics-wrapper {
        width: 400px;
        height: 400px;
    }
    .ts-image-circles {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .ts-container {
        flex-direction: column;
        text-align: center;
    }
    
    .ts-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ts-name {
        font-size: 3rem;
    }

    .ts-buttons {
        justify-content: center;
    }

    .ts-visual {
        justify-content: center;
        margin-top: 40px;
        width: 100%;
    }
    
    .ts-status-badge {
        right: 10%;
    }
}

@media (max-width: 480px) {
    .ts-name {
        font-size: 2.5rem;
    }
    
    .ts-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .ts-btn {
        width: 100%;
        text-align: center;
    }

    .ts-graphics-wrapper {
        width: 100%;
        height: 350px;
    }

    .ts-image-circles {
        width: 280px;
        height: 280px;
    }
}/* --- Variables for Easy WordPress Customization --- */
:root {
    --ts-purple: #7155f6;
    --ts-purple-light: #f3f0ff;
    --ts-purple-circle: #e6e1ff;
    --ts-pink: #f472b6;
    --ts-pink-light: #fce7f3;
    --ts-dark: #1a1b24;
    --ts-grey: #64748b;
    --ts-font-main: 'Poppins', sans-serif;
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--ts-font-main);
    background-color: #ffffff;
    color: var(--ts-dark);
}

/* --- Hero Section Layout --- */
.ts-hero-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    overflow: hidden; /* Prevents decorative elements from causing horizontal scroll */
}

.ts-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* --- Typography & Left Content --- */
.ts-content {
    flex: 1;
    max-width: 600px;
}

.ts-greeting {
    color: var(--ts-pink);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
}

.ts-name {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--ts-dark);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.ts-title {
    color: var(--ts-purple);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.ts-description {
    color: var(--ts-grey);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}

/* --- Buttons --- */
.ts-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.ts-btn {
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.ts-btn-primary {
    background-color: var(--ts-purple);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(113, 85, 246, 0.2);
}

.ts-btn-primary:hover {
    background-color: #5a40d0;
    transform: translateY(-2px);
}

.ts-btn-outline {
    background-color: transparent;
    color: var(--ts-dark);
    border: 1px solid var(--ts-dark);
}

.ts-btn-outline:hover {
    background-color: var(--ts-dark);
    color: #ffffff;
}

/* --- Social Links --- */
.ts-social-links {
    display: flex;
    gap: 15px;
}

.ts-social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ts-purple-light);
    color: var(--ts-purple);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.ts-social-links a:hover {
    background-color: var(--ts-purple);
    color: #ffffff;
    transform: translateY(-3px);
}

/* --- Right Visual & Graphics --- */
.ts-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.ts-graphics-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
}

/* Overlapping Circles Concept */
.ts-image-circles {
    position: absolute;
    width: 420px;
    height: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ts-circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--ts-purple-light);
    border-radius: 50%;
    top: 15px;
    left: 25px;
    z-index: 1;
}

.ts-circle-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--ts-purple-circle);
    border-radius: 50%;
    box-shadow: -10px 10px 40px rgba(0,0,0,0.08);
    z-index: 2;
    overflow: hidden; 
    border: 8px solid #ffffff; /* Gives the white border effect */
}

/* Decorative Dot Grid */
.ts-dot-grid {
    position: absolute;
    top: 30px;
    left: -20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#c7c0ea 2px, transparent 2px);
    background-size: 16px 16px;
    z-index: 0;
}

/* Decorative Pink Circle */
.ts-pink-circle {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 120px;
    height: 120px;
    background-color: var(--ts-pink-light);
    border-radius: 50%;
    z-index: 0;
}

/* Floating Badge */
.ts-status-badge {
    position: absolute;
    bottom: 50px;
    right: 0px;
    background-color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 5;
}

.ts-dot {
    width: 10px;
    height: 10px;
    background-color: #10b981; /* Green color */
    border-radius: 50%;
    display: inline-block;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .ts-name {
        font-size: 3.5rem;
    }
    .ts-graphics-wrapper {
        width: 400px;
        height: 400px;
    }
    .ts-image-circles {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .ts-container {
        flex-direction: column;
        text-align: center;
    }
    
    .ts-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ts-name {
        font-size: 3rem;
    }

    .ts-buttons {
        justify-content: center;
    }

    .ts-visual {
        justify-content: center;
        margin-top: 40px;
        width: 100%;
    }
    
    .ts-status-badge {
        right: 10%;
    }
}

@media (max-width: 480px) {
    .ts-name {
        font-size: 2.5rem;
    }
    
    .ts-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .ts-btn {
        width: 100%;
        text-align: center;
    }

    .ts-graphics-wrapper {
        width: 100%;
        height: 350px;
    }

    .ts-image-circles {
        width: 280px;
        height: 280px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f968b90 *//* --- About Section Layout --- */
.ts-about-section {display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 100px 20px;
    background-color: #ffffff;
}

.ts-about-section .ts-container {
    align-items: center;
    gap: 80px; /* Space between image and text columns */
}

/* --- Left Column: Visuals --- */
.ts-about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ts-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    background-color: #f9fbfc; /* Light background placeholder */
    border-radius: 20px;
    aspect-ratio: 4 / 4.5;
    /* Optional: Add a subtle shadow if the image doesn't have a background */
    box-shadow: 0 10px 40px rgba(0,0,0,0.03); 
}

.ts-about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Floating Purple Badge */
.ts-experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--ts-purple);
    color: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(113, 85, 246, 0.2);
    z-index: 2;
}

.ts-exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 15px;
}

.ts-exp-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

/* --- Right Column: Content --- */
.ts-about-content {
    flex: 1;
}

.ts-section-subtitle {
    color: var(--ts-purple);
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 15px;
}

.ts-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ts-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ts-section-desc {
    color: var(--ts-grey);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* --- Info Cards Grid --- */
.ts-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.ts-info-card {
    background-color: var(--ts-purple-light); /* using the variable from hero section */
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* The distinct purple left border on the cards */
.ts-info-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--ts-purple);
    border-radius: 10px 0 0 10px;
}

.ts-info-label {
    display: block;
    font-size: 0.85rem;
    color: var(--ts-grey);
    margin-bottom: 5px;
}

.ts-info-value {
    display: block;
    font-size: 1.05rem;
    color: var(--ts-dark);
    font-weight: 700;
}

/* Utility Class for margin */
.ts-mt-20 {
    margin-top: 20px;
    display: inline-block;
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .ts-about-section .ts-container {
        flex-direction: column;
        gap: 60px;
    }

    .ts-about-visual {
        width: 100%;
        margin-bottom: 30px;
    }

    .ts-image-wrapper {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .ts-section-title {
        font-size: 2rem;
    }

    .ts-experience-badge {
        left: -10px;
        bottom: -20px;
        padding: 20px;
    }
    
    .ts-exp-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .ts-info-grid {
        grid-template-columns: 1fr; /* Stacks the cards 1 by 1 on phones */
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ef9fd11 *//* --- Unique Scoped Variables for Skills Section --- */
.ts-skillsec-wrapper {
    --sec-bg: #f8f9fc; /* Very light cool grey matching the image */
    --sec-purple: #7155f6;
    --sec-purple-light: #f3f0ff;
    --sec-dark: #1a1b24;
    --sec-grey: #64748b;
    --sec-white: #ffffff;
    --sec-font: 'Poppins', sans-serif;
    
    background-color: var(--sec-bg);
    padding: 100px 20px;
    font-family: var(--sec-font);
    color: var(--sec-dark);
}

.ts-skillsec-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* --- Header Styling --- */
.ts-skillsec-header {
    text-align: center;
    margin-bottom: 60px;
}

.ts-skillsec-subtitle {
    display: block;
    color: var(--sec-grey);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.ts-skillsec-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--sec-dark);
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.ts-skillsec-desc {
    color: var(--sec-grey);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Grid Layout --- */
.ts-skillsec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* --- Individual Skill Cards --- */
.ts-skillsec-card {
    background-color: var(--sec-white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Soft subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ts-skillsec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(113, 85, 246, 0.08); /* Slight purple glow on hover */
}

/* --- Card Icons --- */
.ts-skillsec-icon {
    width: 55px;
    height: 55px;
    background-color: var(--sec-purple-light);
    color: var(--sec-purple);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

/* --- Card Text --- */
.ts-skillsec-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--sec-dark);
    margin-bottom: 12px;
}

.ts-skillsec-text {
    font-size: 0.95rem;
    color: var(--sec-grey);
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive Design --- */

/* Tablets / Smaller Laptops (under 1024px) */
@media (max-width: 1024px) {
    .ts-skillsec-grid {
        grid-template-columns: repeat(2, 1fr); /* Changes to 2 columns */
        gap: 25px;
    }
    
    .ts-skillsec-title {
        font-size: 2.4rem;
    }
}

/* Mobile Phones (under 768px) */
@media (max-width: 768px) {
    .ts-skillsec-wrapper {
        padding: 80px 20px;
    }

    .ts-skillsec-title {
        font-size: 2rem;
    }
    
    .ts-skillsec-desc {
        font-size: 1rem;
    }
}

/* Small Mobile Phones (under 576px) */
@media (max-width: 576px) {
    .ts-skillsec-grid {
        grid-template-columns: 1fr; /* Changes to 1 single column */
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-27ea46c *//* --- Unique Scoped Variables for Projects Section --- */
.ts-projsec-wrapper {
    --pj-bg: #ffffff;
    --pj-dark: #1a1b24;
    --pj-grey: #64748b;
    --pj-dark-grey: #475569;
    --pj-purple: #7155f6;
    --pj-purple-light: #f3f0ff;
    --pj-white: #ffffff;
    --pj-font: 'Poppins', sans-serif;
    
    background-color: var(--pj-bg);
    padding: 100px 20px;
    font-family: var(--pj-font);
    color: var(--pj-dark);
}

.ts-projsec-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* --- Header Styling --- */
.ts-projsec-header {
    text-align: left;
    margin-bottom: 60px;
}

.ts-projsec-subtitle {
    display: block;
    color: var(--pj-dark-grey);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.ts-projsec-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--pj-dark);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ts-projsec-desc {
    color: var(--pj-grey);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 650px;
}

/* --- Grid Layout --- */
.ts-projsec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* --- Individual Project Cards --- */
.ts-projsec-card {
    background-color: var(--pj-white);
    border-radius: 20px;
    overflow: hidden; /* Keeps the top of the image rounded */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ts-projsec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(113, 85, 246, 0.08);
}

/* --- Card Image --- */
.ts-projsec-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3; /* Keeps all images identical in height/proportions */
    overflow: hidden;
    background-color: #f1f5f9;height: 190px;
}

.ts-projsec-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; /* Ensures the top of the website design is shown */
    display: block;
    transition: transform 0.5s ease;
}

.ts-projsec-card:hover .ts-projsec-img {
    transform: scale(1.03); /* Slight zoom effect on hover */
}

/* --- Card Content --- */
.ts-projsec-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Pushes the link to the bottom if text lengths vary */
}

.ts-projsec-tags {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ts-projsec-tag {
    background-color: var(--pj-purple-light);
    color: var(--pj-purple);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
}

.ts-projsec-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pj-dark);
    margin-bottom: 12px;
}

.ts-projsec-text {
    font-size: 0.95rem;
    color: var(--pj-grey);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.ts-projsec-link {
    text-decoration: none;
    color: var(--pj-purple);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.ts-projsec-link:hover {
    color: #5a40d0; /* Darker purple on hover */
}


/* --- Responsive Design --- */

/* Tablets / Laptops (under 1024px) */
@media (max-width: 1024px) {
    .ts-projsec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ts-projsec-title {
        font-size: 2.5rem;
    }
}

/* Mobile Phones (under 768px) */
@media (max-width: 768px) {
    .ts-projsec-wrapper {
        padding: 80px 20px;
    }

    .ts-projsec-grid {
        grid-template-columns: 1fr;
    }

    .ts-projsec-title {
        font-size: 2.2rem;
    }
    
    .ts-projsec-header {
        text-align: center;
    }

    .ts-projsec-desc {
        margin: 0 auto;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4a46489 *//* --- Unique Scoped Variables for Why Work With Me Section --- */
.ts-whysec-wrapper {
    --why-bg: #f8f9fc; /* Very light cool grey matching the image */
    --why-dark: #1a1b24;
    --why-grey: #64748b;
    --why-dark-grey: #475569;
    --why-purple: #7155f6;
    --why-white: #ffffff;
    --why-font: 'Poppins', sans-serif;
    
    background-color: var(--why-bg);
    padding: 100px 20px;
    font-family: var(--why-font);
    color: var(--why-dark);
}

.ts-whysec-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* --- Header Styling --- */
.ts-whysec-header {
    text-align: center;
    margin-bottom: 70px;
}

.ts-whysec-subtitle {
    display: block;
    color: var(--why-dark-grey);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.ts-whysec-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--why-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* --- Grid Layout --- */
.ts-whysec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* --- Individual Feature Items --- */
.ts-whysec-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Keeps everything left-aligned */
}

/* --- Icon with Glow Effect --- */
.ts-whysec-icon-wrap {
    width: 65px;
    height: 65px;
    background-color: var(--why-purple);
    color: var(--why-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    /* This creates the soft glowing purple shadow seen in the design */
    box-shadow: 0 15px 35px rgba(113, 85, 246, 0.35); 
    transition: transform 0.3s ease;
}

.ts-whysec-item:hover .ts-whysec-icon-wrap {
    transform: translateY(-5px); /* Gentle hover bounce */
}

/* --- Text Content --- */
.ts-whysec-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--why-dark);
    margin-bottom: 15px;
}

.ts-whysec-text {
    font-size: 0.95rem;
    color: var(--why-grey);
    line-height: 1.7;
    margin: 0;
}


/* --- Responsive Design --- */

/* Tablets / Smaller Laptops (under 1024px) */
@media (max-width: 1024px) {
    .ts-whysec-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
        gap: 50px 30px;
    }
    
    .ts-whysec-title {
        font-size: 2.5rem;
    }
}

/* Mobile Phones (under 768px) */
@media (max-width: 768px) {
    .ts-whysec-wrapper {
        padding: 80px 20px;
    }

    .ts-whysec-grid {
        grid-template-columns: 1fr; /* 1 column on phones */
        gap: 40px;
    }

    .ts-whysec-title {
        font-size: 2.2rem;
    }
    
    .ts-whysec-item {
        align-items: center; /* Center-aligns items on mobile for better balance */
        text-align: center;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-147d9d9 *//* --- Unique Scoped Variables for Blog Section --- */
.ts-blogsec-wrapper {
    --blog-bg: #ffffff; 
    --blog-dark: #1a1b24;
    --blog-grey: #64748b;
    --blog-dark-grey: #475569;
    --blog-purple: #7155f6;
    --blog-pink: #ff6b81; /* Pink color for the category text */
    --blog-white: #ffffff;
    --blog-font: 'Poppins', sans-serif;
    
    background-color: var(--blog-bg);
    padding: 100px 20px;
    font-family: var(--blog-font);
    color: var(--blog-dark);
}

.ts-blogsec-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* --- Header Styling --- */
.ts-blogsec-header {
    text-align: center;
    margin-bottom: 60px;
}

.ts-blogsec-subtitle {
    display: block;
    color: var(--blog-dark-grey);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.ts-blogsec-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--blog-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* --- Grid Layout --- */
.ts-blogsec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* --- Individual Blog Cards --- */
.ts-blogsec-card {
    background-color: var(--blog-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); /* Soft shadow matching the design */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ts-blogsec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(113, 85, 246, 0.08); /* Soft purple hover glow */
}

/* --- Card Image --- */
.ts-blogsec-img-wrap {
    width: 100%;
    height: 190px;
    aspect-ratio: 4 / 3; /* Uniform image sizing */
    overflow: hidden;
    background-color: #f8f9fc;
}

.ts-blogsec-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ts-blogsec-card:hover .ts-blogsec-img {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* --- Card Content --- */
.ts-blogsec-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Pushes the 'Read More' link to the bottom evenly */
}

.ts-blogsec-category {
    color: var(--blog-pink);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.ts-blogsec-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blog-dark);
    line-height: 1.4;
    margin-bottom: 15px;
}

.ts-blogsec-excerpt {
    font-size: 0.95rem;
    color: var(--blog-grey);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.ts-blogsec-link {
    text-decoration: none;
    color: var(--blog-purple);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.ts-blogsec-link:hover {
    color: #5a40d0; /* Darker purple on hover */
}

/* --- Responsive Design --- */

/* Tablets / Laptops (under 1024px) */
@media (max-width: 1024px) {
    .ts-blogsec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ts-blogsec-title {
        font-size: 2.5rem;
    }
}

/* Mobile Phones (under 768px) */
@media (max-width: 768px) {
    .ts-blogsec-wrapper {
        padding: 80px 20px;
    }

    .ts-blogsec-grid {
        grid-template-columns: 1fr; /* Stacks to 1 column */
    }

    .ts-blogsec-title {
        font-size: 2.2rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6d97456 *//* --- Unique Scoped Variables for Contact Section --- */
.ts-contactsec-wrapper {
    --ct-bg-outer: #ffffff;
    --ct-bg-inner: #f6f5ff; /* The light purple rounded box */
    --ct-dark: #1a1b24;
    --ct-grey: #64748b;
    --ct-purple: #7155f6;
    --ct-purple-light: #e8e4ff;
    --ct-white: #ffffff;
    --ct-font: 'Poppins', sans-serif;
    
    background-color: var(--ct-bg-outer);
    padding: 100px 20px;
    font-family: var(--ct-font);
}

.ts-contactsec-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* --- The Main Purple Box --- */
.ts-contactsec-box {
    background-color: var(--ct-bg-inner);
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50/50 Split */
    gap: 60px;
    align-items: center;
}

/* --- Left Column: Info --- */
.ts-contactsec-subtitle {
    display: block;
    color: var(--ct-grey);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.ts-contactsec-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--ct-dark);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.ts-contactsec-desc {
    color: var(--ct-grey);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 450px;
}

/* Contact Details */
.ts-contactsec-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 45px;
}

.ts-contactsec-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ts-contactsec-icon {
    width: 55px;
    height: 55px;
    background-color: var(--ct-white);
    color: var(--ct-purple);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 10px 20px rgba(113, 85, 246, 0.05); /* Very soft shadow */
}

.ts-contactsec-text {
    display: flex;
    flex-direction: column;
}

.ts-contactsec-label {
    font-size: 0.85rem;
    color: var(--ct-grey);
    margin-bottom: 4px;
}

.ts-contactsec-value {
    font-size: 1.1rem;
    color: var(--ct-dark);
    font-weight: 700;
}

/* Social Icons */
.ts-contactsec-social {
    display: flex;
    gap: 15px;
}

.ts-contactsec-social a {
    width: 45px;
    height: 45px;
    background-color: var(--ct-purple-light);
    color: var(--ct-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ts-contactsec-social a:hover {
    background-color: var(--ct-purple);
    color: var(--ct-white);
    transform: translateY(-3px);
}

/* --- Right Column: Form Box --- */
.ts-contactsec-form-container {
    background-color: var(--ct-white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

/* --- Optional Forminator Styling --- 
   This helps force your Forminator form to look like the design! 
*/
.ts-contactsec-form-container .forminator-ui .forminator-input,
.ts-contactsec-form-container .forminator-ui .forminator-textarea {
    border: 1px solid #eaeaea !important;
    border-radius: 12px !important;
    background-color: #fafafa !important;
    padding: 15px !important;
    font-family: 'Poppins', sans-serif !important;
}

.ts-contactsec-form-container .forminator-ui .forminator-label {
    font-weight: 700 !important;
    color: var(--ct-dark) !important;
    font-family: 'Poppins', sans-serif !important;
}

.ts-contactsec-form-container .forminator-ui .forminator-button-submit {
    background-color: var(--ct-purple) !important;
    border-radius: 30px !important;
    padding: 15px 35px !important;
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif !important;
    transition: background-color 0.3s ease !important;
}

.ts-contactsec-form-container .forminator-ui .forminator-button-submit:hover {
    background-color: #5a40d0 !important;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .ts-contactsec-box {
        grid-template-columns: 1fr; /* Stacks the form below the info */
        padding: 40px 30px;
        gap: 50px;
    }
    
    .ts-contactsec-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .ts-contactsec-wrapper {
        padding: 80px 15px;
    }

    .ts-contactsec-box {
        padding: 30px 20px;
    }

    .ts-contactsec-form-container {
        padding: 30px 20px;
    }

    .ts-contactsec-title {
        font-size: 2.4rem;
    }
}/* End custom CSS */