/* ===== HERO SECTION START ===== */

.hero{

background:#F3F6FA;

padding:80px 0;

overflow:hidden;

}

.hero-wrapper{

display:flex;

align-items:center;

justify-content:space-between;

gap:60px;

min-height:380px;

}

/* ===== HERO LEFT START ===== */

.hero-content{

flex:1;

max-width:650px;

}

.hero-tag{

display:inline-block;

font-size:18px;

margin-bottom:20px;

color:#333;

}

.hero-content h1{

font-size:78px;

font-weight:800;

line-height:1.1;

color:#0A2E5C;

margin-bottom:20px;

}

.hero-content h2{

font-size:52px;

font-weight:700;

margin-bottom:25px;

color:#111;

}

.hero-content p{

font-size:22px;

line-height:1.8;

color:#555;

margin-bottom:35px;

}

.hero-btn{

display:inline-block;

padding:18px 38px;

background:#0059A8;

color:#fff;

font-size:18px;

font-weight:700;

text-decoration:none;

border-radius:5px;

transition:.3s;

}

.hero-btn:hover{

background:#F58220;

color:#fff;

}

/* ===== HERO LEFT END ===== */



/* ===== HERO RIGHT START ===== */

.hero-image{

flex:1;

display:flex;

justify-content:center;

align-items:center;

}

.hero-image img{

width:100%;

max-width:650px;

height:auto;

object-fit:contain;

animation:float 4s ease infinite;

}

/* ===== HERO RIGHT END ===== */



/* ===== ANIMATION START ===== */

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0px);

}

}

/* ===== ANIMATION END ===== */



/* ===== TABLET START ===== */

@media(max-width:992px){

.hero{

padding:60px 0;

}

.hero-wrapper{

flex-direction:column;

text-align:center;

min-height:auto;

}

.hero-content{

max-width:100%;

}

.hero-content h1{

font-size:58px;

}

.hero-content h2{

font-size:38px;

}

.hero-content p{

font-size:18px;

}

.hero-image{

margin-top:40px;

}

.hero-image img{

max-width:500px;

}

}

/* ===== TABLET END ===== */



/* ===== MOBILE START ===== */

@media(max-width:576px){

.hero{

padding:45px 0;

}

.hero-wrapper{

gap:30px;

}

.hero-tag{

font-size:14px;

}

.hero-content h1{

font-size:42px;

}

.hero-content h2{

font-size:28px;

}

.hero-content p{

font-size:16px;

line-height:1.6;

}

.hero-btn{

width:100%;

padding:15px;

font-size:16px;

}

.hero-image img{

max-width:320px;

}

}

/* ===== MOBILE END ===== */


/* ===== HERO SECTION END ===== */

/* ===== CATEGORY SECTION START ===== */

.category-section{

padding:80px 0;

background:#ffffff;

}

.section-title{

text-align:center;

margin-bottom:50px;

}

.section-title h2{

font-size:42px;

font-weight:800;

color:#0A2E5C;

margin-bottom:10px;

}

.section-title p{

font-size:17px;

color:#666;

}

.category-grid{

display:grid;

grid-template-columns:
repeat(6,1fr);

gap:25px;

}

.category-card{

background:#fff;

padding:35px 20px;

border-radius:12px;

text-align:center;

box-shadow:
0 5px 20px
rgba(0,0,0,.08);

transition:.3s;

cursor:pointer;

}

.category-card:hover{

transform:translateY(-8px);

box-shadow:
0 10px 30px
rgba(0,0,0,.12);

}

.category-icon{

font-size:45px;

margin-bottom:20px;

}

.category-card h3{

font-size:18px;

font-weight:700;

color:#222;

}

/* ===== TABLET START ===== */

@media(max-width:992px){

.category-grid{

grid-template-columns:
repeat(3,1fr);

}

}

/* ===== TABLET END ===== */


/* ===== MOBILE START ===== */

@media(max-width:576px){

.category-section{

padding:60px 0;

}

.section-title h2{

font-size:30px;

}

.category-grid{

grid-template-columns:
repeat(2,1fr);

gap:15px;

}

.category-card{

padding:25px 10px;

}

.category-icon{

font-size:34px;

}

.category-card h3{

font-size:14px;

}

}

/* ===== CATEGORY LINK START ===== */

.category-link{

text-decoration:none;

color:inherit;

display:block;

}

/* ===== CATEGORY LINK END ===== */



/* ===== MOBILE END ===== */


/* ===== CATEGORY SECTION END ===== */

/* ===== ABOUT SECTION START ===== */

