/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    overflow-x:hidden;
    background:#fff;
    color:#222;
}

/* SMOOTH TRANSITION */

a,
button,
.card,
.product-card,
.service-card,
.main-btn{
    transition:all 0.4s ease;
}

/* IMAGE FIX */

img{
    max-width:100%;
    display:block;
    height:auto;
}

/* =========================
   COMMON
========================= */

.section-padding{
    padding:100px 0;
}

.section-subtitle{
    color:rgba(207, 181, 59, 1);
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
    margin-bottom:12px;
    display:inline-block;
    position:relative;
}

.section-subtitle::after{
    content:'';
    width:50px;
    height:2px;
    background:rgba(207, 181, 59, 1);
    position:absolute;
    top:50%;
    margin-left:10px;
}

.section-title{
    font-size:42px;
    font-weight:800;
    color: rgba(0,0,128,1 );
    margin-bottom:20px;
    line-height:58px;


}

.section-description{
    color: rgba(0,0,128,1 );
    line-height:30px;
    margin-bottom:25px;
    font-size:17px;
}

/* =========================
   BUTTONS
========================= */

.main-btn{
    background:rgba(207, 181, 59, 1);
    color: rgba(0,0,128,1 );
    padding:15px 38px;
    border-radius:8px;
    text-decoration:none;
    display:inline-block;
    font-weight:700;
    position:relative;
    overflow:hidden;
    z-index:1;
}

.main-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background: rgba(0,0,128,1 );
    transition:0.5s;
    z-index:-1;
}

.main-btn:hover::before{
    left:0;
}

.main-btn:hover{
    color:rgba(207, 181, 59, 1);
    transform:translateY(-4px);
    box-shadow:0 10px 30px  rgba(0,0,128,1 );
}

/* =========================
   HERO SECTION
========================= */
.hero-section{
    min-height:100vh;
    position:relative;

    /* PURE WHITE BACKGROUND */

    background:#fff;

    display:flex;
    align-items:center;

    overflow:hidden;
}

/* REMOVE DARK OVERLAY */

.hero-overlay{
    display:none;
}

/* SOFT ROYAL BLUE GLOW */

.hero-section::before{
    content:'';

    position:absolute;

    top:-180px;
    right:-180px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
     #fff;

    filter:blur(60px);
}

/* YELLOW GLOW */

.hero-section::after{
    content:'';

    position:absolute;

    bottom:-180px;
    left:-180px;

    width:450px;
    height:450px;

    border-radius:50%;

    background:
    #fff;


    filter:blur(60px);
}
.hero-content{
    position:relative;
    z-index:2;

    color:rgba(0,0,128,1 );
}

.hero-subtitle{
    color:rgba(207, 181, 59, 1);
    font-weight:bold;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:20px;
}
.hero-content h1{

    color: rgba(0,0,128,1 );



}

.hero-content p{

    color: rgba(0,0,128,1 );

}
.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

/* HERO BUTTON */

.hero-btn{
    background:rgba(207, 181, 59, 1);
    color: rgba(0,0,128,1 );
    padding:15px 38px;
    border-radius:8px;
    font-weight:bold;
    border:none;
    box-shadow:0 10px 25px  #fff;
}

.hero-btn:hover{
    transform:translateY(-5px) scale(1.03);
    background:rgb(0,0,128,1 );
;
    color:rgba(207, 181, 59, 1);
}

/* HERO OUTLINE */

.hero-btn-outline{
    border:2px solid rgba(0,0,128,1 );
    color:rgba(0,0,128,1 );
    padding:15px 38px;
    border-radius:8px;
    background:transparent;
}

.hero-btn-outline:hover{
    background:rgba(0,0,128,1 );
    color: #98c1d9ff;
    transform:translateY(-5px);
}

/* =========================
   HERO LOGO
========================= */

.hero-logo-wrapper{
    text-align:center;
    position:relative;
}

.hero-circle{

    width:250px;
    height:250px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto;

    backdrop-filter:blur(5px);
}

/* MAIN LOGO CIRCLE */

.hero-big-logo{

    width:230px;
    height:230px;

    border-radius:50%;

    background:#ffffff;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    position:relative;

    transition:0.5s ease;

    box-shadow:
    0 0 40px rgba(0,0,128,1),
    0 0 80px rgba(255,255,255,1);
}

/* LOGO IMAGE */

.hero-logo-image{

    /* FIX FULL LOGO INSIDE */

    width:82%;
    height:82%;

    object-fit:contain;

    transition:0.5s ease;
}

/* HOVER EFFECT */

.hero-big-logo:hover{

    transform:
    scale(1.05)
    rotate(3deg);
}

.hero-big-logo:hover .hero-logo-image{

    transform:scale(1.05);
}
/* =========================
   SCROLL DOWN
========================= */

