:root {
    --accent1: #EA001B;
    --accent2: #F79E1B;
    --text-light: #fff;
    --text-dark: #1a1a1a;
    --card-bg: #fff;
    --card-title: #EA001B;
    --radius-full: 999px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-strong: 0 6px 24px rgba(0, 0, 0, 0.25);
    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* RESET & BASE STYLES */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

* {

    cursor: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

/* ================= Custom Cursor ================= */
#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    background: url('./Assets/cursur.png') no-repeat center center;
    background-size: contain;
    pointer-events: none;
    /* ensures clicks pass through */
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

/* Pointer scaling on hover for interactive elements */
a:hover~#custom-cursor,
button:hover~#custom-cursor {
    transform: translate(-50%, -50%) scale(1.5);
    /* bigger when hovering */
}

/* ================= Scrollable Content Wrapper ================= */
#scroll-container {
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
    /* scroll only here */
    scroll-behavior: smooth;
}

/* Hide default OS scrollbars */
#scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

#scroll-container {
    -ms-overflow-style: none;
    /* IE, Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* ================= Custom Scrollbar ================= */
#scroll-bar {
    position: fixed;
    top: 0;
    right: 10px;
    width: 8px;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    pointer-events: none;
    /* ensures OS scrollbar remains usable */
    z-index: 9998;
}

#scroll-thumb {
    width: 100%;
    background: linear-gradient(to bottom, #3c02db, #15ff00);
    border-radius: 4px;
    position: absolute;
    top: 0;
    height: 50px;
    box-shadow: 0 0 8px rgba(234, 0, 27, 0.6);
    transition: top 0.1s ease, height 0.2s ease;
}

/* PANEL */
.panel {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    top: 0;
}

/* HEADINGS */
h2 {
    color: var(--text-light);
    margin-bottom: 80px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
}

h3 {
    color: var(--card-bg);
    margin-bottom: 20px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

/* HERO SECTION */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#container3D {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
}

/* ================= HERO TITLE WITH WEBKIT STROKE ================= */
.hero-title {
    font-size: clamp(6.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--card-bg);

    -webkit-text-stroke: 2px var(--accent2);

    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.3),

        -2px -2px 4px rgba(0, 0, 0, 0.2);
}

.hero-title span {
    -webkit-text-stroke: 1px var(--card-bg);
    /* remove stroke for span */
    color: var(--accent2);
    /* accent color fill for span */
}

/* Hero subtext */
.hero-sub {
    margin: 0 0 30px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


#since-2011 {
    color: var(--accent2);
    font-weight: 600;
    font-size: calc(1.4rem + 0.2vw);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
        -2px -2px 4px rgba(0, 0, 0, 0.2);
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    text-decoration-style: solid;
    transition: all 0.3s ease;
    -webkit-text-stroke: 0.2px var(--text-dark);

}

/* ================== ADVANCED CTA BUTTON ================== */
.cta {
    position: relative;
    display: inline-block;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 0;
    text-decoration: none;
}

/* Animated border effect */
.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: rotate(45deg);
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

/* Hover effects */
.cta:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(234, 0, 27, 0.5), 0 8px 20px rgba(247, 158, 27, 0.3);
}

/* Border animation on hover */
.cta:hover::before {
    top: -25%;
    left: -25%;
    width: 250%;
    height: 250%;
    transform: rotate(135deg);
}

/* Tap / active effect */
.cta:active {
    transform: scale(0.95);
    box-shadow: 0 6px 15px rgba(234, 0, 27, 0.3), 0 4px 10px rgba(247, 158, 27, 0.2);
}



#scene-container canvas {
  cursor: default !important;
}



/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    height: 90px;
    padding: 0px 20px;
    /* पहले 12px 25px था, अब कम किया height के लिए */
    background: rgba(255, 255, 255, 0.239);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-strong);
    transition: var(--transition);
}


/* ================ LOGO ================ */
.navbar .logo img {
    height: 70px;
    width: auto;
    margin-left: 20px;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    transition: var(--transition);
}

/* ================ NAV LINKS ================ */
.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--accent1);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.6rem;
    /* smaller for better fit */
    position: relative;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent2);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: var(--accent2);
    transition: 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ================ FULLSCREEN DROPDOWN ================= */
.nav-dropdown {
    position: relative;
    cursor: pointer;
}