.about-section{

padding:90px 0;

background:#F8FAFC;

}

.about-wrapper{

display:flex;

align-items:center;

justify-content:space-between;

gap:80px;

}

/* ABOUT IMAGE START */

.about-image{

flex:1;

}

.about-image img{

width:100%;

border-radius:12px;

box-shadow:

0 15px 40px

rgba(0,0,0,.08);

display:block;

}

/* ABOUT IMAGE END */



/* ABOUT CONTENT START */

.about-content{

flex:1;

}

.about-tag{

color:#F58220;

font-size:14px;

font-weight:700;

letter-spacing:1px;

display:block;

margin-bottom:15px;

}

.about-content h2{

font-size:42px;

color:#0A2E5C;

font-weight:800;

margin-bottom:25px;

line-height:1.3;

}

.about-content p{

font-size:17px;

line-height:1.9;

color:#555;

margin-bottom:30px;

}

/* ABOUT CONTENT END */


/* ABOUT POINTS START */

.about-points{

display:grid;

grid-template-columns:

repeat(2,1fr);

gap:18px;

margin-bottom:35px;

}

.point{

font-size:16px;

font-weight:600;

color:#222;

}

/* ABOUT POINTS END */


/* BUTTON START */

.about-btn{

display:inline-block;

padding:15px 34px;

background:#0059A8;

color:#fff;

text-decoration:none;

border-radius:5px;

font-weight:700;

transition:.3s;

}

.about-btn:hover{

background:#F58220;

color:#fff;

}

/* BUTTON END */



/* TABLET START */

@media(max-width:991px){

.about-wrapper{

flex-direction:column;

gap:50px;

}

.about-content{

text-align:center;

}

.about-points{

grid-template-columns:1fr;

}

}

/* TABLET END */



/* MOBILE START */

@media(max-width:576px){

.about-section{

padding:65px 0;

}

.about-content h2{

font-size:30px;

}

.about-content p{

font-size:15px;

}

}

/* MOBILE END */


/* ===== ABOUT SECTION END ===== */


/* ===== FEATURED PRODUCTS START ===== */

.featured-products{

padding:90px 0;

background:#fff;

}

.product-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.product-card{

background:#fff;

padding:25px;

border-radius:12px;

text-align:center;

box-shadow:

0 5px 25px

rgba(0,0,0,.08);

transition:.3s;

}

.product-card:hover{

transform:translateY(-8px);

}

.product-card img{

width:100%;

height:220px;

object-fit:contain;

margin-bottom:20px;

}

.product-card h3{

font-size:22px;

margin-bottom:12px;

color:#0A2E5C;

}

.product-card p{

font-size:15px;

color:#666;

line-height:1.7;

margin-bottom:20px;

}

.product-card a{

display:inline-block;

padding:12px 28px;

background:#0059A8;

color:#fff;

text-decoration:none;

border-radius:5px;

font-weight:600;

transition:.3s;

}

.product-card a:hover{

background:#F58220;

}

/* TABLET */

@media(max-width:991px){

.product-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* MOBILE */

@media(max-width:576px){

.product-grid{

grid-template-columns:1fr;

}

.featured-products{

padding:60px 0;

}

}

/* ===== FEATURED PRODUCTS END ===== */


/* ===== WHY CHOOSE PREMIUM START ===== */

.why-choose{

padding:110px 0;

background:

linear-gradient(
135deg,
#F5F8FC 0%,
#EDF2F8 100%
);

position:relative;

overflow:hidden;

}

.why-choose::before{

content:"";

position:absolute;

width:300px;

height:300px;

background:#0059A810;

border-radius:50%;

top:-100px;

left:-100px;

}

.why-choose::after{

content:"";

position:absolute;

width:250px;

height:250px;

background:#F5822010;

border-radius:50%;

bottom:-80px;

right:-80px;

}

.why-grid{

display:grid;

grid-template-columns:

repeat(3,1fr);

gap:35px;

margin-top:70px;

position:relative;

z-index:2;

}

/* CARD START */

.why-card{

background:

rgba(255,255,255,.85);

backdrop-filter:

blur(10px);

padding:45px 30px;

border-radius:22px;

text-align:center;

position:relative;

overflow:hidden;

transition:.4s;

border:

1px solid rgba(255,255,255,.5);

box-shadow:

0 15px 45px

rgba(0,0,0,.08);

}

.why-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:

linear-gradient(

90deg,

#0059A8,

#F58220

);

}

.why-card:hover{

transform:

translateY(-12px);

box-shadow:

0 25px 60px

rgba(0,0,0,.14);

}

