* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #fff;
    background-image: 
        linear-gradient(#e5e5e5 1px, transparent 1px),
        linear-gradient(90deg, #e5e5e5 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

/* ===== NAVBAR ===== */
nav {
    background-color: #fff;
    background-image: 
        linear-gradient(#e5e5e5 1px, transparent 1px),
        linear-gradient(90deg, #e5e5e5 1px, transparent 1px);
    background-size: 40px 40px;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #000 !important;
}

/* ===== GET IN TOUCH BUTTON ===== */
.get-in-touch {
    color: #fff;
    background-color: #333;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.3;
    border: 1px solid yellowgreen;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 8px 15px;
    text-decoration: none;
}

.get-in-touch:hover {
    background-color: yellowgreen;
    color: #333;
    border-color: #333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .get-in-touch {
        display: none;
    }
}

/* ===== MEGA MENU ===== */
.navbar .mega-dropdown {
    position: static;
}

.navbar .mega-dropdown .mega-menu {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    top: 70%;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem !important;
    background: white;
}

@media (min-width: 992px) {
    .navbar .mega-dropdown .mega-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .navbar .mega-dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    
    .mega-menu [class*="col-"]:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 1px;
        background: linear-gradient(to bottom, transparent 0%, #e5e5e5 20%, #e5e5e5 80%, transparent 100%);
    }
}

.mega-menu h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding-bottom: 10px;
    position: relative;
}

.mega-menu h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #333;
}

.mega-menu .dropdown-item {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    background: transparent;
    white-space: normal;
    border-radius: 4px;
}

.mega-menu .dropdown-item:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.02);
    padding-left: 5px;
}

.mega-menu .row {
    margin: 0;
    position: relative;
}

.mega-menu [class*="col-"] {
    padding: 0 20px;
    position: relative;
}

@media (max-width: 991px) {
    .navbar .mega-dropdown .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 1rem !important;
        box-shadow: none;
        border: none;
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
        background: #f9f9f9;
        transition: all 0.3s ease;
    }
    
    .navbar .mega-dropdown .dropdown-menu.show {
        display: block !important;
    }
    
    .mega-menu .row {
        flex-direction: column;
    }
    
    .mega-menu [class*="col-"] {
        width: 100%;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }
    
    .mega-menu [class*="col-"]:not(:last-child) {
        border-bottom: 1px solid #e5e5e5;
        padding-bottom: 1.5rem;
    }
    
    .mega-menu [class*="col-"]:last-child {
        margin-bottom: 0;
    }
    
    .navbar .mega-dropdown .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .navbar .mega-dropdown .dropdown-toggle[aria-expanded="true"] {
        color: #000 !important;
    }
    
    .mega-menu .dropdown-item {
        padding: 10px 0;
        display: block;
        width: 100%;
    }
    
    .navbar .container {
        position: relative;
        z-index: 1000;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #333;
}

.hero-section h1 {
    font-size: 70px !important;
    font-weight: 600;
    text-transform: uppercase;
}

.not-word {
    color: yellowgreen;
    text-decoration: line-through;
}

/* ===== RATING SECTION ===== */
.rating-section {
    position: relative;
    min-height: 200px;
}

.rating-card,
.specialists-card {
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: #f8f9fa !important;
    border: 1px solid #333;
}

.rating-card:hover,
.specialists-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.specialists-card .fw-bold {
    color: #333;
    line-height: 1;
}

/* ===== TALK BUBBLE ===== */
.talk-bubble {
    position: absolute;
    top: -70px;
    right: 6%;
    color: #fff;
    width: 110px;
    height: 110px;
    flex-direction: column;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.3;
    border: 2px solid yellowgreen;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 20px;    
    text-decoration: none;
}

.talk-bubble:hover {
    transform: scale(1.05) rotate(5deg);
    background-color: yellowgreen;
    color: #333;
    border-color: #333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.talk-bubble span {
    display: block;
}

.talk-bubble span:first-child {
    margin-bottom: 2px;
}

/* ===== CREATIVE GRID SECTION ===== */
.creative-grid-section {
    position: relative;
    margin-top: 100px;    
}

.creative-left-content {
    padding-right: 30px;
}

.creative-title {
    font-size: 60px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #333;
}

.creative-title .title-line {
    display: block;
}

.creative-title .with-fun {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.fun-highlight {
    color: yellowgreen;
    font-size: 80px;
    font-weight: 700;
    display: inline-block;
    line-height: 0.8;
    position: relative;
}

.fun-highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: yellowgreen;
    opacity: 0.3;
    z-index: -1;
}

.explore-circle {
    width: 120px;
    height: 120px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.3;
    border: 2px solid yellowgreen;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 20px;
}