/* ================ FULLSCREEN DROPDOWN ================= */
.dropdown-content {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    width: 100%;
    max-width: 1000px;
    max-height: calc(100vh - 150px);
    /* screen-safe height */
    background: rgba(0, 0, 0, 0.85);
    border-radius: 30px;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    z-index: 9999;
    cursor: default;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.4s ease;
    padding: 20px 0;
    overflow-y: auto;
    /* scrollable if needed */

    /* Hide Scrollbar */
    scrollbar-width: none;
    /* Firefox */
}

.dropdown-content::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge */
}


.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

/* MAIN DROPDOWN ITEMS */
.dropdown-content li {
    list-style: none;
    margin: 10px 0;
}

.dropdown-content li a {
    font-size: 1.8rem;
    /* smaller to fit better */
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border-radius: var(--radius-md);
    display: inline-block;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeSlideUp 0.5s ease forwards;
}

.dropdown-content li:nth-child(1) a {
    animation-delay: 0.1s;
}

.dropdown-content li:nth-child(2) a {
    animation-delay: 0.2s;
}

.dropdown-content li:nth-child(3) a {
    animation-delay: 0.3s;
}

.dropdown-content li:nth-child(4) a {
    animation-delay: 0.4s;
}

.dropdown-content li a:hover {
    color: var(--accent2);
    background: rgba(255, 255, 255, 0.1);
}

/* SUB-DROPDOWN */
.sub-dropdown {
    display: none;
    flex-direction: column;
    margin-top: 10px;
    align-items: center;
}

.dropdown-content li:hover .sub-dropdown {
    display: flex;
}

.sub-dropdown li {
    margin: 5px 0;
}

.sub-dropdown li a {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ddd;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.sub-dropdown li a:hover {
    color: var(--accent1);
    background: rgba(255, 255, 255, 0.1);
}

/* ================ ANIMATION ================ */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================ HAMBURGER ================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent1);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {

    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========== MOBILE RESPONSIVE NAVBAR FIXED ========== */
@media screen and (max-width: 992px) {

    body {
        cursor: auto !important;
        /* mobile pe normal ho jayega */
    }

    /* Navbar fixed on top */
    .navbar {
        position: fixed;
        top: 10px;

        width: 100%;
        height: 60px;
        background-color: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    /* Logo */
    .navbar .logo img {
        width: 40px;
        height: auto;
        display: block;
    }

    /* Hamburger Icon */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--accent1);
        border-radius: 2px;
        transition: 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Nav Links Panel */
    .nav-links {
        position: fixed;
        top: 53px;
        /* Navbar ke neeche */
        left: -100%;
        width: 90%;
        right: 5%;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.98);
        border-radius: 15px;
        backdrop-filter: blur(12px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        /* ✅ Center align all links */
        padding: 20px 10px;
        transition: left 0.4s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        left: 0%;
        /* ✅ thoda andar slide hoke aaye */
    }

    .nav-links a {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--accent1);
        width: 100%;
        display: flex;
        justify-content: center;
        /* ✅ Center horizontally */
        align-items: center;
        /* ✅ Center vertically */
        padding: 12px 15px;
        border-radius: 6px;
        transition: background 0.3s ease;
        text-align: center;
        /* text bhi center */
    }

    .nav-links a:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    /* Parent Dropdown */
    .dropdown-content {
        display: none;
        flex-direction: column;
        width: 90%;
        /* ✅ full width under parent */
        background: rgba(0, 0, 0, 0.705);
        border-radius: 8px;
        margin-top: 5px;
        position: relative;
        top: 5px;
        left: 135px;
        right: 30px;
        padding: 8px 0;
        max-height: 350px;
        overflow-y: auto;
    }

    .nav-dropdown.active .dropdown-content {
        display: flex;
        /* ✅ show dropdown when active */
    }

    .dropdown-content a {
        font-size: 12px;

        color: #a92020;
        padding: 10px 20px;
        text-align: center;
        /* ✅ Center text inside dropdown */
        width: 100%;
    }

    /* Sub-Dropdown */
    .sub-dropdown {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(255, 255, 255, 0.1);
        margin: 0;
        border-radius: 6px;
        padding-left: 0;
        /* ✅ no left indent */
        max-height: 200px;
        overflow-y: auto;
    }

    .dropdown-content li.active .sub-dropdown {
        display: flex;
        /* ✅ opens right under parent */
    }

    .sub-dropdown a {
        font-size: 14px;
        color: #ddd;
        padding: 8px 20px;
        text-align: center;
        /* ✅ also center */
    }

    .sub-dropdown a:hover {
        color: var(--accent1);
        background: rgba(94, 87, 87, 0.15);
    }
 .typing-title,
    .hero-title {
        font-size: 28px;
    }
    .intro-text {
        font-size: 16px;
        padding: 0 15px; /* thoda space left-right */
    }
}

