*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    background: white;
    overflow-x: hidden;

}
a{
    text-decoration: none !important;
}
/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* flex-wrap: wrap; */
    padding: 14px 14px;
    position: sticky;
    top: 0; 
    background-color: #fff; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    z-index: 1000; 
}

.header .logo {
    display: flex;
    align-items: center;
    /* gap: 1px; */
}
.header .logo a {
    display: flex;
    align-items: center; 
}

 .header .logo img {
    /* max-width: 100%;  */
    width: 60px;
    /* height: auto; */
}

.header .logo h1 {
    margin-left: 10px; 
    color: black;
    font-size: 30px;
}


.header ul {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.header ul li {
    list-style: none;
    position: relative;
    margin-left: 20px;
}

.header ul li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.header ul li a:hover {
    color: #15386b;
    transition: all 0.2s;
}

.header ul li a:hover,
.header ul li.active a {
    color: #15386b;
    transition: all 0.2s;
}
.header .header-btn a {
    align-items: center;
    background-clip: padding-box;
    background-color: #15386b;
    border: 1px solid transparent;
    border-radius: 2.25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: system-ui, -apple-system, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.25;
    margin: 0;
    min-height: 4rem;
    padding: calc(0.870rem - 1px) calc(1.9rem - 1px);
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: auto;
    font-weight: bold;
}

.header .header-btn a:hover {
    background-color: black;
    transition: all 0.3s;
}

.header ul li .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 28px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 5px;
    box-shadow: 0 4px 8px #00000033;
}

.header ul li .dropdown-menu ul {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin: 0;
}

.header ul li .dropdown-menu ul li {
    margin: 0;
    text-wrap: nowrap;
}

.header ul li .dropdown-menu ul li a {
    color: #000;
    font-size: 15px;
    font-weight: normal;
    text-decoration: none;
}

.header ul li .dropdown-menu ul li a:hover {
    color: #15386b;
    transition: all 0.2s;
}

.header ul li:hover .dropdown-menu,
.header ul li .dropdown-menu:hover {
    display: block;
}

/* Hamburger Styles */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger i {
    font-size: 24px;
}

/* Mobile Nav Styles */
.mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: left 0.3s;
    padding: 20px;
}

.mobile-nav .logo{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-nav .logo img{
    width: 50px;
}
.mobile-nav .logo h2{
    font-size: 27px;
}

.mobile-nav .logo button{
    padding: 8px 8px 8px 8px;
    margin: 0px 6px 0px 0px;
    width: 45px;
    border-radius: 3px;
    background-color: #15386b;
    border: none;
    transition: all 0.4s;
    color:white;
}
.mobile-nav .logo button:hover{
    background-color: grey;
    color:white;
    /* border: 1px solid grey; */
}

.mobile-nav ul {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.mobile-nav ul li a:hover {
    color: #15386b;
    transition: all 0.3s;
    
}



.mobile-nav ul li .dropdown-menu {
    display: none;
    position: relative;
    background-color: #fff;
    padding: 0px 8px;
    box-shadow: 0 4px 8px #00000033;  
    
}



.mobile-nav ul .dropdown-menu li a {
    font-size: 14px;
}

/* Responsive Styles */


/* Responsive Styles for Tablets */
@media (max-width: 1024px) {
    .header .logo img {
        width: 50px;
    }

    .header .logo h1 {
        font-size: 24px;
    }

    .header .header-btn a {
        padding: 8px 16px;
    }

    .header ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .header ul li {
        margin-left: 0;
        margin-right: 20px;
    }

    .header ul li a {
        font-size: 16px;
    }

    .mobile-nav .logo img {
        width: 45px;
    }

    .mobile-nav .logo h2 {
        font-size: 24px;
    }

    .mobile-nav ul li {
        margin-bottom: 15px;
    }

    .mobile-nav ul li a {
        font-size: 16px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
    }
}

/* Responsive Styles for 360px to 370px Width */
@media (min-width: 360px) and (max-width: 370px) {
    .header .logo img {
        width: 32px; /* Slightly larger than 30px for better scaling */
    }

    .header .logo h1 {
        font-size: 19px; /* Slightly larger font size for readability */
    }

    .header .header-btn a {
        font-size: 16px;
        padding: 6px 12px; /* Adjust padding for better fit */
    }

    .header ul {
        display: none;
    }

    .hamburger {
        display: block;
    }


    .mobile-nav .logo img {
        width: 42px; /* Slightly larger than 40px for better scaling */
    }

    .mobile-nav .logo h2 {
        font-size: 23px; /* Slightly larger font size for readability */
    }

    .mobile-nav ul {
        padding-left: 0;
    }

    .mobile-nav ul li {
        margin-bottom: 13px; /* Adjust spacing between items */
    }

    .mobile-nav ul li a {
        font-size: 15px; /* Adjust font size for readability */
    }

    .mobile-nav ul li .dropdown-menu {
        padding: 0 6px; /* Adjust padding for better fit */
    }
}

@media (max-width: 768px) {
    .header .logo img{
        width: 30px;
        margin-bottom: 4px;
    }
   .header .logo h1{
    font-size: 20px;
    font-weight: 700;
   }
   .header .header-btn a {
    padding: 17px 10px;
    font-size: 15px;
    min-height: 2rem;
}
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
      
}




/* hero section styling  */

.hero-section {
    position: relative;
    padding: 200px 0;
    margin-top: 40px;
    color: #ffffff;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../../../assets/img/case-studies/services/comprehensive-PPC-management-success/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    /* opacity: 0.9;  */

}

.hero-section h3 {
    font-size: 30px;
    font-weight: 700;
    color:black;
}


/* Styles for tablets (up to 1024px) */
@media (max-width: 1024px) {
    .hero-section {
        padding: 150px 0;
    }

    .hero-section h3 {
        font-size: 24px;
    }
}

/* Styles for mobile screens (up to 768px) */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0;
        margin-top: 20px; /* Adjust margin for mobile */
    }

    .hero-section h3 {
        font-size: 21px;
    }
}

