body{
            margin: 0;
            font-family: 'Raleway', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:"wdth" 100;
  overflow-x: hidden;
  box-sizing: border-box;
  line-height: 1.6;
  color: rgb(6, 70, 130);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

        .header{
            display: flex;
            background: linear-gradient(180deg, rgba(6, 70, 130, 0.98) 0%, rgba(6, 70, 130, 0.93) 100%);
            justify-content: center;
            align-items: center;
            padding: 40px 40px ;
            transition: all 0.4s ease-in-out;
            flex-direction: column;
            gap: 20px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .header img {
            transition: all 0.4s ease-in-out;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
        }
        
        .header img:hover {
            transform: scale(1.1) rotate(-5deg);
            filter: drop-shadow(0 10px 25px rgba(14, 166, 204, 0.4));
        }
        
        .link a{
            color: white;
            text-decoration: none;
            padding: 10px 15px;
            border-radius: 90px;
            transition: all 0.3s ease-in-out;
            position: relative;
        }
        
        .link {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .link a:hover{
            background-color: rgba(125, 65, 214, 0.5);
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }
        .bt{
            color: rgb(255, 255, 255);
            background-color: rgb(14, 166, 204);
            border-radius: 90px;
            padding: 10px 15px;
            border: none;
            font-family: 'Raleway', 'Segoe UI', sans-serif;
            font-weight: 600;
            transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .bt:hover{
            background-color: rgba(99, 3, 134, 0.984);
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(99, 3, 134, 0.4);
        }
        .bt:active{
            transform: scale(0.98);
        }
        
        #signInBtn {
            transition: all 0.3s ease-in-out;
            animation: fadeIn 0.5s ease-out;
        }
        
        #logoutBtn {
            transition: all 0.3s ease-in-out;
            animation: fadeIn 0.5s ease-out;
        }
        
        #userProfile {
            animation: slideIn 0.5s ease-out;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-10px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .wa{
            display: flex;
            background-color:rgba(6, 70, 130, 0.93) ;
            color: rgb(216, 212, 219);
            justify-content: center;
            align-items: center;
            padding: 10px 50px ;
            font-family: 'Raleway', 'Segoe UI', sans-serif;
         border-radius: 0px 0px 70px 50px;
         transition: all 0.5s ease-in-out;
         animation: fadeInUp 0.8s ease-out;
         flex-direction: column;
         gap: 30px;
         text-align: center;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        .search{
            justify-content: center;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            width: 100%;
        }
  .search input{
    border: none;
    border-radius: 90px;
    width: 200px;
    padding: 9px 10px;
    outline: none;
    transform: none;
    box-sizing: border-box;
 }

 .cr{
    border-radius: 50px;
    width: 450px;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(14, 166, 204, 0.1) 0%, rgba(125, 65, 214, 0.05) 100%);
    padding: 30px;
    border: 2px solid rgba(14, 166, 204, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease-in-out;
 }
 
 .cr:hover {
    background: linear-gradient(135deg, rgba(14, 166, 204, 0.15) 0%, rgba(125, 65, 214, 0.1) 100%);
    border-color: rgba(14, 166, 204, 0.4);
    box-shadow: 0 15px 35px rgba(14, 166, 204, 0.2);
 }
 
 .cr img{
    width: 100% !important;
    max-width: 250px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(14, 166, 204, 0.3);
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
 }
 
 .cr:hover img {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 20px 40px rgba(14, 166, 204, 0.5);
 }
 
 .tr{
    width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(125, 65, 214, 0.05) 0%, rgba(14, 166, 204, 0.1) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(125, 65, 214, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease-in-out;
 }
 
 .tr:hover {
    background: linear-gradient(135deg, rgba(125, 65, 214, 0.1) 0%, rgba(14, 166, 204, 0.15) 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(125, 65, 214, 0.2);
 }
 .ho{
    padding: 45px 45px ;
    font-family: 'Raleway', 'Segoe UI', sans-serif;
    color: rgba(0, 0, 0, 0.721);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(14, 166, 204, 0.05) 0%, rgba(125, 65, 214, 0.05) 100%);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease-in-out;
    margin: 30px 20px;
 }
 
 .ho:hover {
    box-shadow: 0 10px 30px rgba(14, 166, 204, 0.15);
    transform: translateY(-3px);
 }
 
 .ho h1 {
    background: linear-gradient(135deg, rgb(14, 166, 204) 0%, rgb(99, 3, 134) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease-in-out;
 }
 
 .ho h1:hover {
    transform: scale(1.05);
 }
 
 /* ============ CATEGORIES SECTION ============ */
 .categories-section {
    display: flex;
    gap: 20px;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 250, 255, 0.97) 100%);
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    position: relative;
 }
 
 .categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(14, 166, 204, 0.03) 0%, transparent 70%);
    pointer-events: none;
 }
 
 .category-card {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 248, 255, 0.9) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(14, 166, 204, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
 }
 
 .category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease-in-out;
 }
 
 .category-card:hover::before {
    left: 100%;
 }
 
 .category-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(14, 166, 204, 0.3);
    border-color: rgba(14, 166, 204, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(225, 240, 255, 0.95) 100%);
 }
 
 .category-icon {
    font-size: 48px;
    transition: all 0.4s ease-in-out;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
 }
 
 .category-card:hover .category-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 8px 16px rgba(14, 166, 204, 0.4));
 }
 
 .category-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: rgb(6, 70, 130);
    margin: 0;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(135deg, rgb(14, 166, 204) 0%, rgb(99, 3, 134) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
 }
 
 .category-card:hover h3 {
    transform: scale(1.1);
 }
 
 .category-card p {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    transition: all 0.3s ease-in-out;
    line-height: 1.5;
 }
 
 .category-card:hover p {
    color: rgba(0, 0, 0, 0.8);
 }
 
 .category-link {
    text-decoration: none;
    width: 100%;
 }
 
 .category-card .bt {
    width: 100%;
    margin-top: auto;
    transition: all 0.3s ease-in-out;
 }
 
 .category-card:hover .bt {
    background: linear-gradient(135deg, rgb(14, 166, 204) 0%, rgb(99, 3, 134) 100%);
    transform: scale(1.05);
 }
 
 .search button{
    position: relative;
    left: auto;
 }
 hr{
    opacity: 50%;
 }
 .all-card{
    display: flex;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 250, 255, 0.95) 100%);
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
 }
 
 .all-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(14, 166, 204, 0.05) 0%, transparent 70%);
    pointer-events: none;
 }
 .card{
    width: 370px;
    border-radius: 20px;
    font-family: 'Raleway', 'Segoe UI', sans-serif;
    align-items: center;
    padding: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 245, 255, 0.8) 100%);
    justify-content: space-between;
    margin: 0PX;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(14, 166, 204, 0.1);
    overflow: hidden;
    position: relative;
 }
 .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease-in-out;
    pointer-events: none;
 }
 .card:hover::before {
    left: 100%;
 }
 .card:hover{
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 45px rgba(14, 166, 204, 0.25);
    border-color: rgba(14, 166, 204, 0.3);
 }
 .card img{
    border-radius: 20px;
    padding: 0px;
    transition: all 0.4s ease-in-out;
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(1) contrast(1.05);
 }
 .card:hover img{
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.15);
 }
 
 /* Image responsive */
 img {
    max-width: 100%;
    height: auto;
    display: block;
 }
