* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color: #2A2ABD;
    --secondary-color: #010228;
}

body {
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Bebas Neue', sans-serif;
}

a {
    text-decoration: none;
}

ul li{
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}


/* Section Title */
.section-title-wrapper{
    margin-bottom: 40px;
}
.section-title{
    width: fit-content;
    position: relative;
    font-size: 26px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 22px;
}
.section-title::before, .section-title::after{
    content: "";
    position: absolute;
    width: 36px;
    height: 3.5px;
    bottom: -6px;
    transform: skewX(-28deg);
}
.section-title::before{
    background: linear-gradient(to right, #2A2ABD, #4040be);
    left: 4px;
}
.section-title::after{
    background: linear-gradient(to right, #4040be, #9797c7);
    left: 44px;
}
.section-subtitle{
    color: var(--secondary-color);
    font-size: 56px;
    letter-spacing: 1px;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 50px;
}


/* CTA Button */
.cta-btn{
    background: var(--primary-color);
    color: #fff;
    display: block;
    width: fit-content;
    padding: 12px 32px;
    position: relative;
    z-index: 1;
    border-radius: 4px;
    box-shadow: 2px 2px 6px #4a4aee;
    overflow: hidden;
    letter-spacing: 1px;
    font-size: 18px;
}
.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background:linear-gradient(to right,#1616dd, #0e0e94, #07074d);
    transition: all 0.2s linear;
    z-index: -1;
    border-radius: 4px;
}
.cta-btn:hover {
    box-shadow: none;
}
.cta-btn:hover::before {
    left: 0;
}


/* Page Title Section */
.page-title{
    background-image: url("/images/Bathrooms-image.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 0;
    position: relative;
    color: #fff;
}
.page-title::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0000007e;
    top: 0;
    left: 0;
    z-index: 1;
}
.page-name{
    text-transform: uppercase;
    font-size: 62px;
    line-height: 56px;
    margin-bottom: 10px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    text-align: center;
}
.breadcrum{
    position: relative;
    z-index: 2;
}
.breadcrum a{
    color: #fff;
    transition: 0.2s ease;
}
.breadcrum a:hover{
    color: var(--primary-color);
}


/* Top Section */
.top{
    background: var(--secondary-color);
    color: #d3d3d3;
    font-size: 14px;
    padding: 6px 0;
}
.top .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top .container div{
    display: flex;
    align-items: center;
}
.top img{
    display: block;
    height: 12px;
    margin-right: 8px;
}
.top .container div span{
    margin: 0 12px ;
}


/* Header Section */
header {
    background-color: white;
    color: black;
    padding: 10px 0;
}
header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img{
    height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}
nav ul li{
    padding: 10px 0;
}

nav a {
    color: black;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.2s ease; 
    position: relative; 
}
nav a::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color); 
    transition: width 0.4s ease;
}

nav a:hover::before {
    width: 100%; 
}

nav a:hover {
    color: var(--primary-color);
}
.down-arrow{
    height: 8px;
    opacity: 0.6;
    margin-left: 2px;
    transition: 0.2s ease-in-out;
}
nav a:hover .down-arrow{
    transform: rotate(180deg);
    opacity: 1;
}
.dropdown{
    position: relative;
}
.dropdown-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 35px;
    left: 0;
    background: var(--secondary-color);
    z-index: 10000;
    width: 250px;
    opacity: 1;
    animation: dropdown-close 0.3s forwards;
    gap: 0;
}
.dropdown-links li{
    padding: 0 0;
}
.dropdown-links a{
    padding: 16px;
    width: 100%;
    display: block;
    transition: 0.2s ease;
    color: #fff;
}
.dropdown-links a:hover{
    background: #fff;
}
.dropdown-links a::before{
    content: none;
}
.dropdown:hover .dropdown-links {
    display: flex;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    max-height: fit-content;
    animation: dropdown-open 0.35s forwards; /* Animation to show */
}
/* Keyframes for closing animation */
@keyframes dropdown-close {
    0% {
        opacity: 0;
        max-height: 0;
    }
    100% {
        opacity: 0;
        max-height: 0;
    }
}
/* Keyframes for opening animation */
@keyframes dropdown-open {
    0% {
        opacity: 0;
        max-height: 0;
    }
    100% {
        opacity: 1;
        max-height: 500px; 
    }
}


/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-wrapper div {
    height: 4px;
    width: 40px;
    background: black;
    margin-bottom: 7px;
    border-radius: 2px;
}