/* SCROLL INDICATOR */
.scroll-ind {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-weight: 700;
    animation: bounce 1.5s infinite;
    z-index: 10;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ================= SERVICES SECTION ================= */
#services {
    perspective: 1200px;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.services-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#logo-section {
    padding: 50px 20px;
    background-color: transparent;
    text-align: center;
}

.logo-container {
    display: flex;
    flex-wrap: nowrap;
    /* Single row on large screens */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    gap: 40px;
    overflow-x: auto;
    /* Scroll if needed */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

#clients {
    margin-bottom: 30px;
}

.logo-container::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar Chrome/Safari */

.logo-container img {
    max-width: 150px;
    height: auto;
    padding: 10px;
    margin: 0;
    display: block;
    filter: grayscale(0%);
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

/* ================= RESPONSIVE DESIGN ================= */

/* Mobile / Tablet: allow wrapping */
@media (max-width: 992px) {
    .logo-container {
        flex-wrap: wrap;
        /* Allow multiple rows on smaller screens */
        justify-content: center;
        /* Keep centered */
        gap: 30px;
    }

    .logo-container img {
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .logo-container img {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .logo-container img {
        max-width: 80px;
    }
}

/* ================= SPECIAL CASES ================= */
#logo-section {
    padding: 50px 20px;
    background-color: transparent;
    text-align: center;
}

.logo-container {
    display: flex;
    flex-wrap: nowrap;
    /* Single row on large screens */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    gap: 40px;
    overflow-x: auto;
    /* Scroll if needed */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.logo-container::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar Chrome/Safari */

.logo-container img {
    width: 150px;
    /* Uniform width for all logos */
    height: auto;
    /* Maintain aspect ratio */
    padding: 10px;
    margin: 0;
    display: block;
    filter: grayscale(0%);
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

/* ================= RESPONSIVE DESIGN ================= */

/* Medium screens: allow wrapping */
@media (max-width: 992px) {
    .logo-container {
        flex-wrap: wrap;
        /* Allow multiple rows on smaller screens */
        justify-content: center;
        /* Keep centered */
        gap: 30px;
    }

    .logo-container img {
        width: 120px;
    }
}

@media (max-width: 768px) {
    .logo-container img {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .logo-container img {
        width: 80px;
    }
}

@media (max-width: 360px) {
    .logo-container img {
        width: 70px;
    }
}

/* ================= ROLLER STYLES ================= */
.roller-container {
    perspective: 1200px;
    width: 100%;
    height: 690px;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.roller {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.roller-item {
    position: absolute;
    width: 380px;
    height: 550px;
    left: 50%;
    top: 50%;
    margin-left: -215px;
    /* half of width */
    margin-top: -275px;
    /* half of height */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.164), rgba(250, 250, 250, 0.85));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50 px;
    box-shadow: var(--shadow-card);
    backface-visibility: hidden;
    transition: var(--transition);
}

.roller-item .highlight {
    color: var(--card-bg);
    font-weight: 700;
    font-size: calc(1em + 0.1vw);
}

.roller-item h3 {
    font-size: 1.8rem;
    color: var(--card-bg);
    margin-bottom: 15px;
}

.roller-item h4 {
    font-size: 1.2rem;
    color: var(--accent1);
    margin-bottom: 20px;
    font-weight: 600;
}

.roller-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.roller-item .cta {
    margin-top: 10x;
    padding: 12px 25px;
    font-size: 0.9rem;
}

/* Lottie container */
.lottie-container {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    /* bottom spacing for indicator space */
}

/* SERVICE INDICATORS */
.service-indicators {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    /* card ke niche 20px */
    width: 100%;
    gap: 12px;
}

.service-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.service-indicator.active {
    background: white;
    transform: scale(1.3);
}

/* SERVICE NAVIGATION ARROWS */
.service-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    z-index: 10;
}

.service-nav-btn {
    pointer-events: all;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: none;
}

.service-nav-btn:hover {
    transform: scale(1.1);
    background: white;
}

.service-nav-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--accent1);
}

/* ===== Content Section ===== */
.content-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    color: #333;
    box-shadow: var(--shadow-card);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.8s ease;
    width: 100%;
    max-width: 1000px;
}

.content-item.visible {
    transform: translateX(0);
    opacity: 1;
}

.content-item h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent1);
}