.explore-circle:hover {
    transform: scale(1.05) rotate(5deg);
    background-color: yellowgreen;
    color: #333;
    border-color: #333;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    background-color: #f8f9fa;
    cursor: pointer;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(0.3);
}

.grid-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.grid-item:hover .grid-overlay {
    transform: translateY(0);
}

.grid-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: yellowgreen;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.grid-overlay h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: white;
}

/* Grid Item Positions */
.grid-item-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 4;
}

.grid-item-2 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.grid-item-3 {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
}

.grid-item-4 {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
}

.grid-item-5 {
    grid-column: 4 / 5;
    grid-row: 3 / 4;
}

/* Utility class replacement */
.display-1 {
    font-size: 60px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    line-height: 1.1;
    color: #333;
}

.phone-logo{
    display: none;
}

.desktop-logo{
    display: block;
}


.our-services{
    margin-top: 50px;
}

.our-services .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.our-services .svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.our-services .card-title a {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.our-services .card-title a:hover {
    color: yellowgreen;
}

.our-services .card-text {
    color: #333333;
    line-height: 1.6;
    font-family: 'Space Grotesk', sans-serif;
}

.our-services .row {
    margin-bottom: 2rem;
}

.our-services .row:last-child {
    margin-bottom: 0;
}

.down-arrow {
    position: absolute;
    margin-left: 200px;
    margin-top: -70px;
}

.down-arrow-sec {
    position: absolute;
    z-index: 9999;
    right: 190px;
}

.down-arrow-third{
    position: absolute;
    right: 190px;
    margin-top: -255px;
}

.hero-small{
    margin-top: 48px;
}

.portfolio .hover-overlay {
    transition: opacity 0.3s ease;
}

.portfolio .position-relative:hover .hover-overlay {
    opacity: 1 !important;
}

.portfolio .nav-link {
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio .nav-link:hover,
.portfolio .nav-link.active {
    color: #9ACD32;
}

.portfolio .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.portfolio .badge.bg-primary {
    background-color: #9ACD32 !important;
}

.portfolio .btn-primary {
    background-color: #9ACD32;
    border-color: #9ACD32;
}

.portfolio .btn-primary:hover {
    background-color: #7CB342;
    border-color: #7CB342;
}

.portfolio .btn-outline-primary {
    color: #9ACD32;
    border-color: #9ACD32;
}

.portfolio .btn-outline-primary:hover {
    background-color: #9ACD32;
    border-color: #9ACD32;
}

.contact-left{
    padding: 1rem;
}

.contact-right{
    padding: 1rem;
}

.view-all-project-btn{
    color: #fff;
    background-color: #333;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.3;
    border: 1px solid yellowgreen;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 8px 15px;
    text-decoration: none;
}

.view-all-project-btn:hover{
    background-color: yellowgreen;
    color: #333;
    border-color: #333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.inquiry-btn{
    color: #fff;
    background-color: #333;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.3;
    border: 1px solid yellowgreen;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 8px 15px;
    text-decoration: none;
}

.inquiry-btn:hover{
    background-color: yellowgreen;
    color: #333;
    border-color: #333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.privacy-section h1{
font-weight:700;
}

.privacy-section h3{
margin-top:30px;
font-weight:600;
}

.privacy-section p{
color:#555;
line-height:1.7;
}

.privacy-section ul{
padding-left:20px;
}

.privacy-section li{
margin-bottom:6px;
}

.terms-section h1{
font-weight:700;
}

.terms-section h3{
margin-top:30px;
font-weight:600;
}

.terms-section p{
color:#555;
line-height:1.7;
}

.terms-section ul{
padding-left:20px;
}

.terms-section li{
margin-bottom:6px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {    
    .creative-left-content {
        margin-top: 50px;
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .creative-title {
        font-size: 48px;
        margin-bottom: 0;
    }
    
    .fun-highlight {
        font-size: 60px;
    }
    
    .explore-circle {
        margin: 20px auto 0;
    }
    
    .grid-item-1 {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
    
    .grid-item-2 {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }
    
    .grid-item-3 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    
    .grid-item-4 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
    
    .grid-item-5 {
        grid-column: 3 / 4;
        grid-row: 2 / 4;
    }
    
    .phone-logo{
        display: block;
    }

    .desktop-logo{
        display: none;
    }

    .hero-section p {
        text-align: center;
    }

    .down-arrow{
        display: none;
    }

    .down-arrow-sec{
        display: none;
    }

    .creative-title .with-fun{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .our-services{
        margin-top: 50px;
    }

    .creative-mobile{
        display: flex;
        flex-direction: column-reverse;
    }

    .creative-grid-section{
        margin-top: 10px;
    }

    .hero-small{
        margin-top: 5px;
    }

    .down-arrow-third{
        display: none;
    }

    .contact-svg{
        display: none;
    }

    .protfolio-small-head{
        text-align: center;
    }

    .our-services-small{
        text-align: center;
    }

    .contact-head{
        text-align: center;
    }

    .contact-left{
        padding: 2rem !important;
    }

    .contact-right{
        padding: 2rem !important;
    }

    .wp-success > svg{
        height: 100mm !important;
        margin-top: 0 !important;
    }
}

@media (max-width: 767px) {
    .rating-section {
        margin-bottom: 50px;
    }
    
    .talk-bubble {
        top: -60px;
        right: 5%;
        width: 70px;
        height: 70px;
        font-size: 0.9rem;
    }
    
    .rating-card,
    .specialists-card {
        padding: 1.5rem !important;
    }
    
    .specialists-card .display-6 {
        font-size: 2rem;
    }
    
    .creative-title {
        font-size: 36px;
        margin-bottom: 0;
    }
    
    .fun-highlight {
        font-size: 60px;
    }
    
    .explore-circle {
        width: 120px;
        height: 120px;
        font-size: 16px;
    }
    
    .grid-item-1 {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    
    .grid-item-2 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .grid-item-3 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    
    .grid-item-4 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    
    .grid-item-5 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
    
    .grid-item:last-child {
        grid-column: 1 / 3;
        grid-row: 4 / 5;
        opacity: 0.5;
    }
    .hero-section h1 {
        font-size: 35px !important;
        font-weight: 600;
        text-align: center;
        text-transform: uppercase;
    }

    .display-1 {
        font-size: 35px !important;
        text-align: center;
    }

    .phone-logo{
        display: block;
    }

    .desktop-logo{
        display: none;
    }

    .hero-section p {
        text-align: center;
    }

    .down-arrow{
        display: none;
    }

    .down-arrow-sec{
        display: none;
    }

    .creative-title .with-fun{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .our-services{
        margin-top: 50px;
    }

    .creative-grid-section{
        margin-top: 10px;
    }

    .hero-small{
        margin-top: 5px;
    }

    .down-arrow-third{
        display: none;
    }

    .contact-svg{
        display: none;
    }

    .protfolio-small-head{
        text-align: center;
    }

    .our-services-small{
        text-align: center;
    }

    .contact-head{
        text-align: center;
    }

    .contact-left{
        padding: 2rem !important;
    }

    .contact-right{
        padding: 2rem !important;
    }

    .wp-success > svg{
        height: 100mm !important;
        margin-top: 0 !important;
    }

}

@media (max-width: 575px) {
    .talk-bubble {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
    }
    
    .rating-badge {
        display: flex;
        justify-content: center;
        margin-top: 8px;
    }
    
    .rating-card p {
        text-align: center !important;
    }
    
    .creative-title {
        font-size: 28px;        
        margin-bottom: 0;
    }
    
    .fun-highlight {
        font-size: 60px;
    }
    
    .explore-circle {
        width: 100px;
        height: 100px;
        font-size: 14px;
    }
    
    .grid-overlay {
        padding: 15px 10px 10px;
    }
    
    .grid-overlay h3 {
        font-size: 14px;
    }
    
    .grid-tag {
        font-size: 10px;
    }

    .hero-section h1 {
        font-size: 35px !important;
        font-weight: 600;
        text-align: center;
        text-transform: uppercase;
    }

    .display-1 {
        font-size: 35px !important;
        text-align: center;
    }

    .phone-logo{
        display: block;
    }

    .desktop-logo{
        display: none;
    }

    .hero-section p {
        text-align: center;
    }

    .down-arrow{
        display: none;
    }

    .down-arrow-sec{
        display: none;
    }

    .contact-svg{
        display: none;
    }

    .creative-title .with-fun{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .our-services{
        margin-top: 50px;
    }

    .creative-grid-section{
        margin-top: 10px;
    }

    .hero-small{
        margin-top: 5px;
    }

    .down-arrow-third{
        display: none;
    }

    .protfolio-small-head{
        text-align: center;
    }

    .our-services-small{
        text-align: center;
    }

    .contact-head{
        text-align: center;
    }

    .contact-left{
        padding: 2rem !important;
    }

    .contact-right{
        padding: 2rem !important;
    }

    .wp-success > svg{
        height: 100mm !important;
        margin-top: 0 !important;
    }

}

/* Responsive adjustments */
@media (max-width: 768px) {
    .our-services .card {
        margin-bottom: 20px;
    }
    
    .our-services .row {
        margin-bottom: 0;
    }
}