/* ===========================
   DGC INDUSTRIES PVT. LTD.
   Professional Corporate CSS
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f4f7fb;
    color:#333;
    line-height:1.6;
}

/* ===========================
        STICKY HEADER
=========================== */

header{
    position:sticky;
    top:0;
    width:100%;
    z-index:9999;

    background:rgba(255,220,232,.96);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    display:flex;
    align-items:center;

    padding:14px 35px;

    box-shadow:0 5px 18px rgba(0,0,0,.10);

    border-bottom:1px solid rgba(255,255,255,.5);
}

/* ===========================
        LOGO
=========================== */

.logo-box{
    display:flex;
    align-items:center;
}

.logo-box img{
    width:65px;
    height:65px;
    object-fit:contain;
    margin-right:16px;
}

.logo-box h2{
    color:#003366;
    font-size:24px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

/* ===========================
        HERO
=========================== */

.hero{

    background:linear-gradient(135deg,#ffffff,#edf4ff);

    text-align:center;

    padding:90px 20px 80px;

}

.hero h1{

    color:#003366;

    font-size:42px;

    margin-bottom:12px;

}

.hero p{

    color:#666;

    font-size:19px;

}

/* ===========================
        CARDS
=========================== */

.cards{

    max-width:1400px;

    margin:50px auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    padding:20px;

}

/* ===========================
        CARD
=========================== */

.card{

    background:#fff;

    border-radius:18px;

    padding:35px 20px;

    min-height:220px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    text-decoration:none;

    color:#222;

    border-top:5px solid #003366;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:0;

    background:#003366;

    transition:.35s;

    z-index:0;

}

.card h2,
.card p,
.card img{

    position:relative;

    z-index:2;

}

.card h2{

    color:#003366;

    font-size:24px;

    margin-bottom:12px;

}

.card p{

    color:#666;

    font-size:15px;

}

.card img{

    width:100%;

    border-radius:12px;

    transition:.4s;

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 35px rgba(0,0,0,.18);

}

.card:hover::before{

    height:100%;

}

.card:hover h2,
.card:hover p{

    color:#fff;

}

.card:hover img{

    transform:scale(1.05);

}

/* ===========================
        BUTTON
=========================== */

.button{

display:inline-block;

margin-top:20px;

padding:12px 28px;

background:#003366;

color:#fff;

text-decoration:none;

border-radius:40px;

transition:.3s;

}

.button:hover{

background:#0056b3;

}

/* ===========================
        FOOTER
=========================== */

footer{

background:#003366;

color:#fff;

text-align:center;

padding:22px;

margin-top:60px;

}

/* ===========================
      TABLET
=========================== */

@media(max-width:992px){

.cards{

grid-template-columns:repeat(2,1fr);

gap:20px;

}

}

/* ===========================
      MOBILE
=========================== */

@media(max-width:768px){

header{

padding:12px 15px;

}

.logo-box img{

width:42px;
height:42px;

}

.logo-box h2{

font-size:16px;

line-height:22px;

}

.hero{

padding:60px 15px;

}

.hero h1{

font-size:28px;

}

.hero p{

font-size:16px;

}

.cards{

grid-template-columns:repeat(2,1fr);

gap:15px;

padding:15px;

}

.card{

min-height:170px;

padding:25px 12px;

}

.card h2{

font-size:18px;

}

.card p{

font-size:13px;

}

}

/* ===========================
      EXTRA SMALL PHONE
=========================== */

@media(max-width:400px){

.cards{

grid-template-columns:1fr;

}

}

/* ===========================
      SCROLLBAR
=========================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#eeeeee;

}

::-webkit-scrollbar-thumb{

background:#003366;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#0056b3;

}



nav{
    margin-left:auto;
}



.form-box{

max-width:700px;

margin:40px auto;

background:white;

padding:35px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.form-box h1{

text-align:center;

margin-bottom:25px;

color:#003366;

}

.form-box input,
.form-box select,
.form-box textarea{

width:100%;

padding:14px;

margin:12px 0;

border:1px solid #ccc;

border-radius:8px;

font-size:15px;

}

.form-box textarea{

height:120px;

resize:none;

}

.form-box button{

width:100%;

padding:15px;

background:#003366;

color:white;

border:none;

border-radius:8px;

font-size:18px;

cursor:pointer;

}

.form-box button:hover{

background:#0056b3;

}


.button{

display:inline-block;

margin-top:18px;

padding:12px 28px;

background:#003366;

color:#fff;

text-decoration:none;

border-radius:30px;

font-weight:bold;

position:relative;

z-index:5;

transition:.3s;

}

.button:hover{

background:#0077ff;

transform:scale(1.05);

}


.card{

background:#fff;

border-radius:18px;

overflow:hidden;

text-align:center;

padding:15px;

box-shadow:0 8px 25px rgba(0,0,0,.10);

transition:.35s;

}

.card img{

width:100%;

height:240px;

object-fit:cover;

border-radius:12px;

transition:.4s;

}

.card h2{

margin-top:15px;

font-size:20px;

color:#003366;

font-weight:700;

}

.card:hover{

transform:translateY(-8px);

box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.card:hover img{

transform:scale(1.05);

}


/*==================================
      CUSTOMER FEEDBACK PAGE
==================================*/

.feedback-container{

    max-width:1300px;
    margin:30px auto 50px;
    padding:20px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;

}

/*==========================
        LEFT CARD
==========================*/

.feedback-form-card{

    background:#fff;
    border-radius:18px;
    padding:35px;

    border-top:5px solid #003366;

    box-shadow:0 12px 30px rgba(0,0,0,.12);

}

.feedback-form-card h2{

    text-align:center;
    color:#003366;
    margin-bottom:25px;
    font-size:28px;

}

.feedback-form-card input,
.feedback-form-card textarea{

    width:100%;
    padding:15px;

    margin-bottom:18px;

    border:2px solid #dcdcdc;

    border-radius:10px;

    font-size:16px;

    outline:none;

    transition:.3s;

}

.feedback-form-card input:focus,
.feedback-form-card textarea:focus{

    border-color:#003366;

    box-shadow:0 0 12px rgba(0,51,102,.18);

}

.feedback-form-card textarea{

    resize:none;
    min-height:160px;

}

/*==========================
      SUBMIT BUTTON
==========================*/

.submit-btn{

    width:100%;

    padding:15px;

    border:none;

    border-radius:50px;

    background:#25D366;

    color:#fff;

    font-size:18px;

    font-weight:bold;

    cursor:pointer;

    transition:.35s;

}

.submit-btn:hover{

    background:#18b857;

    transform:translateY(-3px);

    box-shadow:0 10px 20px rgba(0,0,0,.20);

}

/*==========================
        RIGHT CARD
==========================*/

.review-card{

    background:#fff;

    border-radius:18px;

    box-shadow:0 12px 30px rgba(0,0,0,.12);

    overflow:hidden;

    display:flex;

    flex-direction:column;

    height:700px;

}

/* Heading Fixed */

.review-card h2{

    background:#ffffff;

    color:#003366;

    text-align:center;

    padding:20px;

    font-size:28px;

    font-weight:bold;

    border-bottom:2px solid #eeeeee;

    position:sticky;

    top:0;

    z-index:100;

}

/*==========================
      AUTO SCROLL AREA
==========================*/

.review-slider{

    flex:1;

    overflow:hidden;

    padding:20px;

    animation:scrollReview 25s linear infinite;

}

.review-card:hover .review-slider{

    animation-play-state:paused;

}

@keyframes scrollReview{

0%{

transform:translateY(0);

}

100%{

transform:translateY(-50%);

}

}

/*==========================
      REVIEW CARD
==========================*/

.review{

    background:#f8fbff;

    border-radius:15px;

    padding:22px;

    text-align:center;

    margin-bottom:22px;

    box-shadow:0 6px 18px rgba(0,0,0,.08);

    transition:.35s;

}

.review:hover{

    transform:translateY(-5px);

}

.review img{

    width:95px;

    height:95px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #003366;

    margin-bottom:15px;

    transition:.35s;

}

.review:hover img{

    transform:scale(1.08);

}

.review h3{

    color:#003366;

    margin-bottom:10px;

    font-size:20px;

}

.review p{

    color:#555;

    line-height:1.8;

    font-size:15px;

}

/*==========================
      MOBILE
==========================*/

@media(max-width:900px){

.feedback-container{

grid-template-columns:1fr;

}

.review-card{

height:600px;

}

}

@media(max-width:768px){

.feedback-container{

margin:15px auto;

padding:15px;

}

.feedback-form-card{

padding:25px;

}

.feedback-form-card h2{

font-size:24px;

}

.review-card{

height:500px;

}

.review-card h2{

font-size:22px;

padding:16px;

}

.review img{

width:75px;

height:75px;

}

.review h3{

font-size:18px;

}

.submit-btn{

font-size:16px;

}

}


/*==================================
         ABOUT US PAGE
==================================*/

.about-container{

    max-width:1300px;
    margin:35px auto;
    padding:20px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;

}

/* LEFT IMAGE */

.about-left{

    text-align:center;

}

.about-left img{

    width:100%;
    max-width:550px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

    transition:.4s;

}

.about-left img:hover{

    transform:scale(1.03);

}

/* RIGHT CONTENT */

.about-right{

    background:#ffffff;

    padding:35px;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.10);

    border-left:6px solid #003366;

}

.about-right h2{

    color:#003366;

    margin-bottom:20px;

    font-size:34px;

}

.about-right p{

    color:#555;

    line-height:1.9;

    margin-bottom:18px;

    text-align:justify;

}

/*==========================
      INFORMATION CARDS
==========================*/

.about-grid{

    max-width:1300px;

    margin:30px auto 60px;

    padding:20px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.about-card{

    background:#ffffff;

    padding:30px;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.10);

    border-top:5px solid #003366;

    transition:.35s;

    opacity:0;

    transform:translateY(40px);

}

.about-card.show{

    opacity:1;

    transform:translateY(0);

}

.about-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);

}