.card-name{
    background-color: rgb(2, 92, 157);
    border-radius: 30PX 30PX 30PX 30px;
    align-items: center;
    justify-content: space-around;
    display: flex;
    color: rgb(232, 235, 238);
 font-family: 'Raleway', 'Segoe UI', sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(135deg, rgb(2, 92, 157) 0%, rgba(14, 166, 204, 0.3) 100%);
  box-shadow: 0 8px 20px rgba(2, 92, 157, 0.3);
  position: relative;
  overflow: hidden;
}

.card-name::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease-in-out;
}

.card-name:hover::after {
    left: 100%;
}

.card-name:hover {
    background: linear-gradient(135deg, rgba(99, 3, 134, 0.8), rgba(14, 166, 204, 0.5));
    box-shadow: 0 12px 30px rgba(14, 166, 204, 0.4);
    transform: translateY(-3px);
}

.card-name a{
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.card-name a:hover{
  background-color: blueviolet;
  border-radius: 140px;
  padding: 0 142PX 0 142PX ;
  transform: scale(1.1) rotate(5deg);
}

/* ============ Animations ============ */
@keyframes fadeInUp {
 from {
    opacity: 0;
    transform: translateY(30px);
 }
 to {
    opacity: 1;
    transform: translateY(0);
 }
}

@keyframes fadeInDown {
 from {
    opacity: 0;
    transform: translateY(-30px);
 }
 to {
    opacity: 1;
    transform: translateY(0);
 }
}

@keyframes slideInLeft {
 from {
    opacity: 0;
    transform: translateX(-50px);
 }
 to {
    opacity: 1;
    transform: translateX(0);
 }
}

@keyframes slideInRight {
 from {
    opacity: 0;
    transform: translateX(50px);
 }
 to {
    opacity: 1;
    transform: translateX(0);
 }
}

@keyframes pulse {
 0%, 100% {
    opacity: 1;
 }
 50% {
    opacity: 0.7;
 }
}

@keyframes glow {
 0%, 100% {
    box-shadow: 0 0 5px rgba(14, 166, 204, 0.3);
 }
 50% {
    box-shadow: 0 0 20px rgba(14, 166, 204, 0.6);
 }
}

@keyframes ripple-animation {
 to {
    transform: scale(4);
    opacity: 0;
 }
}

@keyframes slideUp {
 from {
    opacity: 0;
    transform: translateY(50px);
 }
 to {
    opacity: 1;
    transform: translateY(0);
 }
}

@keyframes bounce {
 0%, 100% {
    transform: translateY(0);
 }
 50% {
    transform: translateY(-10px);
 }
}

/* Link animations */
.link {
 animation: slideInRight 0.6s ease-out;
}

/* Cards appear with stagger effect */
.card {
 animation: slideUp 0.6s ease-out;
 animation-fill-mode: both;
 box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

.card:hover {
    animation: none !important;
}

/* Logo animation */
.header img {
 animation: fadeInDown 0.6s ease-out;
}

/* Home section animation */
.ho {
 animation: fadeInDown 0.8s ease-out;
}

/* Floating effect on hover */
@keyframes floatUp {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Contact button glow effect */
@keyframes contactGlow {
    0% {
        box-shadow: 0 0 5px rgba(14, 166, 204, 0.3);
    }
    50% {
        box-shadow: 0 8px 20px rgba(14, 166, 204, 0.5);
    }
    100% {
        box-shadow: 0 0 5px rgba(14, 166, 204, 0.3);
    }
}

.card:hover {
    animation: floatUp 0.6s ease-in-out !important;
}

/* Image shine effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.card img:hover {
    animation: shimmer 1s ease-in-out;
}

/* Home section animation */
.ho {
 animation: fadeInDown 0.8s ease-out;
}

/* Search input animation */
.search input {
 animation: fadeInUp 0.7s ease-out;
 animation-delay: 0.2s;
 animation-fill-mode: both;
}

/* Logo animation */
.header img {
 animation: fadeInDown 0.6s ease-out;
}

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

/* ===== MOBILE DEVICES (320px - 480px) ===== */
@media screen and (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    /* Header adjustments */
    .header {
        flex-direction: column;
        padding: 20px 15px;
        gap: 15px;
        border-radius: 0;
        justify-content: center;
    }
    
    .header img {
        width: 70px !important;
    }
    
    .link {
        display: flex;
        flex-direction: row;
        gap: 8px;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .link a {
        padding: 8px 10px;
        font-size: 12px;
        text-align: center;
    }
    
    /* Welcome section */
    .wa {
        flex-direction: column;
        padding: 15px 10px;
        gap: 20px;
        border-radius: 0;
        justify-content: center;
    }
    
    .tr, .cr {
        width: 100% !important;
        max-width: 300px;
    }
    
    .tr {
        text-align: center;
    }
    
    .tr h1 {
        font-size: 20px;
        margin: 10px 0;
    }
    
    .tr p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .cr img {
        width: 100% !important;
        max-width: 250px;
    }
    
    /* Search section */
    .search {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }
    
    .search input {
        width: 100% !important;
        transform: none !important;
        max-width: 280px;
        padding: 10px 12px;
    }
    
    .search button {
        position: relative !important;
        left: auto !important;
        width: 100%;
        max-width: 280px;
    }
    
    /* Home section */
    .ho {
        padding: 20px 15px;
        text-align: center;
        justify-content: center;
    }
    
    .ho h1 {
        font-size: 22px;
    }
    
    .ho .A {
        font-size: 12px;
    }
    
    /* Cards section */
    .all-card {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        justify-content: center;
    }
    
    .card {
        width: 100% !important;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .card img {
        width: 100% !important;
        height: auto;
    }
    
    .card-name img {
        width: 40px !important;
    }
    
    .bt {
        padding: 8px 12px;
        font-size: 12px;
        width: 100%;
        max-width: 200px;
    }
    
    /* Categories section - Mobile */
    .categories-section {
        flex-direction: column;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .category-card {
        min-width: 100%;
        max-width: 100%;
        padding: 20px 15px;
    }
    
    .category-icon {
        font-size: 40px;
    }
    
    .category-card h3 {
        font-size: 18px;
    }
    
    .category-card p {
        font-size: 12px;
    }
    
    hr {
        margin: 15px 0;
    }
}

/* ===== SMALL DEVICES (481px - 768px) ===== */
@media screen and (min-width: 481px) and (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .header {
        flex-direction: column;
        padding: 25px 20px;
        gap: 15px;
        border-radius: 0;
        justify-content: center;
    }
    
    .header img {
        width: 80px !important;
    }
    
    .link {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
        justify-content: center;
    }
    
    .link a {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    /* Welcome section */
    .wa {
        flex-direction: column;
        padding: 20px 25px;
        gap: 20px;
        border-radius: 0 0 40px 40px;
        justify-content: center;
    }
    
    .tr, .cr {
        width: 100% !important;
        max-width: 400px;
    }
    
    .tr h1 {
        font-size: 28px;
    }
    
    .tr p {
        font-size: 14px;
    }
    
    .cr img {
        width: 100% !important;
        max-width: 350px;
    }
    
    /* Search */
    .search {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .search input {
        width: 100% !important;
        transform: none !important;
        max-width: 300px;
    }
    
    .search button {
        position: relative !important;
        left: auto !important;
        width: 100%;
        max-width: 300px;
    }
    
    /* Home */
    .ho {
        padding: 30px 20px;
        text-align: center;
        justify-content: center;
    }
    
    .ho h1 {
        font-size: 26px;
    }
    
    /* Cards */
    .all-card {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        justify-content: center;
    }
    
    .card {
        width: 100% !important;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .card img {
        width: 100% !important;
    }
    
    /* Categories section - Small devices */
    .categories-section {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .category-card {
        min-width: 100%;
        max-width: 100%;
        padding: 25px 20px;
    }
    
    .category-icon {
        font-size: 44px;
    }
    
    .category-card h3 {
        font-size: 19px;
    }
}

/* ===== TABLETS (769px - 1024px) ===== */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .header {
        padding: 30px 30px;
        border-radius: 0;
        flex-direction: column;
        justify-content: center;
    }
    
    .header img {
        width: 90px !important;
    }
    
    .link {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .link a {
        padding: 9px 14px;
        font-size: 14px;
    }
    
    .wa {
        padding: 20px 40px;
        gap: 25px;
        border-radius: 0 0 50px 50px;
        justify-content: center;
    }
    
    .tr {
        width: 100% !important;
    }
    
    .cr {
        width: 100% !important;
        transform: none !important;
    }
    
    .tr h1 {
        font-size: 28px;
    }
    
    .search {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .search input {
        transform: none !important;
        width: 100%;
        max-width: 300px;
    }
    
    .search button {
        position: relative !important;
        left: auto !important;
        width: auto;
    }
    
    .all-card {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .card {
        width: calc(50% - 10px) !important;
        max-width: 350px;
    }
    
    .bt {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    /* Categories section - Tablets */
    .categories-section {
        gap: 20px;
        padding: 35px 30px;
    }
    
    .category-card {
        min-width: 250px;
        max-width: none;
        padding: 25px 20px;
        flex: 0 1 calc(50% - 10px);
    }
    
    .category-icon {
        font-size: 46px;
    }
}

/* ===== LARGE SCREENS (1025px and above) ===== */
@media screen and (min-width: 1025px) {
    .header {
        padding: 40px 40px;
        flex-direction: column;
        justify-content: center;
    }
    
    .link {
        justify-content: center;
    }
    
    .wa {
        padding: 10px 50px;
        justify-content: center;
    }
    
    .tr {
        width: 450px !important;
    }
    
    .cr {
        width: 450px !important;
    }
    
    .search input {
        transform: none !important;
        width: 200px;
    }
    
    .search button {
        position: relative !important;
        left: auto !important;
    }
    
    .all-card {
        gap: 25px;
        padding: 30px;
        justify-content: center;
    }
    
    .card {
        width: 370px !important;
    }
    
    .card:nth-child(3), .card:nth-child(4) {
        display: flex;
    }
    
    .ho {
        justify-content: center;
    }
    
    /* Categories section - Large screens */
    .categories-section {
        gap: 25px;
        padding: 40px 50px;
    }
    
    .category-card {
        min-width: 250px;
        max-width: 280px;
        flex: 1;
        padding: 30px 20px;
    }
    
    .category-icon {
        font-size: 50px;
    }
    
    .category-card h3 {
        font-size: 21px;
    }
}

/* ===== EXTRA LARGE SCREENS (1400px and above) ===== */
@media screen and (min-width: 1400px) {
    .header {
        padding: 40px 60px;
    }
    
    .wa {
        padding: 10px 80px;
    }
    
    .all-card {
        padding: 40px 60px;
    }
}

/* ===== LANDSCAPE MODE ADJUSTMENTS ===== */
@media (orientation: landscape) and (max-height: 600px) {
    .header {
        padding: 15px 20px;
    }
    
    .wa {
        padding: 10px 20px;
        gap: 10px;
    }
    
    .tr h1, .ho h1 {
        font-size: 18px;
    }
}

/* ===== TOUCH DEVICES OPTIMIZATION ===== */
@media (hover: none) and (pointer: coarse) {
    .link a, .bt, .card {
        padding: 12px;
    }
    
    .bt {
        min-height: 44px;
    }
    
    .search input {
        min-height: 44px;
    }
}

/* ============ FOOTER STYLING ============ */
.footer {
    background: linear-gradient(180deg, rgba(6, 70, 130, 0.97) 0%, rgba(6, 70, 130, 0.93) 100%);
    color: rgb(216, 212, 219);
    padding: 50px 40px 30px;
    font-family: 'Raleway', 'Segoe UI', sans-serif;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.15);
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    animation: fadeInUp 1s ease-out;
}

.footer-section h3 {
    color: rgb(14, 166, 204);
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Raleway', 'Segoe UI', sans-serif;
    transition: all 0.3s ease-in-out;
}

.footer-section h3:hover {
    transform: scale(1.1);
    color: rgba(125, 65, 214, 0.8);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin: 8px 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: rgb(216, 212, 219);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: rgb(14, 166, 204);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgb(6, 70, 130) 0%, rgb(14, 166, 204) 100%);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    border: 2px solid rgb(14, 166, 204);
    border-left: 4px solid rgb(99, 3, 134);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(14, 166, 204, 0.2);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.social-links a span:first-child {
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-links a span:last-child {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, rgb(99, 3, 134) 0%, rgb(6, 70, 130) 100%);
    border-color: rgb(99, 3, 134);
    border-left-color: rgb(14, 166, 204);
    color: white;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(14, 166, 204, 0.4);
}

.social-links a:hover span:first-child {
    transform: scale(1.3) rotate(8deg);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: rgb(216, 212, 219);
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
    animation: fadeInUp 1.2s ease-out;
}

/* ============ CONTACT BUTTON HOVER EFFECTS ============ */
.footer-section a[href^="mailto:"],
.footer-section a[href^="tel:"] {
    position: relative;
    overflow: hidden;
}

.footer-section a[href^="mailto:"]:hover,
.footer-section a[href^="tel:"]:hover {
    background: linear-gradient(135deg, rgba(14, 166, 204, 0.2) 0%, rgba(99, 3, 134, 0.1) 100%) !important;
    border-left-color: rgb(99, 3, 134) !important;
    box-shadow: 0 5px 15px rgba(14, 166, 204, 0.2) !important;
    transform: translateX(5px) !important;
}

.footer-section a[href^="mailto:"] span,
.footer-section a[href^="tel:"] span {
    transition: all 0.3s ease;
}

.footer-section a[href^="mailto:"]:hover span:first-child,
.footer-section a[href^="tel:"]:hover span:first-child {
    transform: scale(1.2) rotate(10deg);
}

/* ============ RESPONSIVE FOOTER ============ */
@media screen and (max-width: 768px) {
    .footer {
        padding: 30px 20px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-section {
        min-width: 150px;
    }
    
    .footer-section h3 {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 20px 15px;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    .footer-section {
        min-width: 100%;
    }
}

 