/* CARD END */



/* ICON START */

.why-icon{

width:95px;

height:95px;

margin:auto;

margin-bottom:28px;

border-radius:50%;

background:

linear-gradient(

135deg,

#0059A8,

#0A2E5C

);

display:flex;

align-items:center;

justify-content:center;

box-shadow:

0 10px 25px

rgba(0,89,168,.25);

}

.why-icon i{

font-size:34px;

color:#fff;

}

/* ICON END */



/* CONTENT START */

.why-card h3{

font-size:24px;

font-weight:800;

color:#0A2E5C;

margin-bottom:15px;

}

.why-card p{

font-size:15px;

line-height:1.9;

color:#666;

}

/* CONTENT END */



/* TABLET START */

@media(max-width:991px){

.why-grid{

grid-template-columns:

repeat(2,1fr);

}

}

/* TABLET END */



/* MOBILE START */

@media(max-width:576px){

.why-choose{

padding:70px 0;

}

.why-grid{

grid-template-columns:1fr;

gap:22px;

}

.why-card{

padding:35px 22px;

}

.why-card h3{

font-size:21px;

}

.why-icon{

width:80px;

height:80px;

}

}

/* MOBILE END */


/* ===== WHY CHOOSE PREMIUM END ===== */


/* ===== PREMIUM BRANDS START ===== */

.brands-section{

padding:110px 0;

background:

linear-gradient(
135deg,
#081F3F,
#0B2E59
);

}

.brands-head{

max-width:900px;

margin:auto;

text-align:center;

margin-bottom:70px;

}

.brands-head span{

color:#F58220;

font-weight:700;

letter-spacing:2px;

display:block;

margin-bottom:18px;

}

.brands-head h2{

font-size:58px;

font-weight:900;

color:#fff;

margin-bottom:25px;

}

.brands-head p{

font-size:18px;

line-height:1.9;

color:#d6dce6;

}

.brands-grid{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.brand-card{
background:rgba(255,255,255,.08);
padding:45px 25px;
border-radius:25px;
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,.12);
text-align:center;
transition:.4s;

width:350px;
max-width:100%;
}

.brand-card:hover{

transform:

translateY(-10px);

background:

rgba(255,255,255,.12);

}

.brand-card img{

height:70px;

margin-bottom:25px;

object-fit:contain;

max-width:160px;

}

.brand-card h3{

font-size:24px;

color:#fff;

margin-bottom:12px;

}

.brand-card p{

font-size:15px;

line-height:1.8;

color:#d6dce6;

}

.brand-footer{

margin-top:80px;

text-align:center;

max-width:850px;

margin-left:auto;

margin-right:auto;

}

.brand-footer h3{

font-size:36px;

font-weight:900;

color:#fff;

margin-bottom:20px;

}

.brand-footer p{

font-size:17px;

line-height:1.8;

color:#d6dce6;

}

@media(max-width:991px){

.brands-grid{

grid-template-columns:

repeat(2,1fr);

}

}

@media(max-width:576px){

.brands-grid{

grid-template-columns:1fr;

}

.brands-head h2{

font-size:34px;

}

.brand-footer h3{

font-size:26px;

}

}

/* ===== PREMIUM BRANDS END ===== */

/* ===== INSTALLATION SECTION START ===== */

.installation-section{

padding:110px 0;

background:#F7F9FC;

}

.installation-section .section-title{

max-width:900px;

margin:auto;

text-align:center;

margin-bottom:70px;

}

.installation-section span{

color:#F58220;

font-weight:700;

letter-spacing:2px;

display:block;

margin-bottom:15px;

}

.installation-section h2{

font-size:52px;

font-weight:900;

color:#0A2E5C;

margin-bottom:25px;

}

.installation-section .section-title p{

font-size:17px;

line-height:1.9;

color:#666;

}

.project-grid{

display:grid;

grid-template-columns:

repeat(4,1fr);

gap:30px;

}

/* CARD START */

.project-card{

background:#fff;

border-radius:24px;

overflow:hidden;

box-shadow:

0 15px 45px

rgba(0,0,0,.08);

transition:.4s;

}

.project-card:hover{

transform:

translateY(-12px);

}

.project-image{

height:260px;

overflow:hidden;

}

.project-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.project-card:hover img{

transform:scale(1.08);

}

.project-content{

padding:28px;

}

.project-content h3{

font-size:22px;

font-weight:800;

color:#0A2E5C;

margin-bottom:12px;

}

.project-content p{

font-size:15px;

line-height:1.8;

color:#666;

}

