/* =====================================
   STAR SHINE INDIA EXIM
   Professional Corporate Theme
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0a2342;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.6;
}

/* Background */

.background{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:
    linear-gradient(rgba(8,28,58,.82),rgba(8,28,58,.82)),
    url('https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1920&q=80');
    background-size:cover;
    background-position:center;
    z-index:-1;
}

/* Header */

header{
    text-align:center;
    padding:50px 20px 30px;
}

.logo{
    width:170px;
    max-width:90%;
    display:block;
    margin:auto;
}

.logo-area h1{
    margin-top:20px;
    font-size:42px;
    font-weight:700;
    color:#ffffff;
    letter-spacing:1px;
}

.logo-area p{
    margin-top:8px;
    color:#ffd166;
    font-size:18px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

/* Hero */

.hero{
    width:100%;
    display:flex;
    justify-content:center;
    padding:20px;
}

.glass{
    width:100%;
    max-width:1100px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    border-radius:25px;
    backdrop-filter:blur(15px);
    padding:60px;
    box-shadow:0 25px 60px rgba(0,0,0,.45);
}

.glass h2{
    text-align:center;
    font-size:42px;
    margin-bottom:25px;
    color:#ffffff;
}

.glass p{
    text-align:center;
    color:#eeeeee;
    font-size:18px;
    line-height:34px;
    margin-bottom:20px;
}

/* Loader */

.loader{
    width:70px;
    height:70px;
    margin:35px auto;
    border:6px solid rgba(255,255,255,.20);
    border-top:6px solid #ffd166;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}

/* Contact */

.contact{
    text-align:center;
    margin-top:25px;
    margin-bottom:35px;
}

.contact div{
    margin:12px 0;
    font-size:20px;
}

.contact a{
    color:#ffd166;
    text-decoration:none;
    font-weight:600;
}

.contact a:hover{
    color:#ffffff;
}

/* Service Heading */

.service-title{
    text-align:center;
    margin-top:40px;
    margin-bottom:35px;
    font-size:34px;
    color:#ffd166;
}/* =====================================
   Services
===================================== */

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
    margin-top:20px;
}

.card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    transition:.35s ease;
    cursor:pointer;
    min-height:250px;
}

.card:hover{
    transform:translateY(-8px);
    background:rgba(255,209,102,.12);
    border-color:#ffd166;
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.card span{
    display:block;
    font-size:42px;
    margin-bottom:15px;
}

.card h3{
    color:#ffffff;
    font-size:22px;
    margin-bottom:15px;
}

.card p{
    color:#dddddd;
    font-size:15px;
    line-height:28px;
    margin:0;
}

/* =====================================
   About Section
===================================== */

.about{
    margin-top:60px;
    background:rgba(255,255,255,.05);
    border-radius:20px;
    padding:40px;
}

.about h2{
    text-align:center;
    color:#ffd166;
    margin-bottom:25px;
    font-size:34px;
}

.about p{
    text-align:center;
    color:#eeeeee;
    font-size:17px;
    line-height:32px;
    margin-bottom:30px;
}

.about ul{
    list-style:none;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:15px;
    padding:0;
}

.about li{
    background:rgba(255,255,255,.07);
    padding:15px 18px;
    border-radius:12px;
    color:#ffffff;
    transition:.3s;
}

.about li:hover{
    background:#ffd166;
    color:#0a2342;
    font-weight:600;
}

/* =====================================
   CTA Section
===================================== */

.cta{
    text-align:center;
    margin-top:60px;
    padding:40px;
    background:linear-gradient(135deg,#0b4f8a,#1565c0);
    border-radius:20px;
}

.cta h2{
    color:#ffffff;
    font-size:36px;
    margin-bottom:20px;
}

.cta p{
    color:#f5f5f5;
    font-size:17px;
    line-height:30px;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    background:#ffd166;
    color:#0a2342;
    text-decoration:none;
    font-weight:700;
    padding:15px 40px;
    border-radius:50px;
    transition:.3s;
}

.btn:hover{
    background:#ffffff;
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(0,0,0,.25);
}/* =====================================
   Footer
===================================== */

footer{
    margin-top:60px;
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:40px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
}

.footer-logo{
    text-align:center;
}

.footer-logo-img{
    width:120px;
    margin-bottom:15px;
}

.footer-logo h3,
.footer-contact h3,
.footer-services h3{
    color:#FFD166;
    margin-bottom:20px;
    font-size:24px;
}

.footer-logo p,
.footer-contact p{
    color:#dddddd;
    line-height:28px;
}

.footer-contact a{
    color:#FFD166;
    text-decoration:none;
}

.footer-contact a:hover{
    color:#ffffff;
}

.footer-services ul{
    list-style:none;
    padding:0;
}

.footer-services li{
    margin-bottom:12px;
    color:#dddddd;
}

.copyright{
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.10);
    text-align:center;
}

.copyright p{
    font-size:15px;
    color:#cccccc;
    margin:8px 0;
}

/* =====================================
   WhatsApp Floating Button
===================================== */

.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:70px;
    height:70px;
    background:#25D366;
    color:#ffffff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:36px;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.30);
    transition:.3s;
    z-index:9999;
}

.whatsapp:hover{
    transform:scale(1.1);
    background:#1ebc57;
}

/* =====================================
   Responsive Design
===================================== */

@media(max-width:992px){

.logo{
    width:140px;
}

.logo-area h1{
    font-size:30px;
}

.glass{
    padding:35px;
}

.glass h2{
    font-size:34px;
}

.service-title{
    font-size:28px;
}

.about{
    padding:30px;
}

.cta{
    padding:30px;
}

}

@media(max-width:768px){

header{
    padding:30px 15px;
}

.hero{
    padding:15px;
}

.glass{
    padding:25px;
}

.logo{
    width:120px;
}

.logo-area h1{
    font-size:24px;
}

.logo-area p{
    font-size:14px;
    letter-spacing:2px;
}

.glass h2{
    font-size:28px;
}

.glass p{
    font-size:16px;
    line-height:28px;
}

.contact div{
    font-size:17px;
}

.services{
    grid-template-columns:1fr;
}

.about{
    padding:25px;
}

.about h2{
    font-size:28px;
}

.about ul{
    grid-template-columns:1fr;
}

.cta h2{
    font-size:28px;
}

.footer-container{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-logo-img{
    width:90px;
}

.whatsapp{
    width:55px;
    height:55px;
    font-size:28px;
    right:15px;
    bottom:15px;
}

}

@media(max-width:480px){

.logo-area h1{
    font-size:20px;
}

.glass{
    padding:20px;
}

.glass h2{
    font-size:24px;
}

.glass p{
    font-size:15px;
}

.btn{
    width:100%;
    padding:14px;
}

}

/* =====================================
   End of File
===================================== */