.scroll-down{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    z-index:10;
}

.scroll-down a{

    color: rgba(207, 181, 59, 1);

}

/* =========================
   ABOUT
========================= */

.about-image{
    overflow:hidden;
    border-radius:20px;
}

.about-image img{
    border-radius:20px;
    transition:0.6s;
}

.about-image:hover img{
    transform:scale(1.08);
}

.feature-item{
    margin-bottom:18px;
    font-weight:600;
    font-size:17px;
    display:flex;
    align-items:center;
}

.feature-item i{
    color:rgba(207, 181, 59, 1);
    margin-right:12px;
    font-size:18px;
}

/* =========================
   PRODUCTS
========================= */

.products-section{
    background:#fff;
}

.product-card{
    background:rgba(207, 181, 59, 1);
    padding:45px 35px;
    border-radius:20px;
    text-align:center;
    transition:0.4s;
    position:relative;
    overflow:hidden;
    height:100%;
    border:1px solid rgba(0,0,0,0.05);
}

.product-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(244,180,0,0.08),
        transparent,
        transparent
    );
    opacity:0;
    transition:0.5s;
}

.product-card:hover::before{
    opacity:1;
}

.product-card:hover{
    transform:
    translateY(-12px)
    scale(1.02);

    box-shadow:
    0 20px 45px rgba(0,0,0,0.08),
    0 10px 20px  #fff;
}

.product-icon{
    width:95px;
    height:95px;
    background:rgba(0,0,128,1 );
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 28px;
    transition:0.4s;
    box-shadow:0 10px 25px rgba(244,180,0,0.25);
}

.product-card:hover .product-icon{
    transform:rotate(10deg) scale(1.08);
}

.product-icon i{
    font-size:38px;
    color: rgba(207, 181, 59, 1);
}

/* =========================
   SERVICES
========================= */
/* =========================
   SERVICES
========================= */

.service-card{
    background:rgba(207, 181, 59, 1);
    color:rgba(0,0,128,1 );
    text-align:center;
    padding:55px 30px;
    border-radius:24px;
    transition:all 0.5s ease;
    position:relative;
    overflow:hidden;
    height:100%;
    cursor:pointer;

    /* GLASS EFFECT */

    backdrop-filter:blur(10px);

    /* SOFT SHADOW */

    box-shadow:
    0 10px 35px  #fff,
    0 5px 15px rgba(0,0,0,0.04);

    border:1px solid rgba(255,255,255,0.05);
}

/* TOP GRADIENT LIGHT */

.service-card::before{
    content:'';
    position:absolute;
    top:-120%;
    left:-40%;
    width:180%;
    height:250%;
    background:
    linear-gradient(
        135deg,
         #fff,
        transparent,
        transparent
    );

    transform:rotate(25deg);
    transition:0.8s ease;
}

/* BOTTOM GLOW */

.service-card::after{
    content:'';
    position:absolute;
    bottom:-80px;
    left:50%;
    transform:translateX(-50%);
    width:140px;
    height:140px;
    background: #fff;
    filter:blur(60px);
    transition:0.5s ease;
    opacity:0;
}

/* HOVER */

.service-card:hover{

    background:rgba(0,0,128,1 );
    color: #fff;

    transform:
    translateY(-16px)
    scale(1.04);

}

/* LIGHT EFFECT MOVE */

.service-card:hover::before{
    top:-40%;
    left:-10%;
}

/* GLOW EFFECT */

.service-card:hover::after{
    opacity:1;
}

/* ICON */

.service-card i{
    font-size:52px;
    margin-bottom:24px;
    transition:0.5s ease;

    /* ICON SHADOW */

    text-shadow:
    0 5px 15px rgba(0,0,0,0.18);
}

/* ICON HOVER */

.service-card:hover i{

    transform:
    scale(1.22)
    rotate(8deg);

    color: rgba(207, 181, 59, 1);
}

/* TITLE */

.service-card h5{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    transition:0.4s;
}

/* DESCRIPTION */

.service-card p{
    color:#fff;
    line-height:30px;
    font-size:16px;
    transition:0.4s;
}

/* DESCRIPTION HOVER */

.service-card:hover p{
    color:#222;
}

/* FLOATING EFFECT */

.service-card:hover h5{
    letter-spacing:0.5px;
}

/* INNER ANIMATION */

.service-card .service-inner{
    position:relative;
    z-index:2;
}

/* ACTIVE PRESS EFFECT */

.service-card:active{
    transform:scale(0.98);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .service-card{
        padding:45px 24px;
        border-radius:20px;
    }

    .service-card i{
        font-size:44px;
    }

    .service-card h5{
        font-size:21px;
    }

}
/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#fff;
}

::-webkit-scrollbar-thumb{
    background:rgba(207, 181, 59, 1);
    border-radius:10px;
}