.project-btn{

text-align:center;

margin-top:70px;

}

.project-btn a{

background:#0059A8;

color:#fff;

padding:18px 42px;

text-decoration:none;

border-radius:6px;

font-weight:700;

transition:.3s;

}

.project-btn a:hover{

background:#F58220;

}

/* TABLET */

@media(max-width:991px){

.project-grid{

grid-template-columns:

repeat(2,1fr);

}

.installation-section h2{

font-size:40px;

}

}

/* MOBILE */

@media(max-width:576px){

.installation-section{

padding:70px 0;

}

.project-grid{

grid-template-columns:1fr;

}

.installation-section h2{

font-size:30px;

}

.project-image{

height:220px;

}

}

/* ===== INSTALLATION SECTION END ===== */


/* ===== DEALER NETWORK SECTION START ===== */

.dealer-network{

padding:110px 0;

background:

linear-gradient(
135deg,
#F8FAFD,
#EEF3F8
);

}

.dealer-heading{

text-align:center;

max-width:850px;

margin:auto;

margin-bottom:70px;

}

.dealer-heading span{

color:#F58220;

font-weight:700;

letter-spacing:2px;

display:block;

margin-bottom:15px;

}

.dealer-heading h2{

font-size:52px;

font-weight:900;

color:#0A2E5C;

margin-bottom:25px;

}

.dealer-heading p{

font-size:17px;

line-height:1.9;

color:#666;

}

.dealer-wrapper{

display:flex;

align-items:center;

gap:70px;

}

.dealer-map{

flex:1;

}

.dealer-map img{

width:100%;

max-width:500px;

display:block;

margin:auto;

}

.dealer-content{

flex:1;

}

.dealer-grid{

display:grid;

grid-template-columns:

repeat(2,1fr);

gap:20px;

margin-bottom:40px;

}

.dealer-box{

background:#fff;

padding:28px;

border-radius:20px;

text-align:center;

box-shadow:

0 10px 30px

rgba(0,0,0,.08);

}

.dealer-box h3{

font-size:34px;

color:#0059A8;

font-weight:900;

margin-bottom:10px;

}

.dealer-box p{

color:#666;

font-size:15px;

}

.coverage-area{

margin-bottom:35px;

}

.coverage-area h4{

font-size:24px;

color:#0A2E5C;

margin-bottom:20px;

}

.coverage-area ul{

display:grid;

grid-template-columns:

repeat(2,1fr);

gap:15px;

padding:0;

list-style:none;

}

.coverage-area li{

background:#fff;

padding:12px;

border-radius:8px;

font-weight:600;

text-align:center;

box-shadow:

0 5px 15px

rgba(0,0,0,.05);

}

