body {
    background-color: #fff;
    background-image: none;
    transition: background-color 0.5s ease;
    min-height: 100vh;
    margin: 0;
}

body.homeCard-active {
    background-color: #1e3c72;
    background-image: url('techbg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-blend-mode: overlay;
}

body.aboutCard-active {
    background-color: #2a5298;
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1920&auto=format&fit=crop');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-blend-mode: overlay;
}

body.servicesCard-active {
    background-color: #1e3c72;
    background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?q=80&w=1920&auto=format&fit=crop');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-blend-mode: overlay;
}

body.contactCard-active {
    background-color: #2a5298;
    background-image: url('https://images.unsplash.com/photo-1531297484009-6a64e8458fa8?q=80&w=1920&auto=format&fit=crop');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-blend-mode: overlay;
}

body.privacyCard-active {
    background-color: #2a5298;
    background-image: url('https://images.unsplash.com/photo-1531297484009-6a64e8458fa8?q=80&w=1920&auto=format&fit=crop');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-blend-mode: overlay;
}

.floating-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.main-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1001;
}

.main-button img#logoImage {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    animation: rotateLogo 10s linear infinite;
    z-index: 1002;
}

@keyframes rotateLogo {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.circle-ring {
    position: absolute;
    width: 68px;
    height: 68px;
    border: 2px solid #333;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1000;
}

.menu-items {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-container:hover .menu-items {
    opacity: 1;
    visibility: visible;
}

.menu-item {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1003;
}

.menu-item:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.menu-item img {
    width: 20px;
    height: 20px;
    z-index: 1004;
}

.content-card {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: none;
}

.content-card.active {
    opacity: 1;
}

.card-inner {
    max-width: 900px;
    margin: 0 auto;
    height: calc(100vh - 40px);
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    overflow: hidden;
    background: #fff;
}

.content-card.active .card-inner {
    transform: scale(1);
}

.card-img-top {
    height: 150px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.card-body {
    overflow-y: auto;
    height: calc(100% - 350px);
    padding: 20px;
}

.sub-card {
    margin: 20px 0;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: #f8f9fa;
    transition: transform 0.2s ease;
}

.sub-card:hover {
    transform: translateY(-2px);
}

/* New Material Design Sub-Card */
.material-sub-card {
    margin: 20px 0;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08); /* Material shadow */
    background: #fff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.material-sub-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.material-sub-card .card-header {
    background: #fff;
    border-bottom: none;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif; /* Material typography */
    font-weight: 500;
    font-size: 1.25rem;
    color: #212121; /* Material dark text */
}

.material-sub-card .card-header .material-icons {
    margin-right: 12px;
    color: #6200ea; /* Material purple accent */
    font-size: 24px;
}

.material-sub-card .card-body {
    padding: 16px 24px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #424242; /* Material secondary text */
    background: #fafafa; /* Light gray for contrast */
    border-radius: 0 0 8px 8px;
}

.item-1 { top: -40px; left: 30px; }
.item-2 { top: 10px; left: 60px; }
.item-3 { top: 60px; left: 30px; }
.item-4 { top: 10px; left: 0px; }

.popover {
    z-index: 1005;
    --bs-popover-bg: #333;
    --bs-popover-body-color: white;
    --bs-popover-border-color: #333;
}

#mainContent {
    opacity: 1;
    transition: opacity 0.5s ease;
}

#mainContent.hidden {
    opacity: 0;
}

#infoi {
width: 100%;
height: 100%;
position: relative;
top: 0;
left: 0;
}

#infoi1 {
width: 100%;
height: 100%;
position: absolute !important;
top: 0;
left: 0;
}

.play-regular {
font-family: "Play", sans-serif;
font-weight: 400;
font-style: normal;
}

.play-bold {
font-family: "Play", sans-serif;
font-weight: 700;
font-style: normal;
}

.major-mono-display-regular {
font-family: "Major Mono Display", monospace;
font-weight: 400;
font-style: normal;
}
.poppins-regular {
font-family: "Poppins", sans-serif;
font-weight: 400;
font-style: normal;
}
.poppins-bold {
font-family: "Poppins", sans-serif;
font-weight: 700;
font-style: normal;
}
.cantata-one-regular {
font-family: "Cantata One", serif;
font-weight: 400;
font-style: normal;
}

.sm-color-blue{
color:#160581;
}
.sm-color-cyan{
color:#60cbf8;
}

hr.zig, hr.zag {
border: none;
height: 30px;
margin: 0 50px;
}