.content-item p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ================= CONTACT ================= */
.contact-panel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    z-index: 2;
    color: var(--text-light);
    perspective: 1000px;
}

#contact-3d-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* ================= FLOAT ANIMATION ================= */
.contact-form {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 2;
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition);
    animation: floatForm 6s ease-in-out infinite;
}

@keyframes floatForm {

    0%,
    100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }

    15% {
        transform: translateY(-15px) rotateX(2deg) rotateY(-2deg);
    }

    30% {
        transform: translateY(12px) rotateX(-2deg) rotateY(1deg);
    }

    45% {
        transform: translateY(-18px) rotateX(3deg) rotateY(-3deg);
    }

    60% {
        transform: translateY(15px) rotateX(-3deg) rotateY(2deg);
    }

    75% {
        transform: translateY(-10px) rotateX(2deg) rotateY(-1deg);
    }

    90% {
        transform: translateY(8px) rotateX(-1deg) rotateY(1deg);
    }
}

.contact-form:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.35);
}

/* ================= FORM FIELDS ================= */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    flex: 1 1 100%;
    padding: 16px 20px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    outline: none;
    transition: var(--transition);
    font-family: "Poppins", sans-serif;
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent2);
    background: rgba(255, 255, 255, 0.459);
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.3);
}



/* Normal placeholder color */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light);
    padding: 30px;
    margin-left: 100px;
    /* default placeholder color */
}

.contact-form .term {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-top: -10px;
    margin-bottom: 0px;
}

.contact-form .checkbox {
    width: 100%;
    height: 18px;
    font-size: calc(0.7rem + 0.2vw);
    color: var(--text-dark);
    margin-right: 10px;
    accent-color: var(--accent2);
    cursor: pointer;
    margin-top: -40px;
}

.contact-form .checkbox input[type="checkbox"] {
    width: 28px;
    height: 28px;
    cursor: pointer;
    margin: 20px 0 0 0;
    accent-color: var(--accent2);
    /* tick color */
}

/* Remove default check if needed */
.contact-form .checkbox input[type="checkbox"]:checked {
    /* tick automatically handled by accent-color */
}

/* ================= CTA BUTTON ================= */
.contact-form .cta {
    align-self: center;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    color: var(--text-light);
    border-radius: var(--radius-full);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
}

