*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/*  */



.hero-section-gcp {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-section-gcp img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-section-gcp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-contentg {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-contentg h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
}

.hero-contentg p {
    font-size: 1.5rem;
    animation: fadeIn 2s ease-in-out;
    animation-delay: 1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-contentg h1 {
        font-size: 2rem;
    }

    .hero-contentg p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-contentg h1 {
        font-size: 1.5rem;
    }

    .hero-contentg p {
        font-size: 0.875rem;
    }
}









/* sec2 */
.containerg2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.contentg2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* margin: 20px 0; */
}
.contentg2 .text-sectiong2, .contentg2 .image-sectiong2 {
    flex: 1;
    min-width: 300px;
    margin: 10px;
}
.text-sectiong2 h2 {
    font-size: 2em;
    color: #333;
}
.text-sectiong2 p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #666;
}
.image-sectiong2 img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: slideInLeftg2 2s ease-in-out;
}
.ctag2 {
    text-align: center;
    margin: 10px ;
}
.ctag2 a {
    display: inline-block;
    padding: 15px 30px;
    background-color: #34A853;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}
.ctag2 a:hover {
    background-color: #2c8c47;
}
.fade-ing2 {
    animation: fadeIng2 2s ease-in-out;
}
@keyframes fadeIng2 {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeftg2 {
    0% { opacity: 0.8; transform: translateX(-100%); }
    100% { opacity: 1; transform: translateX(0); }
}
@media (max-width: 768px) {
    .text-sectiong2 h2 {
        font-size: 1.5em;
    }
    .text-sectiong2 p {
        font-size: 1em;
    }
    .ctag2 a {
        font-size: 1em;
        padding: 10px 20px;
    }
}

/* sec3 */
.containerg {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 20px;
}
.headerg {
    text-align: center;
    padding: 50px 20px;
    background-color: #4285F4;
    color: white;
    position: relative;
}
.headerg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.headerg h1 {
    font-size: 2.5em;
    margin: 0;
    z-index: 10;
    position: relative;
    opacity: 0;
    animation: fadeIng 2s forwards;
}
.headerg p {
    font-size: 1.2em;
    margin: 10px 0 0;
    z-index: 10;
    position: relative;
    opacity: 0;
    animation: fadeIn 2s forwards;
    animation-delay: 0.5s;
}
.featuresg {
    display: flex;
    justify-content: space-around;
    margin:  0;
    background-color: #e5f3ff;
}
.featureg {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* margin: 20px; */
    padding: 20px;
    text-align: center;
    width: 300px;
    transition: transform 0.3s;
    opacity: 0;
    animation: slideIng 1s forwards;
}
.featureg:hover {
    transform: translateY(-10px);
}
.featureg img {
    margin-bottom: 10px;
}
.featureg h3 {
    font-size: 1.5em;
    margin: 10px 0;
}
.featureg p {
    font-size: 1em;
    color: #666;
}
.contactg {
    text-align: center;
    background-color: #e5f3ff;
    /* margin: 10px 0; */
    padding: 10px;
}
.contactg a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4285F4;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    transition: background-color 0.3s;
}
.contactg a:hover {
    background-color: #357ae8;
}
@keyframes fadeIng {
    to {
        opacity: 1;
    }
}
@keyframes slideIng {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@media (max-width: 768px) {
    .featuresg {
        flex-direction: column;
        align-items: center;
    }
    .featureg {
        width: 90%;
    }
}
/* sider */
.sliderg {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}
.slidesg {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slideg {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background-color: #e5f3ff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}
.slideg img {
    width: 50%;
    border-radius: 10px;
    margin-right: 20px;
}
.slide-contentg {
    /* background-color: #2c3e50; */
    width: 50%;
}
.slide-contentg span{
    font-weight: 500;
    color: #084c7f;
}
.slideg h2 {
    font-size: 24px;
    margin: 20px 0 10px;
}
.slideg p {
    font-size: 16px;
    line-height: 1.5;
}
.slideg a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #4285f4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    animation: pulses 2s infinite;
}
.slideg a:hover {
    background-color: #357ae8;
    transform: scale(1.05);
}
.navigationg {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.navigationg i {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}
.navigationg i:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
.contentsg {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 1200px;
    animation: fadeIns 2s ease-in-out;
}
.contentsg p {
    font-size: 18px;
    line-height: 1.6;
    margin: 10px 0;
    color: #333;
    animation: slideIns 1s ease-in-out;
}
.contentsg a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #4285f4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    animation: bounceIns 1s ease-in-out, pulses 2s infinite;
}
.contentsg a:hover {
    background-color: #357ae8;
    color: #fff;
    transform: scale(1.05);
}
@keyframes fadeIns {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideIns {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes bounceIns {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}
@keyframes pulses {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
@media (max-width: 768px) {
    .slideg {
        flex-direction: column;
    }
    .slideg img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .slide-contentg {
        width: 100%;
    }
    .slideg h2 {
        font-size: 20px;
    }
    .slideg p {
        font-size: 14px;
    }
    .slideg a {
        padding: 8px 16px;
    }
    .contentsg p {
        font-size: 16px;
    }
}

/* partners */
.partnership-sectiong {
    background-color: #e5f3ff;
    padding: 50px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    border-radius: 10px;
    animation: fadeInt 2s ease-in-out;
    position: relative;
    overflow: hidden;
}
.partnership-sectiong::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(66, 133, 244, 0.1), rgba(219, 68, 55, 0.1), rgba(244, 180, 0, 0.1), rgba(15, 157, 88, 0.1));
    animation: rotatet 4s linear infinite;
    z-index: -1;
}
@keyframes rotatet {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.partnership-sectiong h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    animation: slideInFromLeftt 1s ease-in-out;
    font-weight: 700;
}
.partnership-sectiong p {
    font-size: 1.2em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    animation: slideInFromRightt 1s ease-in-out;
    font-weight: 400;
}
.partnership-sectiong .toolsg {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.partnership-sectiong .toolg {
    background-color: #2c3e50;
    background: linear-gradient(125deg, #084c7f, #2c3e50);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 150px;
    text-align: center;
}

.partnership-sectiong .toolg p{
    color: #fff;
}
.partnership-sectiong .toolg:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.partnership-sectiong .toolg img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid ;
    padding: 5px;
    border-radius: 10px;
    background-color: #fff;
}
@keyframes fadeInt {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInFromLeftt {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}
@keyframes slideInFromRightt {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}
@media (max-width: 768px) {
    .partnership-sectiong h1 {
        font-size: 2em;
    }
    .partnership-sectiong p {
        font-size: 1em;
    }
}

/* cont */
.cloud-journey-section {
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    border-radius: 10px;
    animation: fadeIn 2s ease-in-out;
    position: relative;
    overflow: hidden;
}
.cloud-journey-section h1 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
    animation: slideInFromLeft 1s ease-in-out;
    font-weight: 700;
}
.cloud-journey-section p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    animation: slideInFromRight 1s ease-in-out;
    font-weight: 400;
}
.cloud-journey-section .cta-button {
    background-color: #4285F4;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: fadeIn 2s ease-in-out;
}
.cloud-journey-section .cta-button:hover {
    background-color: #3367D6;
    transform: translateY(-5px);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInFromLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}
@keyframes slideInFromRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}
@media (max-width: 768px) {
    .cloud-journey-section h1 {
        font-size: 1.5em;
    }
    .cloud-journey-section p {
        font-size: 0.9em;
    }
    .cloud-journey-section .cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }
}