hr.zig{
background: linear-gradient(-135deg, #FFF 20px, rgba(0, 0, 0, 0) 0) 0 5px, linear-gradient(135deg, #FFF 20px, rgba(0, 0, 0, 0) 0) 0 5px;
background-color: rgba(0, 0, 0, 0);
background-position: center bottom;
background-repeat: repeat-x;
background-size: 20px 40px;
z-index: 100;
position: relative;
}

hr.zag {
background: linear-gradient(-135deg, #333 20px, rgba(0, 0, 0, 0) 0) 0 5px, linear-gradient(135deg, #333 20px, #FFF 0) 0 5px;
background-color: rgba(0, 0, 0, 0);
background-position: center bottom;
background-repeat: repeat-x;
background-size: 20px 40px;
z-index: 50;
margin-top: -28px;
}

/* carousel */
.container-fluid, .carousel-wrapper {
    margin: 0;
    padding: 0;
}
.slick-slide img {
    width: 100px;
    height: 100px;
    /*object-fit: cover;*/
    transition: transform 0.3s ease;
}

/* Hover effect */
.slick-slide img:hover {
    transform: scale(1.1);
}

/* Remove spacing between slides */
.slick-slide {
    margin: 0;
}

.slick-list {
    overflow: hidden;
}
.slick-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.slick-track {
    display: flex;
}
.slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1;
    font-size: 0;
}
.slick-prev { left: 10px; }
.slick-next { right: 10px; }
.slick-prev:before, .slick-next:before {
    font-family: 'Material Icons';
    font-size: 24px;
    color: #000;
    opacity: 0.75;
}
.slick-prev:before { content: 'chevron_left'; }
.slick-next:before { content: 'chevron_right'; }
/* End of Carousel */
/*Footer styles*/
/* Footer Container */
.wow-footer {
height: 70px;
overflow: hidden;
background: linear-gradient(135deg, #1e1e2f 0%, #3a3a5a 50%, #5a5a8a 100%);
box-shadow: 0 0 15px rgba(90, 90, 138, 0.5);
border-top: 2px solid #5a5a8a;

}

/* Company Name Styling */
.company-name {
font-size: 16px;
font-weight: 600;
color: #e0e0ff;
text-shadow: 0 0 5px rgba(224, 224, 255, 0.7);
}
.company-name .material-icons {
font-size: 18px;
color: #ffd700;
vertical-align: middle;
animation: glow 1.5s infinite alternate;
}

/* Footer Links */
.footer-link {
font-size: 13px;
color: #d0d0ff;
text-decoration: none;
position: relative;
transition: color 0.3s ease;
}
.footer-link::after {
content: '';
position: absolute;
width: 0;
height: 1px;
bottom: -3px;
left: 0;
background: #ffd700;
transition: width 0.3s ease;
}
.footer-link:hover {
color: #ffd700;
}
.footer-link:hover::after {
width: 100%;
}

/* Social Icons */
.social-icon {
color: #d0d0ff; /* Light purple color for icons */
transition: all 0.3s ease; /* Smooth hover transition */
}

.social-icon i {
font-size: 18px; /* Compact size for footer */
}

.social-icon:hover {
color: #ffd700; /* Gold color on hover */
transform: translateY(-3px) scale(1.2); /* Slight lift and scale effect */
filter: drop-shadow(0 0 5px #ffd700); /* Glow effect on hover */
}

/* Copyright Text */
small {
font-size: 11px;
color: #b0b0ff;
}

/* Glowing Icon Animation */
@keyframes glow {
from { text-shadow: 0 0 5px #ffd700; }
to { text-shadow: 0 0 10px #ffd700, 0 0 15px #ffd700; }
}

/* Ensure Proper Spacing */
.row { margin: 0; }
.col-6, .col-12 { padding: 0 10px; }
/*End of Footer styles*/
/* Responsive Design */
@media (max-width: 768px) {
    .slick-slide img {
        width: 80px;
        height: 80px;
    }
    .slick-prev, .slick-next {
        font-size: 18px;
    }
    .company-name {
        font-size: 14px;
    }
    .footer-link {
        font-size: 12px;
    }
    small {
        font-size: 10px;
    }
}

/* Update existing WhatsApp button styles */
.whatsapp-btn-container {
    position: fixed;
    top: 20px;
    right: 70px;
    z-index: 1000;
    transition: all 0.3s ease;
}

#whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .whatsapp-btn-container {
        bottom: 20px;
        top: auto;
        left: 15px; /* Changed from right */
        right: auto;
    }
    
    #whatsapp-btn {
        padding: 8px 16px;
        font-size: 14px;
        border-radius: 30px;
    }
    
    #whatsapp-btn i {
        font-size: 18px !important;
        margin-right: 6px !important;
    }
}

@media (max-width: 576px) {
    .whatsapp-btn-container {
        bottom: 15px;
        left: 10px; /* Changed from right */
        right: auto;
    }
    
    #whatsapp-btn {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 25px;
    }
    
    #whatsapp-btn i {
        font-size: 16px !important;
        margin-right: 4px !important;
    }
    
    /* Add spacing for mobile devices */
    .mdc-button--outlined {
        margin-bottom: 60px !important;
    }
}

/* Landscape Orientation Fix */
@media (max-height: 500px) and (orientation: landscape) {
    .whatsapp-btn-container {
        bottom: 5px;
        left: 5px; /* Changed from right */
        right: auto;
    }
}
 /* About Me Section Specific Styles */
 #aboutCard .card-body {
    padding: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.about-me-container {
    padding: 30px;
    color: #333;
}

.about-me-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.8s ease-out forwards;
}

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

.about-me-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3c72;
    margin: 0;
}

.about-me-header .material-icons {
    font-size: 48px;
    color: #6200ea;
    margin-right: 20px;
}

.about-me-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about-me-bio {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.about-me-bio p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #424242;
}

.about-me-skills {
    flex: 1;
    min-width: 300px;
}

.skill-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease-out forwards;
}

.skill-card:nth-child(2) { animation-delay: 0.2s; }
.skill-card:nth-child(3) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.skill-card .material-icons {
    font-size: 30px;
    color: #2a5298;
    margin-right: 15px;
}

.skill-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3c72;
    margin: 0;
}

.skill-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 5px 0 0;
}

.mdc-button--outlined {
    --mdc-theme-primary: #00695c; /* Teal color */
    --mdc-theme-on-primary: #00695c;
    border-width: 2px;
    padding: 0 24px;
    position: relative; /* Required for the ripple effect */
    overflow: hidden; /* Ensures the ripple stays within the button */
}

.mdc-button {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 36px;
    position: relative; /* Ensure positioning context for the ripple */
    overflow: hidden; /* Contain the ripple effect */
}

/* Continuous ripple effect using ::before pseudo-element */
.mdc-button--outlined::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(0, 105, 92, 0.2); /* Teal with opacity */
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: continuous-ripple 2s infinite ease-out;
}

/* Keyframe animation for continuous ripple */
@keyframes continuous-ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}