.contact-form .cta:hover {
    transform: scale(1.07) rotate(-1deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* RESPONSIVE STYLES */
@media screen and (max-width: 576px) {
    

    .contact-form textarea {
        text-align: left;
        padding: 10px;
        border-radius: 10px;
        /* Space inside textarea */
    }

    .contact-form textarea::placeholder {
        color: var(--text-light);
        /* Light color for placeholder */
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
        border-width: 1px;
    }

    .contact-form textarea {
        min-height: 120px;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        padding: 0;
        font-size: 0.85rem;
    }

    .contact-form .term {
        font-size: 0.75rem;
        margin-top: -6px;
    }

    .contact-form .checkbox {
        font-size: 0.8rem;
        margin-top: -20px;
    }

    .contact-form .checkbox input[type="checkbox"] {
        width: 22px;
        height: 22px;
        margin: 10px;
    }

    .contact-form .cta {
        padding: 12px 30px;
        font-size: 0.9rem;
        margin-top: 8px;
    }

    .roller-container {
        height: 360px;
    }

    .roller-item {
        width: 260px;
        height: 420px;
        padding: 12px;
        margin-left: -130px;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 180px;
    }
    .hero-title{
        margin-bottom: 80px;
    }

    .service-nav-btn {
        width: 32px;
        height: 32px;
    }
}

@media screen and (max-width: 768px) {
    .panel {
        padding: 60px 15px;
    }

    .roller-container {
        height: 400px;
    }

    .roller-item {
        width: 300px;
        height: 380px;
        padding: 20px;
        margin-left: -150px;
    }

    .roller-item h3 {
        font-size: 1.5rem;
    }

    .roller-item h4 {
        font-size: calc(0.8rem + 0.2vw);
    }

    .service-nav {
        padding: 0 5px;
    }

    .service-nav-btn {
        width: 40px;
        height: 40px;
    }

    .service-nav-btn svg {
        width: 20px;
        height: 20px;
    }

    .content-item {
        padding: 20px;
    }

    .content-item h2 {
        font-size: 1.7rem;
    }

    .content-item p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 576px) {
    h2 {
        font-size: 1.5rem;
        position: relative;
        bottom: 50px;
    }

    .hero-inner {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .roller-container {
        height: 380px;
    }

    .roller-item {
        width: 280px;
        height: 40px;
        padding: 15px;
        margin-left: -140px;
    }

    .roller-item h3 {
        font-size: 1.3rem;
    }

    .roller-item p {
        font-size: 0.9rem;
    }

    .service-nav-btn {
        width: 35px;
        height: 35px;
    }

    .service-nav-btn svg {
        width: 18px;
        height: 18px;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 14px 18px;
    }

    .contact-form .cta {
        padding: 16px 40px;
        font-size: 1rem;
    }

    button.cta {
        padding: 16px 40px;
        font-size: calc(0.9rem + 0.1vw);
    }
}

@media (max-width: 576px) {
    .hero-inner {
        padding: 0 8px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .roller-container {
        height: 320px;
    }

    .roller-item {
        width: 220px;
        height: 440px;
        padding: 8px;
        margin-left: -110px;
    }

    .roller-item h3 {
        font-size: 1rem;
    }

    .roller-item p {
        font-size: 0.75rem;
    }

    .service-nav-btn,
    .service-nav-btn svg {
        width: 28px;
        height: 28px;
    }

    .contact-form {
        padding: 16px 8px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 8px 12px;
    }

    .contact-form .cta,
    button.cta {
        padding: 10px 28px;
        font-size: 0.85rem;
    }

    .lottie-container {
        width: 140px;
        height: 140px;
    }
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--accent2);
    outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: smooth;
    }

    #scroll-container {
        scroll-behavior: smooth;
    }
}

/* Footer */
.footer {
    position: relative;
    border-radius: 25px;
    padding: 30px 20px;
    font-family: 'Poppins', sans-serif;
    color: #fff;

    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Container */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

/* Logo */
.footer-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.footer-logo::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #e0e0e0);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2), -6px -6px 12px rgba(255, 255, 255, 0.6);
    z-index: 0;
}

.footer-logo img {
    position: relative;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Social Icons */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.footer-social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    color: var(--accent1);
    background: linear-gradient(145deg, #ffffff, #e0e0e0);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2), -4px -4px 8px rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--accent2);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.25), -6px -6px 12px rgba(255, 255, 255, 0.7);
}

.footer-social a i {
    pointer-events: none;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.footer-links a {
    color: var(--text-light);
    margin: 5px 12px;
    text-decoration: none;

    font-size: 18px;
    transition: color 0.3s, transform 0.3s;
}

.footer-links a:hover {
    color: var(--accent2);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}

.footer-bottom a {
    text-decoration: none;
    color: var(--accent1);
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    display: inline-block;
    /* important for border */
    padding: 5px 10px;
    /* optional: spacing for border */
    border-radius: 5px;
    /* optional: rounded border */
    transition: all 0.3s ease;
    /* smooth hover */
}

.footer-bottom a:hover {
    border: 2px solid var(--accent2);
    color: var(--accent2);
    /* optional: text color change */
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        margin: 15px 0;
    }

    .footer-links {
        margin-bottom: 15px;
    }

    .footer-logo::before {
        width: 70px;
        height: 70px;
    }

    .footer-logo img {
        height: 45px;
        width: 45px;
    }

    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

    /* ================= CAPSULE CARDS ================= */
    .capsules {
        display: flex;
        flex-direction: column;
        gap: 50px;
        width: 100%;
        padding: 80px 20px;
        max-width: 2000px;
        margin: 0 auto;
    }

    .capsule {
        position: relative;
        width: 100%;
        max-width: 1400px;
        min-height: 260px;
        margin: 0 auto;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
        border-radius: 250px;
        padding: 30px 40px;
        display: flex;
        flex-direction: row;
        align-items: center;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(255, 255, 255, 0.05) inset;
        cursor: pointer;
        overflow: hidden;
        opacity: 1;
        transform: translateY(0);
        transition: all 0.4s ease;
    }

    .capsule::before {
        content: "";
        position: absolute;
        top: -80px;
        left: -80px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: linear-gradient(45deg, #ff7e5f, #feb47b);
        filter: blur(120px);
        opacity: 0.25;
        pointer-events: none;
        z-index: -1;
    }

    .capsule:hover {
        transform: translateY(-5px) scale(1.01);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 80px rgba(255, 255, 255, 0.1) inset;
    }

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.icon {
    width: 30%;
    min-width: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon svg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    color: var(--accent2);
}

.content {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    text-align: left;
    padding-left: 40px;
}

.content h3 {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}

.content p,
.content ul {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.6;
    width: 100%;
}

.content ul {
    padding-left: 20px;
}

.content li {
    margin-bottom: 8px;
}

.highlight {
    color: #ffdd59;
    font-weight: 700;
}

/* ================= PROCESS SECTION ================= */
.process {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.box {
    max-width: 1800px;
    width: 95%;
    background: transparent;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding-bottom: 30px;
}

.topbar {
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    color: var(--text-light);
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px 20px 0 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px;
    justify-items: center;
}

.step {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    border-top: 4px solid var(--accent2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    width: 100%;
    max-width: 350px;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.icon {
    font-size: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;

    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.title {
    font-weight: 600;
    font-size: 1.7rem;
    margin-bottom: 8px;
}

.desc {
    font-size: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.assure {
    text-align: center;
    background: linear-gradient(135deg, var(--accent2), var(--accent1));
    border-top: 4px solid #ff6b6b;
    margin: 0 40px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.25);
}

.assure h2 {
    color: var(--card-bg);
    margin-bottom: 8px;
}

/* ================= RESPONSIVE BREAKPOINTS ================= */

/* Tablets / small laptops */
@media (max-width: 992px) {
    .capsules {
        padding: 50px 15px;
        gap: 40px;
    }

    .capsule {
        flex-direction: column;
        text-align: center;
        border-radius: 30px;
        padding: 25px;
    }

    .icon {
        width: 100%;
        margin: 0 auto 20px;
    }

    .icon svg {
        width: 100px;
        height: 100px;
    }

    .content {
        width: 100%;
        padding-left: 0;
        gap: 12px;
        align-items: center;
        text-align: center;
    }

    .content h3 {
        font-size: 1.5rem;
    }

    .content p,
    .content ul {
        font-size: 0.9rem;
        text-align: left;
    }

    .grid {
        padding: 20px;
        gap: 20px;
    }

    .desc {
        font-size: 1.2rem;
    }
}

/* Mobile landscape */
@media (max-width: 768px) {
    .capsule {
        border-radius: 20px;
        padding: 20px;
    }

    .content h3 {
        font-size: 0.9rem;
    }

    .content p,
    .content ul li {
        font-size: 0.85rem;
    }

    .step {
        padding: 20px 15px;
    }

    .title {
        font-size: 1.4rem;
    }

    .desc {
        font-size: 1rem;
    }

    .assure {
        margin: 0 20px;
        padding: 20px;
    }
}

/* Small mobiles */
@media (max-width: 480px) {
    .capsules {
        gap: 30px;
        padding: 40px 10px;
    }

    .capsule {
        padding: 15px;
    }

    .icon svg {
        width: 80px;
        height: 80px;
    }

    .content h3 {
        font-size: 1.1rem;
    }

    .content p,
    .content ul {
        font-size: 0.8rem;
    }

    .grid {
        padding: 15px;
        gap: 15px;
    }

    .step {
        height: auto;
        max-width: 100%;
    }

    .title {
        font-size: 1.2rem;
    }

    .desc {
        font-size: 0.9rem;
    }

    .assure {
        margin: 0 10px;
        padding: 15px;
    }
}





.cta-section {
    position: relative;
    width: 100%;
    /* full width */
    max-width: 1700px;
    /* limit max width */
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin: 50px auto;
    border-radius: 20px;
    overflow: hidden;
    background: url('https://wallpapercave.com/uwp/uwp4865318.jpeg') center/cover no-repeat;
}

/* Overlay */
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.572);
    filter: blur(10px);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding: 0 20px;
    text-align: center;
    /* ✅ ensures title & subtitle center */
    margin: 0 auto;
}

.cta-title {
    text-shadow: var(--text-dark) 3px 5px 3px;
    font-weight: 900;
    font-size: 3.5rem;
    margin-right: 20px;
    margin: 0 auto 20px auto;
    /* top 0, bottom 120px */
    white-space: nowrap;
    /* ek hi line me rahe */
    display: block;
    /* ✅ block rakho for centering */
}

.cta-title1 {
    font-weight: 900;
    font-size: 3.5rem;
    margin-right: 20px;
    padding-right: 20px;
    margin: 0 auto 20px auto;
    /* top 0, bottom 120px */
    white-space: nowrap;
    /* ek hi line me rahe */
    display: block;
    margin-top: 20px;
    color: var(--accent1);
    text-shadow: white 3px 5px 3px;

    /* ✅ block rakho for centering */
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 240px;
}

.cta-btn {
    width: 500px;
    margin-top: 30px;
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    /* semi-transparent border */
    background: rgba(255, 255, 255, 0.1);
    /* light transparent bg */
    backdrop-filter: blur(10px);
    /* glass blur effect */
    -webkit-backdrop-filter: blur(10px);
    color: white;
    /* initial text color */
    font-weight: bold;
    font-size: 30px;
    text-decoration: none;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Hover effect - text pops, glow + glass effect */
.cta-btn:hover {
    color: #ff6f61;
    /* text highlight/pop */
    background: rgba(255, 255, 255, 0.2);
    /* slightly brighter glass */
    box-shadow: 0 8px 40px rgba(255, 111, 97, 0.5);
    /* glow effect */
    transform: scale(1.05);
    /* subtle pop */
}



/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* Tablets */
@media (max-width: 992px) {
    .cta-section {
        height: 350px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cta-section {
        height: 300px;
    }

    .cta-title {
        font-size: 1.7rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
    }

    .cta-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .cta-section {
        height: 250px;
    }

    .cta-title {
        font-size: 1.4rem;
    }

    .cta-subtitle {
        font-size: 0.9rem;
    }

    .cta-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

/* General Styles */
.about-database-services {
    padding: 60px 20px;
    color: var(--text-light);
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.about-database-services .container {
    max-width: 1700px;
    margin: 0 auto;
}

/* Typing Effect */
.typing-title {
    font-size: 6.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    min-height: 50px;
    display: inline-block;
    white-space: nowrap;
    border-right: 3px solid #0d47a1;
    overflow: hidden;
}

/* Intro Text */
.intro-text {
    font-size: 1.9rem;
    line-height: 1.8;
    margin-bottom: 50px;
    color: var(--card-bg);
}

/* Headings */
h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--text-light);
}

h3 {
    font-size: 1.3rem;
    margin: 20px 0 10px;
    color: var(--text-light);
}

ul {
    list-style-type: disc;
    margin: 10px 0 20px 20px;
    text-align: left;
}

li {
    margin: 8px 0;
    line-height: 2.1;
    font-size: 2.5rem;
    list-style: none;
}

/* Fade-in animation */
.fade-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .typing-title {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .intro-text {
        font-size: 0.95rem;
    }
} /* Founder Section Edge-to-Edge */
  .founder-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 50px 20px;
    background: linear-gradient(135deg, #ff0000, #000000); /* Red to Black */
    color: #fff;
    font-family: Arial, sans-serif;
  }

  .founder-image {
    flex: 1 1 250px;
    text-align: center;
    padding: 10px;
  }

  .founder-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    border: 3px solid rgba(255,255,255,0.3);
  }

  .founder-details {
    flex: 2 1 400px;
    padding: 10px 20px;
  }

  .founder-details h2 {
    margin: 0 0 10px 0;
    font-size: 2rem;
    color: #fff;
  }

  .founder-details h4 {
    margin: 0 0 15px 0;
    color: #ffdddd;
    font-weight: 400;
  }

  .founder-details p {
    margin: 0;
    color: #eee;
    line-height: 1.6;
  }

  /* Responsive */
  @media(max-width: 768px){
    .founder-section {
      flex-direction: column;
      text-align: center;
      padding: 30px 10px;
    }
    .founder-details {
      padding: 15px 0;
    }
  }