/* Footer Section */
footer{
  padding-top: 80px;
  background: #aaaaff;
  background: linear-gradient(135deg, #000024, #00004d, #000024);
  color: #fff;
}
.footer-wrapper{
  display: flex;
  justify-content: space-between;
}
.footer-company{
  width: 30%;
}
.footer-company .footer-company-title{
    font-size: 32px;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    line-height: 36px;
    margin-bottom: 12px;
}
.footer-company p{
  line-height: 24px;
}
.footer-quick-links ,.footer-services{
  width: fit-content;
}
.footer-quick-links p,.footer-services p{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}
.footer-quick-links li a,.footer-services li a{
  display: block;
  margin-bottom: 8px;
  color: #a7a7a7;
  transition: 0.2s ease-in-out;
  font-size: 15px;
}
.footer-quick-links li a:hover,.footer-services li a:hover{
  color: #fff;
}
.footer-contact {
    background: #020563;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 18px;
    align-items: center;
    width: fit-content;
}
.footer-contact-title {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}
.footer-contact div {
    color: #d1d1d1;
    font-size: 14px;
}
.footer-contact-item {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    align-items: center;
}
.footer-contact-item span{
  height: 26px;
  width: 28px;
  border-radius: 4px;
  background: #1b22ff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-contact-item img {
    height: 14px;
    object-fit: contain;
}
.footer-contact-item p{
  font-weight: 600;
}

.footer-company img{
  height: 64px;
  margin-bottom: 18px;
}
.footer-bottom{
  margin-top: 40px;
}
.footer-social{
  display: flex;
  gap: 12px;
}
.footer-social a{
  height: 26px;
  width: 26px;
  border-radius: 50%;
  background: #e6e6e6;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-social a img{
  height: 14px;
  opacity: 0.7;
  transition: 0.3s ease-in-out;
}
.footer-social a{
  background: #fff;
}
.footer-social a:hover img{
  opacity: 1;
}
.footer-bottom{
  background: #000116;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p{
  /* color:#fff; */
  font-size: 15px;
}



@media (max-width:1000px) {
    /* Footer Section 1000 */
  .footer-wrapper{
    flex-wrap: wrap;
    row-gap: 32px;
  }
  .footer-company{
    width: 70%;
  }
}

@media (max-width:1120px) {
    /* Container 1120 */
    .container {
        padding: 0 40px;
    }
}

@media (max-width:768px) {
    /* Container 768 */
    .container {
        padding: 0 20px;
    }

    /* Top Section 768*/
    .top .container {
        flex-wrap: wrap;
        gap: 4px;
        justify-content: center;
    }
    .Welcome-msg{
        display: none;
    }

    /* Page Title Section 768*/
    .page-title {
        padding: 90px 0;
    }
    .page-name {
        font-size: 50px;
        line-height: 45px;
        margin-bottom: 10px;
    }

    /* Section Title 768*/
    .section-title {
        font-size: 23px;
        margin-bottom: 18px;
    }
    .section-subtitle {
        font-size: 42px;
        line-height: 40px;
    }

    /* Header Section 768*/
    header {
        padding: 10px 0;
    }

    header nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 92px;
        right: 0;
        background-color: #3b3b3b;
        width: 210px;
        text-align: center;
        gap: 0;
    }
    header nav ul li a {
        text-align: left;
        text-decoration: none;
        padding: 6px 18px;
        display: block;
        color: white;
        font-size: 14px;
        border-bottom: 1px solid white;
        transition: 0.2s;
    }

    header nav ul.active {
        display: flex;
        z-index: 10;
    }

    .hamburger {
        display: block;
    }

    nav a::before {
        bottom: -2px;
    }
    .dropdown-links {
        top: -10px !important;
        left: -250px !important;
    }

    
    /* Footer Section 768*/
    .footer-company{
        width: 100%;
    }
}

@media (max-width:680px) {
  /* Footer Section 680 */
  .footer-bottom{
    flex-direction: column;
    row-gap: 8px;
  }
  
}

@media (max-width:480px) {
    .container {
        padding: 0 10px;
    }

     /* Page Title Section 768*/
    .page-title {
        padding: 70px 0;
    }
    .page-name {
        line-height: 32px;
        font-size: 36px;
        margin-bottom: 8px;
    }
    
    /* Header Section */
    header {
        padding: 10px 0px;
    }
    header .logo img{
        height: 40px;
    }
    header nav ul {
        width: 170px;
    }
    .dropdown-links{
        top: -10px !important;
        left: -220px !important;
        width: 220px;
    }


    /* Section Title 480*/
    .section-subtitle {
        font-size: 38px;
        line-height: 42px;
    }
    .section-title-wrapper {
        margin-bottom: 32px;
    }
    .section-title {
        font-size: 21px;
        margin-bottom: 16px;
    }
    


}