.dealer-btn{

display:inline-block;

background:#0059A8;

color:#fff;

padding:18px 36px;

border-radius:6px;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.dealer-btn:hover{

background:#F58220;

}

/* TABLET */

@media(max-width:991px){

.dealer-wrapper{

flex-direction:column;

}

.dealer-heading h2{

font-size:40px;

}

}

/* MOBILE */

@media(max-width:576px){

.dealer-network{

padding:70px 0;

}

.dealer-heading h2{

font-size:30px;

}

.dealer-grid{

grid-template-columns:1fr;

}

.coverage-area ul{

grid-template-columns:1fr;

}

}

/* ===== DEALER NETWORK SECTION END ===== */


/* ===== TESTIMONIAL SECTION START ===== */

.testimonial-section{

padding:110px 0;

background:

linear-gradient(
135deg,
#071C37,
#0A2E5C
);

position:relative;

overflow:hidden;

}

.testimonial-section::before{

content:"";

position:absolute;

width:350px;

height:350px;

background:

rgba(255,255,255,.04);

border-radius:50%;

top:-120px;

right:-100px;

}

.testimonial-heading{

text-align:center;

max-width:850px;

margin:auto;

margin-bottom:70px;

position:relative;

z-index:2;

}

.testimonial-heading span{

color:#F58220;

font-weight:700;

letter-spacing:2px;

display:block;

margin-bottom:15px;

}

.testimonial-heading h2{

font-size:52px;

font-weight:900;

color:#fff;

margin-bottom:25px;

}

.testimonial-heading p{

font-size:17px;

line-height:1.9;

color:#D7DFEA;

}

.testimonial-grid{

display:grid;

grid-template-columns:

repeat(3,1fr);

gap:30px;

}

.testimonial-card{

background:

rgba(255,255,255,.08);

backdrop-filter:

blur(12px);

padding:45px 35px;

border-radius:24px;

border:

1px solid rgba(255,255,255,.12);

transition:.4s;

}

.testimonial-card:hover{

transform:

translateY(-10px);

background:

rgba(255,255,255,.12);

}

.stars{

font-size:22px;

color:#F58220;

margin-bottom:25px;

}

.testimonial-card p{

color:#E0E5ED;

line-height:1.9;

font-size:15px;

margin-bottom:25px;

}

.testimonial-card h4{

font-size:22px;

color:#fff;

margin-bottom:6px;

}

.testimonial-card span{

color:#B9C4D3;

font-size:14px;

}

.testimonial-btn{

text-align:center;

margin-top:70px;

}

.testimonial-btn a{

background:#F58220;

padding:18px 40px;

border-radius:6px;

color:#fff;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.testimonial-btn a:hover{

background:#fff;

color:#0A2E5C;

}

/* TABLET */

@media(max-width:991px){

.testimonial-grid{

grid-template-columns:

repeat(2,1fr);

}

.testimonial-heading h2{

font-size:40px;

}

}

/* MOBILE */

@media(max-width:576px){

.testimonial-section{

padding:70px 0;

}

.testimonial-grid{

grid-template-columns:1fr;

}

.testimonial-heading h2{

font-size:30px;

}

}

/* ===== TESTIMONIAL SECTION END ===== */


/* ===== CTA SECTION START ===== */

.cta-section{

padding:110px 0;

background:

linear-gradient(
135deg,
#061C3D,
#0A2E5C
);

overflow:hidden;

position:relative;

}

.cta-wrapper{

position:relative;

background:

linear-gradient(
135deg,
rgba(255,255,255,.08),
rgba(255,255,255,.04)
);

backdrop-filter:

blur(12px);

border:

1px solid rgba(255,255,255,.08);

border-radius:30px;

padding:90px 70px;

display:flex;

justify-content:space-between;

align-items:center;

gap:60px;

overflow:hidden;

}

.cta-content{

flex:1;

position:relative;

z-index:2;

}

.cta-content span{

display:block;

color:#F58220;

font-weight:700;

letter-spacing:2px;

margin-bottom:20px;

}

.cta-content h2{

font-size:58px;

font-weight:900;

line-height:1.2;

color:#fff;

margin-bottom:25px;

}

.cta-content p{

font-size:22px;

line-height:1.8;

color:#E1E7F0;

margin-bottom:20px;

}

.cta-seo{

font-size:15px;

line-height:2;

color:#AFC0D7;

margin-bottom:30px;

}

.cta-content h4{

font-size:24px;

color:#fff;

line-height:1.7;

}

.cta-buttons{

display:flex;

flex-direction:column;

gap:22px;

position:relative;

z-index:2;

}

.cta-btn{

padding:20px 42px;

text-decoration:none;

font-weight:700;

border-radius:10px;

font-size:18px;

transition:.3s;

text-align:center;

min-width:250px;

}

.primary-btn{

background:#F58220;

color:#fff;

}

.primary-btn:hover{

background:#fff;

color:#0A2E5C;

}

.secondary-btn{

background:#fff;

color:#0A2E5C;

}

.secondary-btn:hover{

background:#F58220;

color:#fff;

}

/* GLOW */

.glow-circle{

position:absolute;

border-radius:50%;

filter:blur(80px);

}

.glow1{

width:220px;

height:220px;

background:#0059A8;

top:-60px;

right:-60px;

opacity:.5;

}

.glow2{

width:180px;

height:180px;

background:#F58220;

bottom:-50px;

left:-40px;

opacity:.35;

}

/* WAVE */

.wave-pattern{

position:absolute;

right:-50px;

bottom:-50px;

width:350px;

height:350px;

background:

radial-gradient(
circle,
rgba(255,255,255,.06)
2px,
transparent 2px
);

background-size:22px 22px;

opacity:.5;

}

/* TABLET */

@media(max-width:991px){

.cta-wrapper{

flex-direction:column;

text-align:center;

padding:70px 40px;

}

.cta-content h2{

font-size:42px;

}

.cta-buttons{

width:100%;

}

.cta-btn{

width:100%;

}

}

/* MOBILE */

@media(max-width:576px){

.cta-section{

padding:70px 0;

}

.cta-wrapper{

padding:50px 25px;

}

.cta-content h2{

font-size:32px;

}

.cta-content p{

font-size:17px;

}

.cta-content h4{

font-size:20px;

}

}

/* ===== CTA SECTION END ===== */