/*--------------------------------------------------------------
# Our Process Section
--------------------------------------------------------------*/

.our-process {
    color: #444444;
    background-color: #ffffff;
    padding: 60px 0;
}

.our-process .section-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.our-process .process-item {
    display: flex;
    /* align-items: center; */
}

.our-process .process-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.our-process .process-item i {
    font-size: 44px;
    line-height: 44px;
    color: #15386b;
    margin-right: 15px;
}

.our-process .process-item p {
    font-size: 15px;
    color: color-mix(in srgb, #444444, transparent 30%);
    margin-bottom: 0;
}


/* .strategy-section styling  */

.strategy-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #f5f5f5; /* Light grey background for the section */
    padding: 40px;
    border-radius: 12px; /* Adds rounded corners */
    gap: 30px; /* Adds space between the content and image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
}

.strategy-content {
    flex: 1;
    padding: 20px;
    border-radius: 8px; /* Adds rounded corners */
}

.strategy-content h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #333; /* Dark text color for better readability */
    margin-bottom: 15px;
    font-weight: 700; /* Makes the heading bold */
    text-transform: uppercase; /* Capitalizes the heading text */
}

.strategy-content ul {
    list-style-type: disc; /* Adds bullet points */
    padding-left: 20px; /* Adds padding to the left of the list */
}

.strategy-content ul li {
    font-size: 1.1rem;
    color: #444; /* Slightly darker text color */
    margin-bottom: 15px;
    line-height: 1.6; /* Increases line height for better readability */
}

/* Styles for tablets (up to 1024px) */
@media (max-width: 1024px) {
    .strategy-section {
        flex-direction: column; /* Stack content vertically */
        padding: 30px;
        gap: 20px; /* Adjust space between the content */
    }

    .strategy-content h2 {
        font-size: 2rem;
    }

    .strategy-content ul li {
        font-size: 1rem;
    }
}

/* Styles for mobile screens (up to 768px) */
@media (max-width: 768px) {
    .strategy-section {
        padding: 20px;
    }

    .strategy-content h2 {
        font-size: 1.75rem;
    }

    .strategy-content ul li {
        font-size: 0.9rem;
    }
}



/* .results-section styling */
.results-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.results-content {
    margin-bottom: 30px;
}

.results-content h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #15386b;
    display: inline-block;
    padding-bottom: 10px;
}

.results-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.result-image {
    width: 100%; /* Adjusts the width of the images */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Styles for tablets (up to 1024px) */
@media (max-width: 1024px) {
    .results-content h2 {
        font-size: 24px;
    }

    .result-image {
        width: 100%; /* Adjusts the image width for tablets */
    }
}

/* Styles for mobile screens (up to 768px) */
@media (max-width: 768px) {
    .results-section {
        padding: 20px;
    }

    .results-content h2 {
        font-size: 20px;
    }

    .result-image {
        width: 100%; /* Adjusts the image width for mobile */
    }
}



.summary-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.summary-content {
    flex: 1;
    margin-right: 20px;
}

.summary-content h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.summary-item {
    margin-bottom: 20px;
}

.summary-item h3 {
    margin: 0;
    font-size: 18px;
    color: black;
    font-weight: 700;
}

.summary-item p {
    margin: 5px 0;
    font-size: 16px;
    color: #666;
}

.summary-image {
    flex: 1;
}

.summary-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Styles for tablets (up to 1024px) */
@media (max-width: 1024px) {
    .summary-section {
        padding: 30px;
        margin: 15px auto;
        flex-direction: column;
        text-align: center;
    }

    .summary-content {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .summary-image {
        margin-top: 20px;
    }

    .summary-content h2 {
        font-size: 2em;
    }

    .summary-item h3 {
        font-size: 16px;
    }

    .summary-item p {
        font-size: 14px;
    }
}

/* Styles for mobile screens (up to 768px) */
@media (max-width: 768px) {
    .summary-section {
        padding: 20px;
    }

    .summary-content {
        margin-bottom: 15px;
    }

    .summary-image {
        margin-top: 15px;
    }

    .summary-content h2 {
        font-size: 1.75em;
    }

    .summary-item h3 {
        font-size: 14px;
    }

    .summary-item p {
        font-size: 13px;
    }

    .summary-image img {
        max-width: 90%;
    }
}





/* footer styling  */
#footer {
    background: #081e5b;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
    margin-top: 60px
  }
  
 
  #footer .footer-top {
    /* background: #0d2735; */
    background: #081e5b;
    border-top:1px solid #43677a;
    border-bottom: 1px solid #43677a;
    padding: 60px 0 30px 0;
  }
  
  #footer .footer-top .footer-info {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-info h3 {
    font-size: 18px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    color: white;
    font-weight: 600;
  }
  
  #footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
    color: #fff;
  }
  
  #footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #2f566a;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  
  #footer .footer-top .social-links a:hover {
    /* background: #0d2735; */
    background: #0d2735;
    color: #fff;
    text-decoration: none;
  }
  
  #footer .footer-top h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    position: relative;
    padding-bottom: 12px;
  }
  
  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #d5e4e6;
    font-size: 18px;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    color: #a2cce3;
    display: flex;
    align-items: center;
  }
  
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  #footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul a:hover {
    color: #a2cce3;
  }
  
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-contact p {
    line-height: 26px;
  }
  