.about-card h2{

    color:#003366;

    margin-bottom:18px;

    font-size:26px;

}

.about-card p{

    color:#555;

    line-height:1.8;

}

.about-card ul{

    padding-left:20px;

}

.about-card li{

    margin-bottom:12px;

    color:#555;

}

/*==========================
      COMPANY STATS
==========================*/

.stats-section{

    max-width:1300px;

    margin:0 auto 60px;

    padding:20px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-box{

    background:linear-gradient(135deg,#003366,#0056b3);

    color:#fff;

    text-align:center;

    padding:35px 20px;

    border-radius:18px;

    transition:.35s;

    box-shadow:0 12px 30px rgba(0,0,0,.18);

}

.stat-box:hover{

    transform:translateY(-8px);

}

.stat-box h2{

    font-size:42px;

    margin-bottom:12px;

}

.stat-box p{

    font-size:18px;

}

/*==========================
        RESPONSIVE
==========================*/

@media(max-width:992px){

.about-container{

grid-template-columns:1fr;

}

.about-grid{

grid-template-columns:1fr;

}

.stats-section{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.about-container{

padding:15px;

}

.about-right{

padding:25px;

}

.about-right h2{

font-size:28px;

}

.about-grid{

padding:15px;

}

.about-card{

padding:22px;

}

.about-card h2{

font-size:22px;

}

.stats-section{

grid-template-columns:1fr;

padding:15px;

}

.stat-box{

padding:25px;

}

.stat-box h2{

font-size:34px;

}

}




/*========================================
        COMPANY STATISTICS
========================================*/

.company-stats{

    max-width:1350px;
    margin:70px auto;
    padding:20px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}

.stat-card{

    background:linear-gradient(135deg,#003366,#0056b3);

    color:#fff;

    padding:35px 20px;

    text-align:center;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-10px) scale(1.03);

}

.stat-card h2{

    font-size:42px;

    margin-bottom:10px;

}

.stat-card p{

    font-size:18px;

    opacity:.95;

}

/*========================================
        WHY CHOOSE US
========================================*/

.why-section{

    max-width:1350px;

    margin:70px auto;

    padding:20px;

}

.why-title{

    text-align:center;

    color:#003366;

    font-size:40px;

    margin-bottom:45px;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.why-box{

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.10);

    transition:.35s;

}

.why-box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.16);

}

.why-box h3{

    color:#003366;

    margin:18px 0;

    font-size:26px;

}

.why-box p{

    color:#555;

    line-height:1.8;

}

/*========================================
        ANIMATION
========================================*/

.about-content,
.company-card,
.feature,
.stat-card,
.why-box{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*========================================
        RESPONSIVE
========================================*/

@media(max-width:1100px){

.about-main{

grid-template-columns:1fr;

}

.company-boxes{

grid-template-columns:1fr;

}

.features{

grid-template-columns:repeat(2,1fr);

}

.company-stats{

grid-template-columns:repeat(2,1fr);

}

.why-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.about-content{

padding:30px 22px;

}

.about-content h2{

font-size:30px;

}

.company-card{

padding:25px;

}

.company-card h3{

font-size:24px;

}

.features{

grid-template-columns:1fr;

}

.company-stats{

grid-template-columns:1fr;

}

.stat-card h2{

font-size:34px;

}

.why-title{

font-size:30px;

}

}

@media(max-width:480px){

.about-section{

padding:12px;

}

.about-content{

padding:20px;

}

.about-content h2{

font-size:26px;

}

.company-card{

padding:20px;

}

.company-card h3{

font-size:22px;

}

.feature{

padding:22px;

}

.why-box{

padding:22px;

}

}



/*=========================================
        PREMIUM EMPLOYEE BAR
=========================================*/

.employee-bar{

    max-width:1400px;
    margin:18px auto;
    padding:18px 28px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;

    background:linear-gradient(135deg,#ffffff,#f6faff);

    border-radius:20px;

    border-left:7px solid #003366;

    box-shadow:0 12px 35px rgba(0,0,0,.12);

    transition:.35s;

}

.employee-bar:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(0,0,0,.16);

}

/*=========================================
            LEFT SIDE
=========================================*/

.employee-left{

    display:flex;

    align-items:center;

    gap:22px;

}

.employee-left img{

    width:120px;

    height:120px;

    border-radius:50%;

    object-fit:cover;

    border:5px solid #ffffff;

    box-shadow:
    0 0 0 4px #003366,
    0 12px 25px rgba(0,0,0,.20);

    animation:floatPhoto 4s ease-in-out infinite;

    transition:.35s;

}

.employee-left img:hover{

    transform:scale(1.08);

}

@keyframes floatPhoto{

0%{transform:translateY(0);}
50%{transform:translateY(-6px);}
100%{transform:translateY(0);}

}

.employee-info h3{

    color:#003366;

    font-size:28px;

    margin-bottom:5px;

}

.employee-info p{

    color:#555;

    font-size:16px;

    margin-bottom:8px;

}

.employee-info span{

    display:inline-block;

    background:#eaf4ff;

    color:#003366;

    padding:8px 18px;

    border-radius:25px;

    font-size:14px;

    font-weight:bold;

}

/*=========================================
            RIGHT SIDE
=========================================*/

.employee-right{

    min-width:360px;

    text-align:right;

}

/* Greeting */

.greeting{

    display:inline-block;

    padding:8px 18px;

    border-radius:25px;

    background:#003366;

    color:#fff;

    font-size:14px;

    font-weight:bold;

    margin-bottom:10px;

}

/* Duty Time */

.duty-time{

    color:#003366;

    font-size:16px;

    font-weight:bold;

    margin-bottom:12px;

}

/*=========================================
          ON / OFF BUTTON
=========================================*/

.status-box{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:200px;

    height:52px;

    border-radius:40px;

    font-size:17px;

    font-weight:bold;

    color:#fff;

    letter-spacing:.5px;

    margin-bottom:15px;

    transition:.3s;

}

.on{

    background:linear-gradient(135deg,#10b981,#22c55e);

    box-shadow:0 0 20px rgba(34,197,94,.45);

    animation:onGlow 1.5s infinite;

}

.off{

    background:linear-gradient(135deg,#dc2626,#ef4444);

    box-shadow:0 0 18px rgba(239,68,68,.40);

    animation:offBlink 2s infinite;

}

@keyframes onGlow{

0%{

transform:scale(1);

}

50%{

transform:scale(1.04);

}

100%{

transform:scale(1);

}

}

@keyframes offBlink{

0%{

opacity:1;

}

50%{

opacity:.75;

}

100%{

opacity:1;

}

}

/*=========================================
            LIVE INFO
=========================================*/

.live-box{

    margin-top:10px;

    background:#ffffff;

    border:1px solid #d8e7ff;

    border-radius:15px;

    padding:12px 16px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    text-align:left;

}

.live-box p{

    margin:8px 0;

    font-size:14px;

    color:#444;

}

.live-box span{

    color:#003366;

    font-weight:bold;

}

/*=========================================
          RESPONSIVE
=========================================*/

@media(max-width:992px){

.employee-bar{

flex-direction:column;

text-align:center;

padding:22px;

}

.employee-left{

flex-direction:column;

}

.employee-right{

min-width:100%;

text-align:center;

}

.live-box{

text-align:left;

margin-top:15px;

}

}

@media(max-width:768px){

.employee-left img{

width:100px;

height:100px;

}

.employee-info h3{

font-size:24px;

}

.employee-info p{

font-size:15px;

}

.employee-info span{

font-size:13px;

}

.status-box{

width:180px;

height:48px;

font-size:15px;

}

.live-box{

padding:12px;

}

.live-box p{

font-size:13px;

}

}


