/* Reset margins/padding for body */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
html {
    scroll-behavior: smooth;
}

/* Header styles */
header {
    background-color: #000000;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Header styling */
header {
    background-color: #000000;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Logo styles */
.logo {
    font-size: 24px;
    font-weight: bold;
}
/* Logo and title alignment */
.logo {
    display: flex;
    align-items: center;
    gap: 12px; /* space between logo and title */
}

/* Logo image style */
.logo img {
    width: 100px;  /* adjust as needed */
    height: 80px;
    
}

/* Title text next to the logo */
.logo span {
    font-size: 24px;
    font-weight: bold;
}






/* Default nav links */
nav a {
    color: white;
    margin: 0 10px;
    padding: 8px 14px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover effect - blue button look */
nav a:hover {
    background-color:  #62afc9;  /* Blue background on hover */
    color: white;                /* Keep text white */
}






main {
    padding: 5px;
    background-color: #000000;;
}

/* Header Layout */
header {
    background-color: #000000;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}









.banner-content {
    max-width: 600px;  /* Controls how wide the text area is */
    text-align: left;
    font-size: 18px;   /* Adjust the font size as needed */
    line-height: 1.6;  /* Increases spacing between lines for readability */
}



.company-description {
    background-color: #010101;
    color: white;
    padding: 20px 10px;
    text-align: center;   /* Centers all text inside */
}

.company-description h2 {
    font-size: 28px;
    color: #00bfff;
    margin-bottom: 20px;
}

.company-description p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}


footer {
    background-color: #3f4144;
    color: white;
    text-align: center;
    padding: 5px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Add to style.css */
/* Main Banner Container */
.home-banner {
    display: flex;
    width: 99%;
    height: 570px;
    padding: 0px 5px 5px 5px;
}


/* Left Side - Black Background */

/* Right Side - Background Image */
.banner-right {
    background-image: url("C:/wamp64/www/sgs-cloud-tech/images/1440x600px_hero_banner_adobestock_597219319.webp");
    background-size: cover;
    background-position: center;
    width: 70%;  /* Right side occupies 70% */
    height: 100%;
   
    z-index: 1;
}
.banner-right2 {
    background-image: url("C:/wamp64/www/sgs-cloud-tech/images/employee-management-scaled.jpg");
    background-size: cover;
    background-position: center;
    width: 70%;  /* Right side occupies 70% */
    height: 100%;
   
    z-index: 1;
}

/* Banner Card */


footer {
    background-color: #3f4144;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
    position: static;  /* ensures the footer follows normal flow */
    bottom: auto;
}

.banner-left {
    background-color: #000;
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 20px;
    padding-top: 10px;  /* reduced from 20px to 10px */
}

.banner-title {
    color: white;
    font-size: 22px;
    font-style: italic;
    white-space: normal;
    margin-top: 15px;     /* This moves the heading down */
    margin-bottom: 20px;  /* Space between heading and card */
    padding-left: 15px;
    
}


.banner-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0 0 0 10px;
    border-radius: 10px;
    max-width: 320px;
    color: white;
    text-align: left;
    font-size: 15px;
    line-height: 1.6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Start position - above the visible area */
.banner-card {
    opacity: 0;
    transform: translateY(-100px);
    animation: slideDown 4s ease forwards;
}

/* Slide-down animation */
@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-section {
    background-color: #ababab;
    padding: 10px 30px;
    margin-top: 0px;
    color: white;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #000000;
}

.section-titles2 {
    font-size: 22px;
    color: #00bfff;
}

.section-title2 {
    font-size: 22px;
    color: #00bfff;
}
/* Force all cards to stay in a single line */
.card-container {
    display: flex;
    flex-wrap: nowrap;   /* Prevent wrapping */
    justify-content: space-around; /* Equal spacing between cards */
    gap: 10px;
    overflow-x: auto;    /* Allows horizontal scroll on small screens */
    padding-bottom: 20px;
}




.about-card {
    background: rgb(0, 0, 0);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0px 0px 0px 0px;
    border-radius: 10px;
    width: 350px;
    height: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    opacity: 1;             
    transform: scale(1);
    transition: all 0.450s ease;
}




/* Zoom out effect */
.about-card.zoom-effect {
    transform: scale(0.8);  /* Shrinks the card slightly */
}

/* Reset back to normal size */
.about-card.zoom-reset {
    transform: scale(1);
}



/* Card titles */
.about-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #00bfff;
}

/* Card text */
.about-card p {
    font-size: 15px;
    line-height: 1.6;
    padding-left: 5px;
    padding-right: 5px;
}

.about-card img {
    width: 100%; /* Image takes the full card width */
    height: 120;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Optional: adjust text spacing if needed */
.about-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #00bfff;
}












.services-section {
    background-color: #ababab;
    padding: 20px 30px;
    color: white;
    text-align: center;
}



/* Each card takes up 30% of the container (or fixed width) */
/* Service Card */


.service-card {
    background: rgba(0, 0, 0);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0px;
    gap: 5px;
    border-radius: 10px;
    width: 340px;
    height : 550px;
    box-shadow: 0 4px 10px rgba(0, 0, 0);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* On hover: scale larger and add deeper shadow */
.service-card:hover {
    transform: scale(1.2);  /* Increase scale to 1.2 for a bigger "pop-out" effect */
    box-shadow: 0 12px 30px rgba(0, 0, 0);
     background: rgba(0, 0, 0);
}

/* Service Card Image */
.service-card img {
    width: 100%;                /* Image fills the card width */
    height: auto; 
    display: block;             /* Set a fixed height */
    object-fit: cover;          /* Image covers the area without distortion */
    border-radius: 8px;
    margin-bottom: 15px;
}



.card-container {
    display: flex;
    flex-wrap: wrap;        /* Allows wrapping to multiple rows */
    justify-content: center;
    gap: 64px;
}



/* Optional: Responsive tweak for small screens */
@media (max-width: 800px) {
    .service-card {
        width: 45%;  /* 2 cards per row on smaller screens */
    }
}

@media (max-width: 500px) {
    .service-card {
        width: 90%;  /* 1 card per row on mobile */
    }
}




/* Headings and paragraph styling stays the same */
.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #00bfff;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
}

.section-features {
     background-color: #ababab;
  
}
.section-titlefeatures2 {
     color: #000000;
  
}
.section-titlefeaturess {
     color: #000000;
     font-size: 30px;
}

.why-choose-us-section {
    background-color: #ababab;
    color: white;
    padding: 0px 30px;
}

.section-titlefeatures {
    text-align: center;
    color: #00bfff;
    margin-bottom: 40px;
    font-size: 32px;
}

.section-titlefeatures3 {
    text-align: center;
    color: #000000;
    margin-bottom: 40px;
    font-size: 32px;
}

.feature-row {

     display: flex;
    flex-direction: column;
    gap: 30px; /* Controls the space between rows (cards) */
    margin: 0;
    padding: 0;
}

/* Each horizontal card */
.feature-card {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.929);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 15px 25px 15px 20px;
    gap: 30px;
     opacity: 0;
    transform: translateX(150px);   /* Start further to the right */
    transition: all 5s ease;        /* Slow transition over 1 second */
}

.links{
 background: rgba(0, 0, 0, 0.929);
 color: #00bfff;
}
    





/* Start with cards off the screen to the right 
.feature-card {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s ease;
}
*/


/* When the page loads, this class will move them into place */
/* Final state when animated */
.feature-card.animate {
    opacity: 1;
    transform: translateX(0);       /* Move to original position */
}


/* Left-side image */
.feature-card img {
    width: 290px;         /* Reduce width */
    height: 250px;        /* Reduce height */
    /* Keep aspect ratio */
    border-radius: 39px;
    flex-shrink: 0;      /* Prevent the image from shrinking when screen is small */
}


/* Right-side content */
.feature-content h3 {
    color: #00bfff;
    margin-bottom: 10px;
    font-size: 20px;
}

.feature-content p {
    font-size: 15px;
    line-height: 1.6;
}




/*
.contact-section {
    background-image: url("C:/wamp64/www/sgs-cloud-tech/images/hand.jpg");  
    background-size: cover;                            
    background-position: center;                        
    background-repeat: no-repeat;                       
    color: white;
    padding: 50px 30px;
    text-align: center;
    position: relative;
}

*/

.contact-section {
    position: relative; /* Make it a positioning context */
    background-image: url("C:/wamp64/www/sgs-cloud-tech/images/hand.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 10px 30px;
    text-align: center;
}


.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

/* Contact Details 
.contact-info {
    max-width: 300px;
    text-align: left;
}
*/
.contact-info {
    position: absolute;
    bottom: 30px;
    right: 30px;
    text-align: left;
    max-width: 250px;
    z-index: 2;
}

/*
.contact-info h3 {
    color: #00bfff;
    margin-bottom: 15px;
}
    */

.contact-info h3 {
    color: #00bfff;
    margin-bottom: 10px;
}
.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Contact Form 
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    width: 100%;
}
*/
/* Form stays in normal flow */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: none;
    border-radius: 6px;
    background-color: #2c2c2c;
    color: white;
    font-size: 15px;
}

.contact-form button {
    background-color: #00bfff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0099cc;
}

.contact-form select {
    padding: 10px;
    border: none;
    border-radius: 6px;
    background-color: #2c2c2c;
    color: white;
    font-size: 15px;
}
/*
.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);  
    z-index: 1;
}
*/
.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1;
}
.contact-content, .section-title {
    position: relative;
    z-index: 2;
}













/* Contact info positioned bottom right */

/* Optional: Contact info heading */


/* Optional: Add an overlay for better text visibility */

